@keplr-wallet/types 0.11.21 → 0.11.22

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 CHANGED
@@ -26,6 +26,7 @@ export interface StdSignDoc {
26
26
  readonly chain_id: string;
27
27
  readonly account_number: string;
28
28
  readonly sequence: string;
29
+ readonly timeout_height?: string;
29
30
  readonly fee: StdFee;
30
31
  readonly msgs: readonly Msg[];
31
32
  readonly memo: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keplr-wallet/types",
3
- "version": "0.11.21",
3
+ "version": "0.11.22",
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": "0b09aba66cbec365a0d923caae6a2c4ba47dc1b9"
24
+ "gitHead": "fdcad4028c640345066f4955a8b94fc1fc1ccf96"
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;