@keplr-wallet/types 0.13.15 → 0.13.17
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/build/currency.d.ts +4 -0
- package/package.json +2 -2
- package/src/currency.ts +4 -0
package/build/currency.d.ts
CHANGED
|
@@ -11,6 +11,10 @@ export interface Currency {
|
|
|
11
11
|
*/
|
|
12
12
|
readonly coinGeckoId?: string;
|
|
13
13
|
readonly coinImageUrl?: string;
|
|
14
|
+
/**
|
|
15
|
+
* If true, this currency cannot be transferred on-chain.
|
|
16
|
+
*/
|
|
17
|
+
readonly nonTransferable?: boolean;
|
|
14
18
|
}
|
|
15
19
|
/**
|
|
16
20
|
* The currency that is supported on the cosmwasm.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keplr-wallet/types",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.17",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"author": "chainapsis",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"starknet": "^8"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "12e83996f59432fc7cc2f27b8542e84b60ac541a"
|
|
30
30
|
}
|
package/src/currency.ts
CHANGED