@talismn/chaindata-provider 0.1.2 → 0.1.4

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,13 @@
1
1
  # @talismn/chaindata-provider
2
2
 
3
+ ## 0.1.4
4
+
5
+ ## 0.1.3
6
+
7
+ ### Patch Changes
8
+
9
+ - d5f69f7: fix: migrated orml token code into substrate orml module
10
+
3
11
  ## 0.1.2
4
12
 
5
13
  ### Patch Changes
@@ -9,6 +9,7 @@ export declare type Chain = {
9
9
  genesisHash: string | null;
10
10
  prefix: number | null;
11
11
  name: string | null;
12
+ logo: string | null;
12
13
  chainName: string;
13
14
  implName: string | null;
14
15
  specName: string | null;
@@ -8,6 +8,7 @@ export declare type EvmNetwork = {
8
8
  isTestnet: boolean;
9
9
  sortIndex: number | null;
10
10
  name: string | null;
11
+ logo: string | null;
11
12
  nativeToken: {
12
13
  id: TokenId;
13
14
  } | null;
@@ -31,6 +31,7 @@ export declare type IToken = {
31
31
  isTestnet: boolean;
32
32
  symbol: string;
33
33
  decimals: number;
34
+ logo: string;
34
35
  coingeckoId?: string;
35
36
  chain?: {
36
37
  id: ChainId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@talismn/chaindata-provider",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "author": "Talisman",
5
5
  "homepage": "https://talisman.xyz",
6
6
  "license": "UNLICENSED",