@keplr-wallet/types 0.11.21-rc.2 → 0.11.22-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/cosmjs.d.ts +1 -0
- package/package.json +2 -2
- package/src/cosmjs.ts +2 -0
package/build/cosmjs.d.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@keplr-wallet/types",
|
3
|
-
"version": "0.11.
|
3
|
+
"version": "0.11.22-rc.0",
|
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": "
|
24
|
+
"gitHead": "4ab7d8b7e39c54d5eab7006683242490ab276565"
|
25
25
|
}
|
package/src/cosmjs.ts
CHANGED
@@ -34,6 +34,8 @@ export interface StdSignDoc {
|
|
34
34
|
readonly chain_id: string;
|
35
35
|
readonly account_number: string;
|
36
36
|
readonly sequence: string;
|
37
|
+
// Should be nullable
|
38
|
+
readonly timeout_height?: string;
|
37
39
|
readonly fee: StdFee;
|
38
40
|
readonly msgs: readonly Msg[];
|
39
41
|
readonly memo: string;
|