Skip to content

Commit

Permalink
feat: Added average_price_change_1d, average_price_change_7d, `av…
Browse files Browse the repository at this point in the history
…erage_price_change_30d` to the return data of endpoint `getCollectionStatistics`
  • Loading branch information
yohuohuohuo committed Dec 27, 2022
1 parent 28edf12 commit b5e2c70
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/types/evm/statistic/response-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,21 @@ export interface QueryCollectionStatisticsResponse {
*/
average_price_24h: number;

/**
* The average price growth rate for 1 day
*/
average_price_change_1d: string;

/**
* The average price growth rate for 30 days
*/
average_price_change_30d: string;

/**
* The average price growth rate for 7 days
*/
average_price_change_7d: string;

/**
* The contract address
*/
Expand Down

0 comments on commit b5e2c70

Please sign in to comment.