@keplr-wallet/types 0.12.31 → 0.12.32-rc.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.
@@ -15,7 +15,7 @@ export interface ChainInfo {
15
15
  * This indicates the type of coin that can be used for stake.
16
16
  * You can get actual currency information from Currencies.
17
17
  */
18
- readonly stakeCurrency: Currency;
18
+ readonly stakeCurrency?: Currency;
19
19
  readonly walletUrl?: string;
20
20
  readonly walletUrlForStaking?: string;
21
21
  readonly bip44: BIP44;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keplr-wallet/types",
3
- "version": "0.12.31",
3
+ "version": "0.12.32-rc.0",
4
4
  "main": "build/index.js",
5
5
  "author": "chainapsis",
6
6
  "license": "Apache-2.0",
@@ -18,5 +18,5 @@
18
18
  "dependencies": {
19
19
  "long": "^4.0.0"
20
20
  },
21
- "gitHead": "92f9663be3d8ec5876c41430e309dfd2d56006b0"
21
+ "gitHead": "91d09e1e10ada236fcc76f3395e1d1f7b139422a"
22
22
  }
package/src/chain-info.ts CHANGED
@@ -16,7 +16,7 @@ export interface ChainInfo {
16
16
  * This indicates the type of coin that can be used for stake.
17
17
  * You can get actual currency information from Currencies.
18
18
  */
19
- readonly stakeCurrency: Currency;
19
+ readonly stakeCurrency?: Currency;
20
20
  readonly walletUrl?: string;
21
21
  readonly walletUrlForStaking?: string;
22
22
  readonly bip44: BIP44;