@talismn/token-rates 0.1.9 → 0.1.10
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/CHANGELOG.md +8 -0
- package/dist/TokenRates.d.ts +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/TokenRates.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import {
|
1
|
+
import { IToken, TokenList } from "@talismn/chaindata-provider";
|
2
2
|
import { TokenRatesList } from "./types";
|
3
3
|
export declare function fetchTokenRates(tokens: TokenList): Promise<TokenRatesList>;
|
4
4
|
export interface WithCoingeckoId {
|
5
5
|
coingeckoId: string;
|
6
6
|
}
|
7
|
-
export declare function hasCoingeckoId(token:
|
7
|
+
export declare function hasCoingeckoId(token: IToken): token is IToken & WithCoingeckoId;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@talismn/token-rates",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.10",
|
4
4
|
"author": "Talisman",
|
5
5
|
"homepage": "https://talisman.xyz",
|
6
6
|
"license": "UNLICENSED",
|
@@ -30,7 +30,7 @@
|
|
30
30
|
"clean": "rm -rf dist && rm -rf .turbo rm -rf node_modules"
|
31
31
|
},
|
32
32
|
"dependencies": {
|
33
|
-
"@talismn/chaindata-provider": "^0.1.
|
33
|
+
"@talismn/chaindata-provider": "^0.1.10",
|
34
34
|
"axios": "^0.27.2"
|
35
35
|
},
|
36
36
|
"devDependencies": {
|