@ark-us/wasmxjs 0.0.2 → 0.0.4
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/README.md +1 -1
- package/main/codegen/index.js +10 -10
- package/main/codegen/{wasmx → mythos}/bundle.js +32 -26
- package/main/codegen/{wasmx → mythos}/client.js +19 -19
- package/main/codegen/{wasmx → mythos}/index.js +9 -9
- package/main/codegen/{wasmx → mythos}/rpc.query.js +16 -10
- package/main/codegen/{wasmx → mythos}/rpc.tx.js +18 -12
- package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/contract.js +1 -1
- package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/genesis.js +1 -1
- package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.js +3 -3
- package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.rpc.Query.js +9 -9
- package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.js +17 -17
- package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.js +2 -2
- package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.js +41 -41
- package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.rpc.msg.js +8 -8
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.js +1 -1
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/params.js +1 -1
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.js +1 -1
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/query.js +2 -2
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/query.rpc.Query.js +7 -7
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.amino.js +7 -7
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.js +1 -1
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.js +16 -16
- package/main/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.rpc.msg.js +3 -3
- package/main/codegen/tendermint/bundle.js +17 -17
- package/module/codegen/index.js +3 -3
- package/module/codegen/mythos/bundle.js +35 -0
- package/module/codegen/{wasmx → mythos}/client.js +11 -11
- package/module/codegen/mythos/index.js +11 -0
- package/module/codegen/{wasmx → mythos}/rpc.query.js +7 -3
- package/module/codegen/mythos/rpc.tx.js +12 -0
- package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/contract.js +1 -1
- package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/genesis.js +1 -1
- package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.js +3 -3
- package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.rpc.Query.js +9 -9
- package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.js +17 -17
- package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.js +2 -2
- package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.js +41 -41
- package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.rpc.msg.js +8 -8
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.js +1 -1
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/params.js +1 -1
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.js +1 -1
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/query.js +2 -2
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/query.rpc.Query.js +7 -7
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.amino.js +7 -7
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.js +1 -1
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.js +16 -16
- package/module/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.rpc.msg.js +3 -3
- package/module/codegen/tendermint/bundle.js +17 -17
- package/package.json +1 -1
- package/src/codegen/index.ts +3 -3
- package/src/codegen/mythos/bundle.ts +49 -0
- package/src/codegen/{wasmx → mythos}/client.ts +12 -12
- package/src/codegen/mythos/index.ts +11 -0
- package/src/codegen/{wasmx → mythos}/rpc.query.ts +7 -3
- package/src/codegen/mythos/rpc.tx.ts +15 -0
- package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/contract.ts +1 -1
- package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/genesis.ts +1 -1
- package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.rpc.Query.ts +10 -10
- package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.ts +3 -3
- package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.ts +25 -25
- package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.ts +41 -41
- package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.rpc.msg.ts +9 -9
- package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.ts +2 -2
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.ts +1 -1
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/params.ts +1 -1
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.ts +1 -1
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/query.rpc.Query.ts +8 -8
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/query.ts +2 -2
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.amino.ts +10 -10
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.ts +16 -16
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.rpc.msg.ts +4 -4
- package/src/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.ts +1 -1
- package/src/codegen/tendermint/bundle.ts +22 -22
- package/types/codegen/index.d.ts +3 -3
- package/types/codegen/mythos/bundle.d.ts +1039 -0
- package/types/codegen/{wasmx → mythos}/client.d.ts +37 -37
- package/types/codegen/mythos/index.d.ts +11 -0
- package/types/codegen/mythos/rpc.query.d.ts +45 -0
- package/types/codegen/mythos/rpc.tx.d.ts +13 -0
- package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/contract.d.ts +1 -1
- package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/genesis.d.ts +1 -1
- package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.d.ts +3 -3
- package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/query.rpc.Query.d.ts +1 -1
- package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.amino.d.ts +16 -16
- package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.d.ts +2 -2
- package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.rpc.msg.d.ts +1 -1
- package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/query.d.ts +2 -2
- package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/query.rpc.Query.d.ts +1 -1
- package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.amino.d.ts +6 -6
- package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.d.ts +1 -1
- package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.rpc.msg.d.ts +1 -1
- package/types/codegen/tendermint/bundle.d.ts +456 -456
- package/module/codegen/wasmx/bundle.js +0 -29
- package/module/codegen/wasmx/index.js +0 -11
- package/module/codegen/wasmx/rpc.tx.js +0 -8
- package/src/codegen/wasmx/bundle.ts +0 -45
- package/src/codegen/wasmx/index.ts +0 -11
- package/src/codegen/wasmx/rpc.tx.ts +0 -11
- package/types/codegen/wasmx/bundle.d.ts +0 -1027
- package/types/codegen/wasmx/index.d.ts +0 -11
- package/types/codegen/wasmx/lcd.d.ts +0 -14
- package/types/codegen/wasmx/rpc.query.d.ts +0 -41
- package/types/codegen/wasmx/rpc.tx.d.ts +0 -9
- package/types/codegen/wasmx/wasmx/query.lcd.d.ts +0 -17
- /package/main/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.js +0 -0
- /package/module/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.js +0 -0
- /package/src/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.ts +0 -0
- /package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/params.d.ts +0 -0
- /package/types/codegen/{wasmx/wasmx → mythos/wasmx/v1}/tx.registry.d.ts +0 -0
- /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/genesis.d.ts +0 -0
- /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/params.d.ts +0 -0
- /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/proposal.d.ts +0 -0
- /package/types/codegen/{wasmx/websrv → mythos/websrv/v1}/tx.registry.d.ts +0 -0
|
@@ -1,639 +1,639 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
1
|
+
import * as _28 from "./abci/types";
|
|
2
|
+
import * as _29 from "./crypto/keys";
|
|
3
|
+
import * as _30 from "./crypto/proof";
|
|
4
|
+
import * as _31 from "./libs/bits/types";
|
|
5
|
+
import * as _32 from "./p2p/types";
|
|
6
|
+
import * as _33 from "./types/block";
|
|
7
|
+
import * as _34 from "./types/evidence";
|
|
8
|
+
import * as _35 from "./types/params";
|
|
9
|
+
import * as _36 from "./types/types";
|
|
10
|
+
import * as _37 from "./types/validator";
|
|
11
|
+
import * as _38 from "./version/types";
|
|
12
12
|
export declare namespace tendermint {
|
|
13
13
|
const abci: {
|
|
14
|
-
checkTxTypeFromJSON(object: any):
|
|
15
|
-
checkTxTypeToJSON(object:
|
|
16
|
-
responseOfferSnapshot_ResultFromJSON(object: any):
|
|
17
|
-
responseOfferSnapshot_ResultToJSON(object:
|
|
18
|
-
responseApplySnapshotChunk_ResultFromJSON(object: any):
|
|
19
|
-
responseApplySnapshotChunk_ResultToJSON(object:
|
|
20
|
-
evidenceTypeFromJSON(object: any):
|
|
21
|
-
evidenceTypeToJSON(object:
|
|
22
|
-
CheckTxType: typeof
|
|
23
|
-
CheckTxTypeSDKType: typeof
|
|
24
|
-
ResponseOfferSnapshot_Result: typeof
|
|
25
|
-
ResponseOfferSnapshot_ResultSDKType: typeof
|
|
26
|
-
ResponseApplySnapshotChunk_Result: typeof
|
|
27
|
-
ResponseApplySnapshotChunk_ResultSDKType: typeof
|
|
28
|
-
EvidenceType: typeof
|
|
29
|
-
EvidenceTypeSDKType: typeof
|
|
14
|
+
checkTxTypeFromJSON(object: any): _28.CheckTxType;
|
|
15
|
+
checkTxTypeToJSON(object: _28.CheckTxType): string;
|
|
16
|
+
responseOfferSnapshot_ResultFromJSON(object: any): _28.ResponseOfferSnapshot_Result;
|
|
17
|
+
responseOfferSnapshot_ResultToJSON(object: _28.ResponseOfferSnapshot_Result): string;
|
|
18
|
+
responseApplySnapshotChunk_ResultFromJSON(object: any): _28.ResponseApplySnapshotChunk_Result;
|
|
19
|
+
responseApplySnapshotChunk_ResultToJSON(object: _28.ResponseApplySnapshotChunk_Result): string;
|
|
20
|
+
evidenceTypeFromJSON(object: any): _28.EvidenceType;
|
|
21
|
+
evidenceTypeToJSON(object: _28.EvidenceType): string;
|
|
22
|
+
CheckTxType: typeof _28.CheckTxType;
|
|
23
|
+
CheckTxTypeSDKType: typeof _28.CheckTxTypeSDKType;
|
|
24
|
+
ResponseOfferSnapshot_Result: typeof _28.ResponseOfferSnapshot_Result;
|
|
25
|
+
ResponseOfferSnapshot_ResultSDKType: typeof _28.ResponseOfferSnapshot_ResultSDKType;
|
|
26
|
+
ResponseApplySnapshotChunk_Result: typeof _28.ResponseApplySnapshotChunk_Result;
|
|
27
|
+
ResponseApplySnapshotChunk_ResultSDKType: typeof _28.ResponseApplySnapshotChunk_ResultSDKType;
|
|
28
|
+
EvidenceType: typeof _28.EvidenceType;
|
|
29
|
+
EvidenceTypeSDKType: typeof _28.EvidenceTypeSDKType;
|
|
30
30
|
Request: {
|
|
31
|
-
encode(message:
|
|
32
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
33
|
-
fromJSON(object: any):
|
|
34
|
-
toJSON(message:
|
|
35
|
-
fromPartial(object: Partial<
|
|
31
|
+
encode(message: _28.Request, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
32
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.Request;
|
|
33
|
+
fromJSON(object: any): _28.Request;
|
|
34
|
+
toJSON(message: _28.Request): unknown;
|
|
35
|
+
fromPartial(object: Partial<_28.Request>): _28.Request;
|
|
36
36
|
};
|
|
37
37
|
RequestEcho: {
|
|
38
|
-
encode(message:
|
|
39
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
40
|
-
fromJSON(object: any):
|
|
41
|
-
toJSON(message:
|
|
42
|
-
fromPartial(object: Partial<
|
|
38
|
+
encode(message: _28.RequestEcho, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
39
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestEcho;
|
|
40
|
+
fromJSON(object: any): _28.RequestEcho;
|
|
41
|
+
toJSON(message: _28.RequestEcho): unknown;
|
|
42
|
+
fromPartial(object: Partial<_28.RequestEcho>): _28.RequestEcho;
|
|
43
43
|
};
|
|
44
44
|
RequestFlush: {
|
|
45
|
-
encode(_:
|
|
46
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
47
|
-
fromJSON(_: any):
|
|
48
|
-
toJSON(_:
|
|
49
|
-
fromPartial(_: Partial<
|
|
45
|
+
encode(_: _28.RequestFlush, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
46
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestFlush;
|
|
47
|
+
fromJSON(_: any): _28.RequestFlush;
|
|
48
|
+
toJSON(_: _28.RequestFlush): unknown;
|
|
49
|
+
fromPartial(_: Partial<_28.RequestFlush>): _28.RequestFlush;
|
|
50
50
|
};
|
|
51
51
|
RequestInfo: {
|
|
52
|
-
encode(message:
|
|
53
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
54
|
-
fromJSON(object: any):
|
|
55
|
-
toJSON(message:
|
|
56
|
-
fromPartial(object: Partial<
|
|
52
|
+
encode(message: _28.RequestInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
53
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestInfo;
|
|
54
|
+
fromJSON(object: any): _28.RequestInfo;
|
|
55
|
+
toJSON(message: _28.RequestInfo): unknown;
|
|
56
|
+
fromPartial(object: Partial<_28.RequestInfo>): _28.RequestInfo;
|
|
57
57
|
};
|
|
58
58
|
RequestSetOption: {
|
|
59
|
-
encode(message:
|
|
60
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
61
|
-
fromJSON(object: any):
|
|
62
|
-
toJSON(message:
|
|
63
|
-
fromPartial(object: Partial<
|
|
59
|
+
encode(message: _28.RequestSetOption, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
60
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestSetOption;
|
|
61
|
+
fromJSON(object: any): _28.RequestSetOption;
|
|
62
|
+
toJSON(message: _28.RequestSetOption): unknown;
|
|
63
|
+
fromPartial(object: Partial<_28.RequestSetOption>): _28.RequestSetOption;
|
|
64
64
|
};
|
|
65
65
|
RequestInitChain: {
|
|
66
|
-
encode(message:
|
|
67
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
68
|
-
fromJSON(object: any):
|
|
69
|
-
toJSON(message:
|
|
70
|
-
fromPartial(object: Partial<
|
|
66
|
+
encode(message: _28.RequestInitChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
67
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestInitChain;
|
|
68
|
+
fromJSON(object: any): _28.RequestInitChain;
|
|
69
|
+
toJSON(message: _28.RequestInitChain): unknown;
|
|
70
|
+
fromPartial(object: Partial<_28.RequestInitChain>): _28.RequestInitChain;
|
|
71
71
|
};
|
|
72
72
|
RequestQuery: {
|
|
73
|
-
encode(message:
|
|
74
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
75
|
-
fromJSON(object: any):
|
|
76
|
-
toJSON(message:
|
|
77
|
-
fromPartial(object: Partial<
|
|
73
|
+
encode(message: _28.RequestQuery, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
74
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestQuery;
|
|
75
|
+
fromJSON(object: any): _28.RequestQuery;
|
|
76
|
+
toJSON(message: _28.RequestQuery): unknown;
|
|
77
|
+
fromPartial(object: Partial<_28.RequestQuery>): _28.RequestQuery;
|
|
78
78
|
};
|
|
79
79
|
RequestBeginBlock: {
|
|
80
|
-
encode(message:
|
|
81
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
82
|
-
fromJSON(object: any):
|
|
83
|
-
toJSON(message:
|
|
84
|
-
fromPartial(object: Partial<
|
|
80
|
+
encode(message: _28.RequestBeginBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
81
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestBeginBlock;
|
|
82
|
+
fromJSON(object: any): _28.RequestBeginBlock;
|
|
83
|
+
toJSON(message: _28.RequestBeginBlock): unknown;
|
|
84
|
+
fromPartial(object: Partial<_28.RequestBeginBlock>): _28.RequestBeginBlock;
|
|
85
85
|
};
|
|
86
86
|
RequestCheckTx: {
|
|
87
|
-
encode(message:
|
|
88
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
89
|
-
fromJSON(object: any):
|
|
90
|
-
toJSON(message:
|
|
91
|
-
fromPartial(object: Partial<
|
|
87
|
+
encode(message: _28.RequestCheckTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
88
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestCheckTx;
|
|
89
|
+
fromJSON(object: any): _28.RequestCheckTx;
|
|
90
|
+
toJSON(message: _28.RequestCheckTx): unknown;
|
|
91
|
+
fromPartial(object: Partial<_28.RequestCheckTx>): _28.RequestCheckTx;
|
|
92
92
|
};
|
|
93
93
|
RequestDeliverTx: {
|
|
94
|
-
encode(message:
|
|
95
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
96
|
-
fromJSON(object: any):
|
|
97
|
-
toJSON(message:
|
|
98
|
-
fromPartial(object: Partial<
|
|
94
|
+
encode(message: _28.RequestDeliverTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
95
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestDeliverTx;
|
|
96
|
+
fromJSON(object: any): _28.RequestDeliverTx;
|
|
97
|
+
toJSON(message: _28.RequestDeliverTx): unknown;
|
|
98
|
+
fromPartial(object: Partial<_28.RequestDeliverTx>): _28.RequestDeliverTx;
|
|
99
99
|
};
|
|
100
100
|
RequestEndBlock: {
|
|
101
|
-
encode(message:
|
|
102
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
103
|
-
fromJSON(object: any):
|
|
104
|
-
toJSON(message:
|
|
105
|
-
fromPartial(object: Partial<
|
|
101
|
+
encode(message: _28.RequestEndBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
102
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestEndBlock;
|
|
103
|
+
fromJSON(object: any): _28.RequestEndBlock;
|
|
104
|
+
toJSON(message: _28.RequestEndBlock): unknown;
|
|
105
|
+
fromPartial(object: Partial<_28.RequestEndBlock>): _28.RequestEndBlock;
|
|
106
106
|
};
|
|
107
107
|
RequestCommit: {
|
|
108
|
-
encode(_:
|
|
109
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
110
|
-
fromJSON(_: any):
|
|
111
|
-
toJSON(_:
|
|
112
|
-
fromPartial(_: Partial<
|
|
108
|
+
encode(_: _28.RequestCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
109
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestCommit;
|
|
110
|
+
fromJSON(_: any): _28.RequestCommit;
|
|
111
|
+
toJSON(_: _28.RequestCommit): unknown;
|
|
112
|
+
fromPartial(_: Partial<_28.RequestCommit>): _28.RequestCommit;
|
|
113
113
|
};
|
|
114
114
|
RequestListSnapshots: {
|
|
115
|
-
encode(_:
|
|
116
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
117
|
-
fromJSON(_: any):
|
|
118
|
-
toJSON(_:
|
|
119
|
-
fromPartial(_: Partial<
|
|
115
|
+
encode(_: _28.RequestListSnapshots, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
116
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestListSnapshots;
|
|
117
|
+
fromJSON(_: any): _28.RequestListSnapshots;
|
|
118
|
+
toJSON(_: _28.RequestListSnapshots): unknown;
|
|
119
|
+
fromPartial(_: Partial<_28.RequestListSnapshots>): _28.RequestListSnapshots;
|
|
120
120
|
};
|
|
121
121
|
RequestOfferSnapshot: {
|
|
122
|
-
encode(message:
|
|
123
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
124
|
-
fromJSON(object: any):
|
|
125
|
-
toJSON(message:
|
|
126
|
-
fromPartial(object: Partial<
|
|
122
|
+
encode(message: _28.RequestOfferSnapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
123
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestOfferSnapshot;
|
|
124
|
+
fromJSON(object: any): _28.RequestOfferSnapshot;
|
|
125
|
+
toJSON(message: _28.RequestOfferSnapshot): unknown;
|
|
126
|
+
fromPartial(object: Partial<_28.RequestOfferSnapshot>): _28.RequestOfferSnapshot;
|
|
127
127
|
};
|
|
128
128
|
RequestLoadSnapshotChunk: {
|
|
129
|
-
encode(message:
|
|
130
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
131
|
-
fromJSON(object: any):
|
|
132
|
-
toJSON(message:
|
|
133
|
-
fromPartial(object: Partial<
|
|
129
|
+
encode(message: _28.RequestLoadSnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
130
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestLoadSnapshotChunk;
|
|
131
|
+
fromJSON(object: any): _28.RequestLoadSnapshotChunk;
|
|
132
|
+
toJSON(message: _28.RequestLoadSnapshotChunk): unknown;
|
|
133
|
+
fromPartial(object: Partial<_28.RequestLoadSnapshotChunk>): _28.RequestLoadSnapshotChunk;
|
|
134
134
|
};
|
|
135
135
|
RequestApplySnapshotChunk: {
|
|
136
|
-
encode(message:
|
|
137
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
138
|
-
fromJSON(object: any):
|
|
139
|
-
toJSON(message:
|
|
140
|
-
fromPartial(object: Partial<
|
|
136
|
+
encode(message: _28.RequestApplySnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
137
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.RequestApplySnapshotChunk;
|
|
138
|
+
fromJSON(object: any): _28.RequestApplySnapshotChunk;
|
|
139
|
+
toJSON(message: _28.RequestApplySnapshotChunk): unknown;
|
|
140
|
+
fromPartial(object: Partial<_28.RequestApplySnapshotChunk>): _28.RequestApplySnapshotChunk;
|
|
141
141
|
};
|
|
142
142
|
Response: {
|
|
143
|
-
encode(message:
|
|
144
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
145
|
-
fromJSON(object: any):
|
|
146
|
-
toJSON(message:
|
|
147
|
-
fromPartial(object: Partial<
|
|
143
|
+
encode(message: _28.Response, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
144
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.Response;
|
|
145
|
+
fromJSON(object: any): _28.Response;
|
|
146
|
+
toJSON(message: _28.Response): unknown;
|
|
147
|
+
fromPartial(object: Partial<_28.Response>): _28.Response;
|
|
148
148
|
};
|
|
149
149
|
ResponseException: {
|
|
150
|
-
encode(message:
|
|
151
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
152
|
-
fromJSON(object: any):
|
|
153
|
-
toJSON(message:
|
|
154
|
-
fromPartial(object: Partial<
|
|
150
|
+
encode(message: _28.ResponseException, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
151
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseException;
|
|
152
|
+
fromJSON(object: any): _28.ResponseException;
|
|
153
|
+
toJSON(message: _28.ResponseException): unknown;
|
|
154
|
+
fromPartial(object: Partial<_28.ResponseException>): _28.ResponseException;
|
|
155
155
|
};
|
|
156
156
|
ResponseEcho: {
|
|
157
|
-
encode(message:
|
|
158
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
159
|
-
fromJSON(object: any):
|
|
160
|
-
toJSON(message:
|
|
161
|
-
fromPartial(object: Partial<
|
|
157
|
+
encode(message: _28.ResponseEcho, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
158
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseEcho;
|
|
159
|
+
fromJSON(object: any): _28.ResponseEcho;
|
|
160
|
+
toJSON(message: _28.ResponseEcho): unknown;
|
|
161
|
+
fromPartial(object: Partial<_28.ResponseEcho>): _28.ResponseEcho;
|
|
162
162
|
};
|
|
163
163
|
ResponseFlush: {
|
|
164
|
-
encode(_:
|
|
165
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
166
|
-
fromJSON(_: any):
|
|
167
|
-
toJSON(_:
|
|
168
|
-
fromPartial(_: Partial<
|
|
164
|
+
encode(_: _28.ResponseFlush, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
165
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseFlush;
|
|
166
|
+
fromJSON(_: any): _28.ResponseFlush;
|
|
167
|
+
toJSON(_: _28.ResponseFlush): unknown;
|
|
168
|
+
fromPartial(_: Partial<_28.ResponseFlush>): _28.ResponseFlush;
|
|
169
169
|
};
|
|
170
170
|
ResponseInfo: {
|
|
171
|
-
encode(message:
|
|
172
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
173
|
-
fromJSON(object: any):
|
|
174
|
-
toJSON(message:
|
|
175
|
-
fromPartial(object: Partial<
|
|
171
|
+
encode(message: _28.ResponseInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
172
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseInfo;
|
|
173
|
+
fromJSON(object: any): _28.ResponseInfo;
|
|
174
|
+
toJSON(message: _28.ResponseInfo): unknown;
|
|
175
|
+
fromPartial(object: Partial<_28.ResponseInfo>): _28.ResponseInfo;
|
|
176
176
|
};
|
|
177
177
|
ResponseSetOption: {
|
|
178
|
-
encode(message:
|
|
179
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
180
|
-
fromJSON(object: any):
|
|
181
|
-
toJSON(message:
|
|
182
|
-
fromPartial(object: Partial<
|
|
178
|
+
encode(message: _28.ResponseSetOption, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
179
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseSetOption;
|
|
180
|
+
fromJSON(object: any): _28.ResponseSetOption;
|
|
181
|
+
toJSON(message: _28.ResponseSetOption): unknown;
|
|
182
|
+
fromPartial(object: Partial<_28.ResponseSetOption>): _28.ResponseSetOption;
|
|
183
183
|
};
|
|
184
184
|
ResponseInitChain: {
|
|
185
|
-
encode(message:
|
|
186
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
187
|
-
fromJSON(object: any):
|
|
188
|
-
toJSON(message:
|
|
189
|
-
fromPartial(object: Partial<
|
|
185
|
+
encode(message: _28.ResponseInitChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
186
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseInitChain;
|
|
187
|
+
fromJSON(object: any): _28.ResponseInitChain;
|
|
188
|
+
toJSON(message: _28.ResponseInitChain): unknown;
|
|
189
|
+
fromPartial(object: Partial<_28.ResponseInitChain>): _28.ResponseInitChain;
|
|
190
190
|
};
|
|
191
191
|
ResponseQuery: {
|
|
192
|
-
encode(message:
|
|
193
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
194
|
-
fromJSON(object: any):
|
|
195
|
-
toJSON(message:
|
|
196
|
-
fromPartial(object: Partial<
|
|
192
|
+
encode(message: _28.ResponseQuery, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
193
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseQuery;
|
|
194
|
+
fromJSON(object: any): _28.ResponseQuery;
|
|
195
|
+
toJSON(message: _28.ResponseQuery): unknown;
|
|
196
|
+
fromPartial(object: Partial<_28.ResponseQuery>): _28.ResponseQuery;
|
|
197
197
|
};
|
|
198
198
|
ResponseBeginBlock: {
|
|
199
|
-
encode(message:
|
|
200
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
201
|
-
fromJSON(object: any):
|
|
202
|
-
toJSON(message:
|
|
203
|
-
fromPartial(object: Partial<
|
|
199
|
+
encode(message: _28.ResponseBeginBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
200
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseBeginBlock;
|
|
201
|
+
fromJSON(object: any): _28.ResponseBeginBlock;
|
|
202
|
+
toJSON(message: _28.ResponseBeginBlock): unknown;
|
|
203
|
+
fromPartial(object: Partial<_28.ResponseBeginBlock>): _28.ResponseBeginBlock;
|
|
204
204
|
};
|
|
205
205
|
ResponseCheckTx: {
|
|
206
|
-
encode(message:
|
|
207
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
208
|
-
fromJSON(object: any):
|
|
209
|
-
toJSON(message:
|
|
210
|
-
fromPartial(object: Partial<
|
|
206
|
+
encode(message: _28.ResponseCheckTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
207
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseCheckTx;
|
|
208
|
+
fromJSON(object: any): _28.ResponseCheckTx;
|
|
209
|
+
toJSON(message: _28.ResponseCheckTx): unknown;
|
|
210
|
+
fromPartial(object: Partial<_28.ResponseCheckTx>): _28.ResponseCheckTx;
|
|
211
211
|
};
|
|
212
212
|
ResponseDeliverTx: {
|
|
213
|
-
encode(message:
|
|
214
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
215
|
-
fromJSON(object: any):
|
|
216
|
-
toJSON(message:
|
|
217
|
-
fromPartial(object: Partial<
|
|
213
|
+
encode(message: _28.ResponseDeliverTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
214
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseDeliverTx;
|
|
215
|
+
fromJSON(object: any): _28.ResponseDeliverTx;
|
|
216
|
+
toJSON(message: _28.ResponseDeliverTx): unknown;
|
|
217
|
+
fromPartial(object: Partial<_28.ResponseDeliverTx>): _28.ResponseDeliverTx;
|
|
218
218
|
};
|
|
219
219
|
ResponseEndBlock: {
|
|
220
|
-
encode(message:
|
|
221
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
222
|
-
fromJSON(object: any):
|
|
223
|
-
toJSON(message:
|
|
224
|
-
fromPartial(object: Partial<
|
|
220
|
+
encode(message: _28.ResponseEndBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
221
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseEndBlock;
|
|
222
|
+
fromJSON(object: any): _28.ResponseEndBlock;
|
|
223
|
+
toJSON(message: _28.ResponseEndBlock): unknown;
|
|
224
|
+
fromPartial(object: Partial<_28.ResponseEndBlock>): _28.ResponseEndBlock;
|
|
225
225
|
};
|
|
226
226
|
ResponseCommit: {
|
|
227
|
-
encode(message:
|
|
228
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
229
|
-
fromJSON(object: any):
|
|
230
|
-
toJSON(message:
|
|
231
|
-
fromPartial(object: Partial<
|
|
227
|
+
encode(message: _28.ResponseCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
228
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseCommit;
|
|
229
|
+
fromJSON(object: any): _28.ResponseCommit;
|
|
230
|
+
toJSON(message: _28.ResponseCommit): unknown;
|
|
231
|
+
fromPartial(object: Partial<_28.ResponseCommit>): _28.ResponseCommit;
|
|
232
232
|
};
|
|
233
233
|
ResponseListSnapshots: {
|
|
234
|
-
encode(message:
|
|
235
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
236
|
-
fromJSON(object: any):
|
|
237
|
-
toJSON(message:
|
|
238
|
-
fromPartial(object: Partial<
|
|
234
|
+
encode(message: _28.ResponseListSnapshots, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
235
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseListSnapshots;
|
|
236
|
+
fromJSON(object: any): _28.ResponseListSnapshots;
|
|
237
|
+
toJSON(message: _28.ResponseListSnapshots): unknown;
|
|
238
|
+
fromPartial(object: Partial<_28.ResponseListSnapshots>): _28.ResponseListSnapshots;
|
|
239
239
|
};
|
|
240
240
|
ResponseOfferSnapshot: {
|
|
241
|
-
encode(message:
|
|
242
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
243
|
-
fromJSON(object: any):
|
|
244
|
-
toJSON(message:
|
|
245
|
-
fromPartial(object: Partial<
|
|
241
|
+
encode(message: _28.ResponseOfferSnapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
242
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseOfferSnapshot;
|
|
243
|
+
fromJSON(object: any): _28.ResponseOfferSnapshot;
|
|
244
|
+
toJSON(message: _28.ResponseOfferSnapshot): unknown;
|
|
245
|
+
fromPartial(object: Partial<_28.ResponseOfferSnapshot>): _28.ResponseOfferSnapshot;
|
|
246
246
|
};
|
|
247
247
|
ResponseLoadSnapshotChunk: {
|
|
248
|
-
encode(message:
|
|
249
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
250
|
-
fromJSON(object: any):
|
|
251
|
-
toJSON(message:
|
|
252
|
-
fromPartial(object: Partial<
|
|
248
|
+
encode(message: _28.ResponseLoadSnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
249
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseLoadSnapshotChunk;
|
|
250
|
+
fromJSON(object: any): _28.ResponseLoadSnapshotChunk;
|
|
251
|
+
toJSON(message: _28.ResponseLoadSnapshotChunk): unknown;
|
|
252
|
+
fromPartial(object: Partial<_28.ResponseLoadSnapshotChunk>): _28.ResponseLoadSnapshotChunk;
|
|
253
253
|
};
|
|
254
254
|
ResponseApplySnapshotChunk: {
|
|
255
|
-
encode(message:
|
|
256
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
257
|
-
fromJSON(object: any):
|
|
258
|
-
toJSON(message:
|
|
259
|
-
fromPartial(object: Partial<
|
|
255
|
+
encode(message: _28.ResponseApplySnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
256
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ResponseApplySnapshotChunk;
|
|
257
|
+
fromJSON(object: any): _28.ResponseApplySnapshotChunk;
|
|
258
|
+
toJSON(message: _28.ResponseApplySnapshotChunk): unknown;
|
|
259
|
+
fromPartial(object: Partial<_28.ResponseApplySnapshotChunk>): _28.ResponseApplySnapshotChunk;
|
|
260
260
|
};
|
|
261
261
|
ConsensusParams: {
|
|
262
|
-
encode(message:
|
|
263
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
264
|
-
fromJSON(object: any):
|
|
265
|
-
toJSON(message:
|
|
266
|
-
fromPartial(object: Partial<
|
|
262
|
+
encode(message: _28.ConsensusParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
263
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ConsensusParams;
|
|
264
|
+
fromJSON(object: any): _28.ConsensusParams;
|
|
265
|
+
toJSON(message: _28.ConsensusParams): unknown;
|
|
266
|
+
fromPartial(object: Partial<_28.ConsensusParams>): _28.ConsensusParams;
|
|
267
267
|
};
|
|
268
268
|
BlockParams: {
|
|
269
|
-
encode(message:
|
|
270
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
271
|
-
fromJSON(object: any):
|
|
272
|
-
toJSON(message:
|
|
273
|
-
fromPartial(object: Partial<
|
|
269
|
+
encode(message: _28.BlockParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
270
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.BlockParams;
|
|
271
|
+
fromJSON(object: any): _28.BlockParams;
|
|
272
|
+
toJSON(message: _28.BlockParams): unknown;
|
|
273
|
+
fromPartial(object: Partial<_28.BlockParams>): _28.BlockParams;
|
|
274
274
|
};
|
|
275
275
|
LastCommitInfo: {
|
|
276
|
-
encode(message:
|
|
277
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
278
|
-
fromJSON(object: any):
|
|
279
|
-
toJSON(message:
|
|
280
|
-
fromPartial(object: Partial<
|
|
276
|
+
encode(message: _28.LastCommitInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
277
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.LastCommitInfo;
|
|
278
|
+
fromJSON(object: any): _28.LastCommitInfo;
|
|
279
|
+
toJSON(message: _28.LastCommitInfo): unknown;
|
|
280
|
+
fromPartial(object: Partial<_28.LastCommitInfo>): _28.LastCommitInfo;
|
|
281
281
|
};
|
|
282
282
|
Event: {
|
|
283
|
-
encode(message:
|
|
284
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
285
|
-
fromJSON(object: any):
|
|
286
|
-
toJSON(message:
|
|
287
|
-
fromPartial(object: Partial<
|
|
283
|
+
encode(message: _28.Event, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
284
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.Event;
|
|
285
|
+
fromJSON(object: any): _28.Event;
|
|
286
|
+
toJSON(message: _28.Event): unknown;
|
|
287
|
+
fromPartial(object: Partial<_28.Event>): _28.Event;
|
|
288
288
|
};
|
|
289
289
|
EventAttribute: {
|
|
290
|
-
encode(message:
|
|
291
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
292
|
-
fromJSON(object: any):
|
|
293
|
-
toJSON(message:
|
|
294
|
-
fromPartial(object: Partial<
|
|
290
|
+
encode(message: _28.EventAttribute, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
291
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.EventAttribute;
|
|
292
|
+
fromJSON(object: any): _28.EventAttribute;
|
|
293
|
+
toJSON(message: _28.EventAttribute): unknown;
|
|
294
|
+
fromPartial(object: Partial<_28.EventAttribute>): _28.EventAttribute;
|
|
295
295
|
};
|
|
296
296
|
TxResult: {
|
|
297
|
-
encode(message:
|
|
298
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
299
|
-
fromJSON(object: any):
|
|
300
|
-
toJSON(message:
|
|
301
|
-
fromPartial(object: Partial<
|
|
297
|
+
encode(message: _28.TxResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
298
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.TxResult;
|
|
299
|
+
fromJSON(object: any): _28.TxResult;
|
|
300
|
+
toJSON(message: _28.TxResult): unknown;
|
|
301
|
+
fromPartial(object: Partial<_28.TxResult>): _28.TxResult;
|
|
302
302
|
};
|
|
303
303
|
Validator: {
|
|
304
|
-
encode(message:
|
|
305
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
306
|
-
fromJSON(object: any):
|
|
307
|
-
toJSON(message:
|
|
308
|
-
fromPartial(object: Partial<
|
|
304
|
+
encode(message: _28.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
305
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.Validator;
|
|
306
|
+
fromJSON(object: any): _28.Validator;
|
|
307
|
+
toJSON(message: _28.Validator): unknown;
|
|
308
|
+
fromPartial(object: Partial<_28.Validator>): _28.Validator;
|
|
309
309
|
};
|
|
310
310
|
ValidatorUpdate: {
|
|
311
|
-
encode(message:
|
|
312
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
313
|
-
fromJSON(object: any):
|
|
314
|
-
toJSON(message:
|
|
315
|
-
fromPartial(object: Partial<
|
|
311
|
+
encode(message: _28.ValidatorUpdate, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
312
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.ValidatorUpdate;
|
|
313
|
+
fromJSON(object: any): _28.ValidatorUpdate;
|
|
314
|
+
toJSON(message: _28.ValidatorUpdate): unknown;
|
|
315
|
+
fromPartial(object: Partial<_28.ValidatorUpdate>): _28.ValidatorUpdate;
|
|
316
316
|
};
|
|
317
317
|
VoteInfo: {
|
|
318
|
-
encode(message:
|
|
319
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
320
|
-
fromJSON(object: any):
|
|
321
|
-
toJSON(message:
|
|
322
|
-
fromPartial(object: Partial<
|
|
318
|
+
encode(message: _28.VoteInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
319
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.VoteInfo;
|
|
320
|
+
fromJSON(object: any): _28.VoteInfo;
|
|
321
|
+
toJSON(message: _28.VoteInfo): unknown;
|
|
322
|
+
fromPartial(object: Partial<_28.VoteInfo>): _28.VoteInfo;
|
|
323
323
|
};
|
|
324
324
|
Evidence: {
|
|
325
|
-
encode(message:
|
|
326
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
327
|
-
fromJSON(object: any):
|
|
328
|
-
toJSON(message:
|
|
329
|
-
fromPartial(object: Partial<
|
|
325
|
+
encode(message: _28.Evidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
326
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.Evidence;
|
|
327
|
+
fromJSON(object: any): _28.Evidence;
|
|
328
|
+
toJSON(message: _28.Evidence): unknown;
|
|
329
|
+
fromPartial(object: Partial<_28.Evidence>): _28.Evidence;
|
|
330
330
|
};
|
|
331
331
|
Snapshot: {
|
|
332
|
-
encode(message:
|
|
333
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
334
|
-
fromJSON(object: any):
|
|
335
|
-
toJSON(message:
|
|
336
|
-
fromPartial(object: Partial<
|
|
332
|
+
encode(message: _28.Snapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
333
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _28.Snapshot;
|
|
334
|
+
fromJSON(object: any): _28.Snapshot;
|
|
335
|
+
toJSON(message: _28.Snapshot): unknown;
|
|
336
|
+
fromPartial(object: Partial<_28.Snapshot>): _28.Snapshot;
|
|
337
337
|
};
|
|
338
338
|
};
|
|
339
339
|
const crypto: {
|
|
340
340
|
Proof: {
|
|
341
|
-
encode(message:
|
|
342
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
343
|
-
fromJSON(object: any):
|
|
344
|
-
toJSON(message:
|
|
345
|
-
fromPartial(object: Partial<
|
|
341
|
+
encode(message: _30.Proof, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
342
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.Proof;
|
|
343
|
+
fromJSON(object: any): _30.Proof;
|
|
344
|
+
toJSON(message: _30.Proof): unknown;
|
|
345
|
+
fromPartial(object: Partial<_30.Proof>): _30.Proof;
|
|
346
346
|
};
|
|
347
347
|
ValueOp: {
|
|
348
|
-
encode(message:
|
|
349
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
350
|
-
fromJSON(object: any):
|
|
351
|
-
toJSON(message:
|
|
352
|
-
fromPartial(object: Partial<
|
|
348
|
+
encode(message: _30.ValueOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
349
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.ValueOp;
|
|
350
|
+
fromJSON(object: any): _30.ValueOp;
|
|
351
|
+
toJSON(message: _30.ValueOp): unknown;
|
|
352
|
+
fromPartial(object: Partial<_30.ValueOp>): _30.ValueOp;
|
|
353
353
|
};
|
|
354
354
|
DominoOp: {
|
|
355
|
-
encode(message:
|
|
356
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
357
|
-
fromJSON(object: any):
|
|
358
|
-
toJSON(message:
|
|
359
|
-
fromPartial(object: Partial<
|
|
355
|
+
encode(message: _30.DominoOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
356
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.DominoOp;
|
|
357
|
+
fromJSON(object: any): _30.DominoOp;
|
|
358
|
+
toJSON(message: _30.DominoOp): unknown;
|
|
359
|
+
fromPartial(object: Partial<_30.DominoOp>): _30.DominoOp;
|
|
360
360
|
};
|
|
361
361
|
ProofOp: {
|
|
362
|
-
encode(message:
|
|
363
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
364
|
-
fromJSON(object: any):
|
|
365
|
-
toJSON(message:
|
|
366
|
-
fromPartial(object: Partial<
|
|
362
|
+
encode(message: _30.ProofOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
363
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.ProofOp;
|
|
364
|
+
fromJSON(object: any): _30.ProofOp;
|
|
365
|
+
toJSON(message: _30.ProofOp): unknown;
|
|
366
|
+
fromPartial(object: Partial<_30.ProofOp>): _30.ProofOp;
|
|
367
367
|
};
|
|
368
368
|
ProofOps: {
|
|
369
|
-
encode(message:
|
|
370
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
371
|
-
fromJSON(object: any):
|
|
372
|
-
toJSON(message:
|
|
373
|
-
fromPartial(object: Partial<
|
|
369
|
+
encode(message: _30.ProofOps, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
370
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.ProofOps;
|
|
371
|
+
fromJSON(object: any): _30.ProofOps;
|
|
372
|
+
toJSON(message: _30.ProofOps): unknown;
|
|
373
|
+
fromPartial(object: Partial<_30.ProofOps>): _30.ProofOps;
|
|
374
374
|
};
|
|
375
375
|
PublicKey: {
|
|
376
|
-
encode(message:
|
|
377
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
378
|
-
fromJSON(object: any):
|
|
379
|
-
toJSON(message:
|
|
380
|
-
fromPartial(object: Partial<
|
|
376
|
+
encode(message: _29.PublicKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
377
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.PublicKey;
|
|
378
|
+
fromJSON(object: any): _29.PublicKey;
|
|
379
|
+
toJSON(message: _29.PublicKey): unknown;
|
|
380
|
+
fromPartial(object: Partial<_29.PublicKey>): _29.PublicKey;
|
|
381
381
|
};
|
|
382
382
|
};
|
|
383
383
|
namespace libs {
|
|
384
384
|
const bits: {
|
|
385
385
|
BitArray: {
|
|
386
|
-
encode(message:
|
|
387
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
388
|
-
fromJSON(object: any):
|
|
389
|
-
toJSON(message:
|
|
390
|
-
fromPartial(object: Partial<
|
|
386
|
+
encode(message: _31.BitArray, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
387
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _31.BitArray;
|
|
388
|
+
fromJSON(object: any): _31.BitArray;
|
|
389
|
+
toJSON(message: _31.BitArray): unknown;
|
|
390
|
+
fromPartial(object: Partial<_31.BitArray>): _31.BitArray;
|
|
391
391
|
};
|
|
392
392
|
};
|
|
393
393
|
}
|
|
394
394
|
const p2p: {
|
|
395
395
|
NetAddress: {
|
|
396
|
-
encode(message:
|
|
397
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
398
|
-
fromJSON(object: any):
|
|
399
|
-
toJSON(message:
|
|
400
|
-
fromPartial(object: Partial<
|
|
396
|
+
encode(message: _32.NetAddress, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
397
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.NetAddress;
|
|
398
|
+
fromJSON(object: any): _32.NetAddress;
|
|
399
|
+
toJSON(message: _32.NetAddress): unknown;
|
|
400
|
+
fromPartial(object: Partial<_32.NetAddress>): _32.NetAddress;
|
|
401
401
|
};
|
|
402
402
|
ProtocolVersion: {
|
|
403
|
-
encode(message:
|
|
404
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
405
|
-
fromJSON(object: any):
|
|
406
|
-
toJSON(message:
|
|
407
|
-
fromPartial(object: Partial<
|
|
403
|
+
encode(message: _32.ProtocolVersion, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
404
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.ProtocolVersion;
|
|
405
|
+
fromJSON(object: any): _32.ProtocolVersion;
|
|
406
|
+
toJSON(message: _32.ProtocolVersion): unknown;
|
|
407
|
+
fromPartial(object: Partial<_32.ProtocolVersion>): _32.ProtocolVersion;
|
|
408
408
|
};
|
|
409
409
|
DefaultNodeInfo: {
|
|
410
|
-
encode(message:
|
|
411
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
412
|
-
fromJSON(object: any):
|
|
413
|
-
toJSON(message:
|
|
414
|
-
fromPartial(object: Partial<
|
|
410
|
+
encode(message: _32.DefaultNodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
411
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.DefaultNodeInfo;
|
|
412
|
+
fromJSON(object: any): _32.DefaultNodeInfo;
|
|
413
|
+
toJSON(message: _32.DefaultNodeInfo): unknown;
|
|
414
|
+
fromPartial(object: Partial<_32.DefaultNodeInfo>): _32.DefaultNodeInfo;
|
|
415
415
|
};
|
|
416
416
|
DefaultNodeInfoOther: {
|
|
417
|
-
encode(message:
|
|
418
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
419
|
-
fromJSON(object: any):
|
|
420
|
-
toJSON(message:
|
|
421
|
-
fromPartial(object: Partial<
|
|
417
|
+
encode(message: _32.DefaultNodeInfoOther, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
418
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.DefaultNodeInfoOther;
|
|
419
|
+
fromJSON(object: any): _32.DefaultNodeInfoOther;
|
|
420
|
+
toJSON(message: _32.DefaultNodeInfoOther): unknown;
|
|
421
|
+
fromPartial(object: Partial<_32.DefaultNodeInfoOther>): _32.DefaultNodeInfoOther;
|
|
422
422
|
};
|
|
423
423
|
};
|
|
424
424
|
const types: {
|
|
425
425
|
ValidatorSet: {
|
|
426
|
-
encode(message:
|
|
427
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
428
|
-
fromJSON(object: any):
|
|
429
|
-
toJSON(message:
|
|
430
|
-
fromPartial(object: Partial<
|
|
426
|
+
encode(message: _37.ValidatorSet, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
427
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.ValidatorSet;
|
|
428
|
+
fromJSON(object: any): _37.ValidatorSet;
|
|
429
|
+
toJSON(message: _37.ValidatorSet): unknown;
|
|
430
|
+
fromPartial(object: Partial<_37.ValidatorSet>): _37.ValidatorSet;
|
|
431
431
|
};
|
|
432
432
|
Validator: {
|
|
433
|
-
encode(message:
|
|
434
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
435
|
-
fromJSON(object: any):
|
|
436
|
-
toJSON(message:
|
|
437
|
-
fromPartial(object: Partial<
|
|
433
|
+
encode(message: _37.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
434
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.Validator;
|
|
435
|
+
fromJSON(object: any): _37.Validator;
|
|
436
|
+
toJSON(message: _37.Validator): unknown;
|
|
437
|
+
fromPartial(object: Partial<_37.Validator>): _37.Validator;
|
|
438
438
|
};
|
|
439
439
|
SimpleValidator: {
|
|
440
|
-
encode(message:
|
|
441
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
442
|
-
fromJSON(object: any):
|
|
443
|
-
toJSON(message:
|
|
444
|
-
fromPartial(object: Partial<
|
|
445
|
-
};
|
|
446
|
-
blockIDFlagFromJSON(object: any):
|
|
447
|
-
blockIDFlagToJSON(object:
|
|
448
|
-
signedMsgTypeFromJSON(object: any):
|
|
449
|
-
signedMsgTypeToJSON(object:
|
|
450
|
-
BlockIDFlag: typeof
|
|
451
|
-
BlockIDFlagSDKType: typeof
|
|
452
|
-
SignedMsgType: typeof
|
|
453
|
-
SignedMsgTypeSDKType: typeof
|
|
440
|
+
encode(message: _37.SimpleValidator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
441
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.SimpleValidator;
|
|
442
|
+
fromJSON(object: any): _37.SimpleValidator;
|
|
443
|
+
toJSON(message: _37.SimpleValidator): unknown;
|
|
444
|
+
fromPartial(object: Partial<_37.SimpleValidator>): _37.SimpleValidator;
|
|
445
|
+
};
|
|
446
|
+
blockIDFlagFromJSON(object: any): _36.BlockIDFlag;
|
|
447
|
+
blockIDFlagToJSON(object: _36.BlockIDFlag): string;
|
|
448
|
+
signedMsgTypeFromJSON(object: any): _36.SignedMsgType;
|
|
449
|
+
signedMsgTypeToJSON(object: _36.SignedMsgType): string;
|
|
450
|
+
BlockIDFlag: typeof _36.BlockIDFlag;
|
|
451
|
+
BlockIDFlagSDKType: typeof _36.BlockIDFlagSDKType;
|
|
452
|
+
SignedMsgType: typeof _36.SignedMsgType;
|
|
453
|
+
SignedMsgTypeSDKType: typeof _36.SignedMsgTypeSDKType;
|
|
454
454
|
PartSetHeader: {
|
|
455
|
-
encode(message:
|
|
456
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
457
|
-
fromJSON(object: any):
|
|
458
|
-
toJSON(message:
|
|
459
|
-
fromPartial(object: Partial<
|
|
455
|
+
encode(message: _36.PartSetHeader, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
456
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.PartSetHeader;
|
|
457
|
+
fromJSON(object: any): _36.PartSetHeader;
|
|
458
|
+
toJSON(message: _36.PartSetHeader): unknown;
|
|
459
|
+
fromPartial(object: Partial<_36.PartSetHeader>): _36.PartSetHeader;
|
|
460
460
|
};
|
|
461
461
|
Part: {
|
|
462
|
-
encode(message:
|
|
463
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
464
|
-
fromJSON(object: any):
|
|
465
|
-
toJSON(message:
|
|
466
|
-
fromPartial(object: Partial<
|
|
462
|
+
encode(message: _36.Part, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
463
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.Part;
|
|
464
|
+
fromJSON(object: any): _36.Part;
|
|
465
|
+
toJSON(message: _36.Part): unknown;
|
|
466
|
+
fromPartial(object: Partial<_36.Part>): _36.Part;
|
|
467
467
|
};
|
|
468
468
|
BlockID: {
|
|
469
|
-
encode(message:
|
|
470
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
471
|
-
fromJSON(object: any):
|
|
472
|
-
toJSON(message:
|
|
473
|
-
fromPartial(object: Partial<
|
|
469
|
+
encode(message: _36.BlockID, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
470
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.BlockID;
|
|
471
|
+
fromJSON(object: any): _36.BlockID;
|
|
472
|
+
toJSON(message: _36.BlockID): unknown;
|
|
473
|
+
fromPartial(object: Partial<_36.BlockID>): _36.BlockID;
|
|
474
474
|
};
|
|
475
475
|
Header: {
|
|
476
|
-
encode(message:
|
|
477
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
478
|
-
fromJSON(object: any):
|
|
479
|
-
toJSON(message:
|
|
480
|
-
fromPartial(object: Partial<
|
|
476
|
+
encode(message: _36.Header, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
477
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.Header;
|
|
478
|
+
fromJSON(object: any): _36.Header;
|
|
479
|
+
toJSON(message: _36.Header): unknown;
|
|
480
|
+
fromPartial(object: Partial<_36.Header>): _36.Header;
|
|
481
481
|
};
|
|
482
482
|
Data: {
|
|
483
|
-
encode(message:
|
|
484
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
485
|
-
fromJSON(object: any):
|
|
486
|
-
toJSON(message:
|
|
487
|
-
fromPartial(object: Partial<
|
|
483
|
+
encode(message: _36.Data, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
484
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.Data;
|
|
485
|
+
fromJSON(object: any): _36.Data;
|
|
486
|
+
toJSON(message: _36.Data): unknown;
|
|
487
|
+
fromPartial(object: Partial<_36.Data>): _36.Data;
|
|
488
488
|
};
|
|
489
489
|
Vote: {
|
|
490
|
-
encode(message:
|
|
491
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
492
|
-
fromJSON(object: any):
|
|
493
|
-
toJSON(message:
|
|
494
|
-
fromPartial(object: Partial<
|
|
490
|
+
encode(message: _36.Vote, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
491
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.Vote;
|
|
492
|
+
fromJSON(object: any): _36.Vote;
|
|
493
|
+
toJSON(message: _36.Vote): unknown;
|
|
494
|
+
fromPartial(object: Partial<_36.Vote>): _36.Vote;
|
|
495
495
|
};
|
|
496
496
|
Commit: {
|
|
497
|
-
encode(message:
|
|
498
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
499
|
-
fromJSON(object: any):
|
|
500
|
-
toJSON(message:
|
|
501
|
-
fromPartial(object: Partial<
|
|
497
|
+
encode(message: _36.Commit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
498
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.Commit;
|
|
499
|
+
fromJSON(object: any): _36.Commit;
|
|
500
|
+
toJSON(message: _36.Commit): unknown;
|
|
501
|
+
fromPartial(object: Partial<_36.Commit>): _36.Commit;
|
|
502
502
|
};
|
|
503
503
|
CommitSig: {
|
|
504
|
-
encode(message:
|
|
505
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
506
|
-
fromJSON(object: any):
|
|
507
|
-
toJSON(message:
|
|
508
|
-
fromPartial(object: Partial<
|
|
504
|
+
encode(message: _36.CommitSig, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
505
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.CommitSig;
|
|
506
|
+
fromJSON(object: any): _36.CommitSig;
|
|
507
|
+
toJSON(message: _36.CommitSig): unknown;
|
|
508
|
+
fromPartial(object: Partial<_36.CommitSig>): _36.CommitSig;
|
|
509
509
|
};
|
|
510
510
|
Proposal: {
|
|
511
|
-
encode(message:
|
|
512
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
513
|
-
fromJSON(object: any):
|
|
514
|
-
toJSON(message:
|
|
515
|
-
fromPartial(object: Partial<
|
|
511
|
+
encode(message: _36.Proposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
512
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.Proposal;
|
|
513
|
+
fromJSON(object: any): _36.Proposal;
|
|
514
|
+
toJSON(message: _36.Proposal): unknown;
|
|
515
|
+
fromPartial(object: Partial<_36.Proposal>): _36.Proposal;
|
|
516
516
|
};
|
|
517
517
|
SignedHeader: {
|
|
518
|
-
encode(message:
|
|
519
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
520
|
-
fromJSON(object: any):
|
|
521
|
-
toJSON(message:
|
|
522
|
-
fromPartial(object: Partial<
|
|
518
|
+
encode(message: _36.SignedHeader, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
519
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.SignedHeader;
|
|
520
|
+
fromJSON(object: any): _36.SignedHeader;
|
|
521
|
+
toJSON(message: _36.SignedHeader): unknown;
|
|
522
|
+
fromPartial(object: Partial<_36.SignedHeader>): _36.SignedHeader;
|
|
523
523
|
};
|
|
524
524
|
LightBlock: {
|
|
525
|
-
encode(message:
|
|
526
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
527
|
-
fromJSON(object: any):
|
|
528
|
-
toJSON(message:
|
|
529
|
-
fromPartial(object: Partial<
|
|
525
|
+
encode(message: _36.LightBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
526
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.LightBlock;
|
|
527
|
+
fromJSON(object: any): _36.LightBlock;
|
|
528
|
+
toJSON(message: _36.LightBlock): unknown;
|
|
529
|
+
fromPartial(object: Partial<_36.LightBlock>): _36.LightBlock;
|
|
530
530
|
};
|
|
531
531
|
BlockMeta: {
|
|
532
|
-
encode(message:
|
|
533
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
534
|
-
fromJSON(object: any):
|
|
535
|
-
toJSON(message:
|
|
536
|
-
fromPartial(object: Partial<
|
|
532
|
+
encode(message: _36.BlockMeta, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
533
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.BlockMeta;
|
|
534
|
+
fromJSON(object: any): _36.BlockMeta;
|
|
535
|
+
toJSON(message: _36.BlockMeta): unknown;
|
|
536
|
+
fromPartial(object: Partial<_36.BlockMeta>): _36.BlockMeta;
|
|
537
537
|
};
|
|
538
538
|
TxProof: {
|
|
539
|
-
encode(message:
|
|
540
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
541
|
-
fromJSON(object: any):
|
|
542
|
-
toJSON(message:
|
|
543
|
-
fromPartial(object: Partial<
|
|
539
|
+
encode(message: _36.TxProof, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
540
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.TxProof;
|
|
541
|
+
fromJSON(object: any): _36.TxProof;
|
|
542
|
+
toJSON(message: _36.TxProof): unknown;
|
|
543
|
+
fromPartial(object: Partial<_36.TxProof>): _36.TxProof;
|
|
544
544
|
};
|
|
545
545
|
ConsensusParams: {
|
|
546
|
-
encode(message:
|
|
547
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
548
|
-
fromJSON(object: any):
|
|
549
|
-
toJSON(message:
|
|
550
|
-
fromPartial(object: Partial<
|
|
546
|
+
encode(message: _35.ConsensusParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
547
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _35.ConsensusParams;
|
|
548
|
+
fromJSON(object: any): _35.ConsensusParams;
|
|
549
|
+
toJSON(message: _35.ConsensusParams): unknown;
|
|
550
|
+
fromPartial(object: Partial<_35.ConsensusParams>): _35.ConsensusParams;
|
|
551
551
|
};
|
|
552
552
|
BlockParams: {
|
|
553
|
-
encode(message:
|
|
554
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
555
|
-
fromJSON(object: any):
|
|
556
|
-
toJSON(message:
|
|
557
|
-
fromPartial(object: Partial<
|
|
553
|
+
encode(message: _35.BlockParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
554
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _35.BlockParams;
|
|
555
|
+
fromJSON(object: any): _35.BlockParams;
|
|
556
|
+
toJSON(message: _35.BlockParams): unknown;
|
|
557
|
+
fromPartial(object: Partial<_35.BlockParams>): _35.BlockParams;
|
|
558
558
|
};
|
|
559
559
|
EvidenceParams: {
|
|
560
|
-
encode(message:
|
|
561
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
562
|
-
fromJSON(object: any):
|
|
563
|
-
toJSON(message:
|
|
564
|
-
fromPartial(object: Partial<
|
|
560
|
+
encode(message: _35.EvidenceParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
561
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _35.EvidenceParams;
|
|
562
|
+
fromJSON(object: any): _35.EvidenceParams;
|
|
563
|
+
toJSON(message: _35.EvidenceParams): unknown;
|
|
564
|
+
fromPartial(object: Partial<_35.EvidenceParams>): _35.EvidenceParams;
|
|
565
565
|
};
|
|
566
566
|
ValidatorParams: {
|
|
567
|
-
encode(message:
|
|
568
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
569
|
-
fromJSON(object: any):
|
|
570
|
-
toJSON(message:
|
|
571
|
-
fromPartial(object: Partial<
|
|
567
|
+
encode(message: _35.ValidatorParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
568
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _35.ValidatorParams;
|
|
569
|
+
fromJSON(object: any): _35.ValidatorParams;
|
|
570
|
+
toJSON(message: _35.ValidatorParams): unknown;
|
|
571
|
+
fromPartial(object: Partial<_35.ValidatorParams>): _35.ValidatorParams;
|
|
572
572
|
};
|
|
573
573
|
VersionParams: {
|
|
574
|
-
encode(message:
|
|
575
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
576
|
-
fromJSON(object: any):
|
|
577
|
-
toJSON(message:
|
|
578
|
-
fromPartial(object: Partial<
|
|
574
|
+
encode(message: _35.VersionParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
575
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _35.VersionParams;
|
|
576
|
+
fromJSON(object: any): _35.VersionParams;
|
|
577
|
+
toJSON(message: _35.VersionParams): unknown;
|
|
578
|
+
fromPartial(object: Partial<_35.VersionParams>): _35.VersionParams;
|
|
579
579
|
};
|
|
580
580
|
HashedParams: {
|
|
581
|
-
encode(message:
|
|
582
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
583
|
-
fromJSON(object: any):
|
|
584
|
-
toJSON(message:
|
|
585
|
-
fromPartial(object: Partial<
|
|
581
|
+
encode(message: _35.HashedParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
582
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _35.HashedParams;
|
|
583
|
+
fromJSON(object: any): _35.HashedParams;
|
|
584
|
+
toJSON(message: _35.HashedParams): unknown;
|
|
585
|
+
fromPartial(object: Partial<_35.HashedParams>): _35.HashedParams;
|
|
586
586
|
};
|
|
587
587
|
Evidence: {
|
|
588
|
-
encode(message:
|
|
589
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
590
|
-
fromJSON(object: any):
|
|
591
|
-
toJSON(message:
|
|
592
|
-
fromPartial(object: Partial<
|
|
588
|
+
encode(message: _34.Evidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
589
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _34.Evidence;
|
|
590
|
+
fromJSON(object: any): _34.Evidence;
|
|
591
|
+
toJSON(message: _34.Evidence): unknown;
|
|
592
|
+
fromPartial(object: Partial<_34.Evidence>): _34.Evidence;
|
|
593
593
|
};
|
|
594
594
|
DuplicateVoteEvidence: {
|
|
595
|
-
encode(message:
|
|
596
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
597
|
-
fromJSON(object: any):
|
|
598
|
-
toJSON(message:
|
|
599
|
-
fromPartial(object: Partial<
|
|
595
|
+
encode(message: _34.DuplicateVoteEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
596
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _34.DuplicateVoteEvidence;
|
|
597
|
+
fromJSON(object: any): _34.DuplicateVoteEvidence;
|
|
598
|
+
toJSON(message: _34.DuplicateVoteEvidence): unknown;
|
|
599
|
+
fromPartial(object: Partial<_34.DuplicateVoteEvidence>): _34.DuplicateVoteEvidence;
|
|
600
600
|
};
|
|
601
601
|
LightClientAttackEvidence: {
|
|
602
|
-
encode(message:
|
|
603
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
604
|
-
fromJSON(object: any):
|
|
605
|
-
toJSON(message:
|
|
606
|
-
fromPartial(object: Partial<
|
|
602
|
+
encode(message: _34.LightClientAttackEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
603
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _34.LightClientAttackEvidence;
|
|
604
|
+
fromJSON(object: any): _34.LightClientAttackEvidence;
|
|
605
|
+
toJSON(message: _34.LightClientAttackEvidence): unknown;
|
|
606
|
+
fromPartial(object: Partial<_34.LightClientAttackEvidence>): _34.LightClientAttackEvidence;
|
|
607
607
|
};
|
|
608
608
|
EvidenceList: {
|
|
609
|
-
encode(message:
|
|
610
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
611
|
-
fromJSON(object: any):
|
|
612
|
-
toJSON(message:
|
|
613
|
-
fromPartial(object: Partial<
|
|
609
|
+
encode(message: _34.EvidenceList, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
610
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _34.EvidenceList;
|
|
611
|
+
fromJSON(object: any): _34.EvidenceList;
|
|
612
|
+
toJSON(message: _34.EvidenceList): unknown;
|
|
613
|
+
fromPartial(object: Partial<_34.EvidenceList>): _34.EvidenceList;
|
|
614
614
|
};
|
|
615
615
|
Block: {
|
|
616
|
-
encode(message:
|
|
617
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
618
|
-
fromJSON(object: any):
|
|
619
|
-
toJSON(message:
|
|
620
|
-
fromPartial(object: Partial<
|
|
616
|
+
encode(message: _33.Block, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
617
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.Block;
|
|
618
|
+
fromJSON(object: any): _33.Block;
|
|
619
|
+
toJSON(message: _33.Block): unknown;
|
|
620
|
+
fromPartial(object: Partial<_33.Block>): _33.Block;
|
|
621
621
|
};
|
|
622
622
|
};
|
|
623
623
|
const version: {
|
|
624
624
|
App: {
|
|
625
|
-
encode(message:
|
|
626
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
627
|
-
fromJSON(object: any):
|
|
628
|
-
toJSON(message:
|
|
629
|
-
fromPartial(object: Partial<
|
|
625
|
+
encode(message: _38.App, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
626
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _38.App;
|
|
627
|
+
fromJSON(object: any): _38.App;
|
|
628
|
+
toJSON(message: _38.App): unknown;
|
|
629
|
+
fromPartial(object: Partial<_38.App>): _38.App;
|
|
630
630
|
};
|
|
631
631
|
Consensus: {
|
|
632
|
-
encode(message:
|
|
633
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number):
|
|
634
|
-
fromJSON(object: any):
|
|
635
|
-
toJSON(message:
|
|
636
|
-
fromPartial(object: Partial<
|
|
632
|
+
encode(message: _38.Consensus, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
633
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _38.Consensus;
|
|
634
|
+
fromJSON(object: any): _38.Consensus;
|
|
635
|
+
toJSON(message: _38.Consensus): unknown;
|
|
636
|
+
fromPartial(object: Partial<_38.Consensus>): _38.Consensus;
|
|
637
637
|
};
|
|
638
638
|
};
|
|
639
639
|
}
|