@lifi/types 16.3.0 → 16.3.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lifi/types",
3
3
  "description": "Types for the LI.FI stack",
4
- "version": "16.3.0",
4
+ "version": "16.3.1-beta.0",
5
5
  "files": [
6
6
  "src",
7
7
  "!src/assets",
@@ -223,7 +223,7 @@ export interface TokenPriceHistoricResponse {
223
223
  chainId: number;
224
224
  tokenAddress: string;
225
225
  isNativeToken: boolean;
226
- priceUSD: number;
226
+ priceUSD: string;
227
227
  timestamp: number;
228
228
  granularity: TokenHistoricGranularity;
229
229
  }
package/src/api.ts CHANGED
@@ -267,7 +267,7 @@ export interface TokenPriceHistoricResponse {
267
267
  chainId: number
268
268
  tokenAddress: string
269
269
  isNativeToken: boolean
270
- priceUSD: number
270
+ priceUSD: string
271
271
  timestamp: number
272
272
  granularity: TokenHistoricGranularity
273
273
  }