@talismn/token-rates 0.1.8 → 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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # @talismn/token-rates
2
2
 
3
+ ## 0.1.10
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: a variety of improvements from the wallet integration
8
+ - Updated dependencies
9
+ - @talismn/chaindata-provider@0.1.10
10
+
11
+ ## 0.1.9
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [8ecb8214]
16
+ - @talismn/chaindata-provider@0.1.9
17
+
3
18
  ## 0.1.8
4
19
 
5
20
  ### Patch Changes
@@ -1,7 +1,7 @@
1
- import { Token, TokenList } from "@talismn/chaindata-provider";
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: Token): token is Token & WithCoingeckoId;
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.8",
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.8",
33
+ "@talismn/chaindata-provider": "^0.1.10",
34
34
  "axios": "^0.27.2"
35
35
  },
36
36
  "devDependencies": {