@keplr-wallet/types 0.11.16 → 0.11.18-alpha.1

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.
@@ -44,4 +44,5 @@ export interface ChainInfo {
44
44
  * If the blockchain is in an early stage, please set it as beta.
45
45
  */
46
46
  readonly beta?: boolean;
47
+ readonly chainSymbolImageUrl?: string;
47
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keplr-wallet/types",
3
- "version": "0.11.16",
3
+ "version": "0.11.18-alpha.1",
4
4
  "main": "build/index.js",
5
5
  "author": "chainapsis",
6
6
  "license": "Apache-2.0",
@@ -21,5 +21,5 @@
21
21
  "long": "^4.0.0",
22
22
  "secretjs": "0.17.7"
23
23
  },
24
- "gitHead": "682c8402ccd09b35cecf9f028d97635b6a5cd015"
24
+ "gitHead": "6c3ea550034c3c9e8adfd51ec006aef221061ca6"
25
25
  }
package/src/chain-info.ts CHANGED
@@ -48,4 +48,6 @@ export interface ChainInfo {
48
48
  * If the blockchain is in an early stage, please set it as beta.
49
49
  */
50
50
  readonly beta?: boolean;
51
+
52
+ readonly chainSymbolImageUrl?: string;
51
53
  }