@keplr-wallet/types 0.9.10 → 0.9.12-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.
- package/build/currency.d.ts +1 -1
- package/package.json +2 -2
- package/src/currency.ts +5 -1
package/build/currency.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export interface IBCCurrency extends Currency {
|
|
|
41
41
|
* If that chain is unknown, this will be undefined.
|
|
42
42
|
*/
|
|
43
43
|
readonly originChainId: string | undefined;
|
|
44
|
-
readonly originCurrency: Currency | undefined;
|
|
44
|
+
readonly originCurrency: Currency | CW20Currency | Secret20Currency | undefined;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
47
|
* Any type of currency that Kepler applications can support.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keplr-wallet/types",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.12-rc.0",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"author": "chainapsis",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"long": "^4.0.0",
|
|
24
24
|
"secretjs": "^0.17.0"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "0fef6bf83dd6bcc9bfa6170ccf33a9d34e7b7f4b"
|
|
27
27
|
}
|
package/src/currency.ts
CHANGED
|
@@ -44,7 +44,11 @@ export interface IBCCurrency extends Currency {
|
|
|
44
44
|
* If that chain is unknown, this will be undefined.
|
|
45
45
|
*/
|
|
46
46
|
readonly originChainId: string | undefined;
|
|
47
|
-
readonly originCurrency:
|
|
47
|
+
readonly originCurrency:
|
|
48
|
+
| Currency
|
|
49
|
+
| CW20Currency
|
|
50
|
+
| Secret20Currency
|
|
51
|
+
| undefined;
|
|
48
52
|
}
|
|
49
53
|
|
|
50
54
|
/**
|