From 1307aca3163c5679b30ae9e2baa20d525f3e95aa Mon Sep 17 00:00:00 2001 From: Alexey Rehov Date: Mon, 29 May 2023 18:35:24 +0300 Subject: [PATCH] rename value to price for token info --- src/dto/ft-datalake/ft-basic-token-info-item.ts | 2 +- src/dto/ft-datalake/ft-usd-price-info.ts | 5 ----- src/dto/ft-datalake/index.ts | 1 - 3 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 src/dto/ft-datalake/ft-usd-price-info.ts diff --git a/src/dto/ft-datalake/ft-basic-token-info-item.ts b/src/dto/ft-datalake/ft-basic-token-info-item.ts index 7609ec4..3ffd3ac 100644 --- a/src/dto/ft-datalake/ft-basic-token-info-item.ts +++ b/src/dto/ft-datalake/ft-basic-token-info-item.ts @@ -3,5 +3,5 @@ export interface FtBasicTokenInfoItem { decimals: number | null; symbol: string | null; name: string | null; - estimated_usd_value: string | null; + estimated_usd_price: string | null; } diff --git a/src/dto/ft-datalake/ft-usd-price-info.ts b/src/dto/ft-datalake/ft-usd-price-info.ts deleted file mode 100644 index 1fd37cf..0000000 --- a/src/dto/ft-datalake/ft-usd-price-info.ts +++ /dev/null @@ -1,5 +0,0 @@ -export interface FtUsdPriceInfo { - usd_price_calculated: string | null; - usd_price_raw: string | null; - stablecoin_used: string | null; -} diff --git a/src/dto/ft-datalake/index.ts b/src/dto/ft-datalake/index.ts index da8b6da..121abe0 100644 --- a/src/dto/ft-datalake/index.ts +++ b/src/dto/ft-datalake/index.ts @@ -1,7 +1,6 @@ export * from './ft-basic-holder-item'; export * from './ft-basic-token-info-item'; export * from './ft-token-holder-by-address-item'; -export * from './ft-usd-price-info'; export * from './ft-token-holder-by-address-response'; export * from './ft-range-response'; export * from './ft-token-holder-by-contract-item';