@initia/initia.js 1.0.14 → 1.0.15

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.
@@ -5,7 +5,8 @@ import { Timeout } from './Timeout';
5
5
  export declare class Upgrade extends JSONSerializable<any, Upgrade.Data, Upgrade.Proto> {
6
6
  fields: UpgradeFields | undefined;
7
7
  timeout: Timeout | undefined;
8
- constructor(fields: UpgradeFields | undefined, timeout: Timeout | undefined);
8
+ next_sequence_send: number;
9
+ constructor(fields: UpgradeFields | undefined, timeout: Timeout | undefined, next_sequence_send: number);
9
10
  static fromAmino(_: any): Upgrade;
10
11
  toAmino(): any;
11
12
  static fromData(data: Upgrade.Data): Upgrade;
@@ -17,6 +18,7 @@ export declare namespace Upgrade {
17
18
  interface Data {
18
19
  fields?: UpgradeFields.Data;
19
20
  timeout?: Timeout.Data;
21
+ next_sequence_send: string;
20
22
  }
21
23
  type Proto = Upgrade_pb;
22
24
  }