@ark-us/wasmxjs 0.0.1 → 0.0.3
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/cosmos/bundle.js +4 -4
- package/main/codegen/wasmx/bundle.js +29 -13
- package/main/codegen/wasmx/client.js +6 -4
- package/main/codegen/wasmx/index.js +9 -9
- package/main/codegen/wasmx/rpc.query.js +17 -4
- package/main/codegen/wasmx/rpc.tx.js +19 -4
- package/main/codegen/wasmx/wasmx/{contract.js → v1/contract.js} +67 -19
- package/main/codegen/wasmx/wasmx/{genesis.js → v1/genesis.js} +45 -15
- package/main/codegen/wasmx/wasmx/{query.js → v1/query.js} +3 -3
- package/main/codegen/wasmx/wasmx/{query.rpc.Query.js → v1/query.rpc.Query.js} +9 -9
- package/main/codegen/wasmx/wasmx/{tx.amino.js → v1/tx.amino.js} +116 -78
- package/main/codegen/wasmx/wasmx/{tx.js → v1/tx.js} +223 -14
- package/main/codegen/wasmx/wasmx/{tx.registry.js → v1/tx.registry.js} +91 -31
- package/main/codegen/wasmx/wasmx/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +26 -6
- package/main/codegen/wasmx/websrv/v1/genesis.js +59 -0
- package/main/codegen/wasmx/websrv/v1/params.js +59 -0
- package/main/codegen/wasmx/websrv/v1/proposal.js +167 -0
- package/main/codegen/wasmx/websrv/v1/query.js +806 -0
- package/main/codegen/wasmx/websrv/v1/query.rpc.Query.js +128 -0
- package/main/codegen/wasmx/websrv/v1/tx.amino.js +71 -0
- package/main/codegen/wasmx/websrv/v1/tx.js +312 -0
- package/main/codegen/wasmx/websrv/v1/tx.registry.js +123 -0
- package/main/codegen/wasmx/websrv/v1/tx.rpc.msg.js +55 -0
- package/module/codegen/cosmos/bundle.js +4 -4
- package/module/codegen/wasmx/bundle.js +29 -13
- package/module/codegen/wasmx/client.js +6 -4
- package/module/codegen/wasmx/index.js +9 -9
- package/module/codegen/wasmx/rpc.query.js +6 -1
- package/module/codegen/wasmx/rpc.tx.js +6 -1
- package/module/codegen/wasmx/wasmx/{contract.js → v1/contract.js} +63 -17
- package/module/codegen/wasmx/wasmx/{genesis.js → v1/genesis.js} +46 -16
- package/module/codegen/wasmx/wasmx/{query.js → v1/query.js} +3 -3
- package/module/codegen/wasmx/wasmx/{query.rpc.Query.js → v1/query.rpc.Query.js} +9 -9
- package/module/codegen/wasmx/wasmx/{tx.amino.js → v1/tx.amino.js} +55 -13
- package/module/codegen/wasmx/wasmx/{tx.js → v1/tx.js} +213 -12
- package/module/codegen/wasmx/wasmx/v1/tx.registry.js +259 -0
- package/module/codegen/wasmx/wasmx/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +19 -7
- package/module/codegen/wasmx/websrv/v1/genesis.js +50 -0
- package/module/codegen/wasmx/websrv/v1/params.js +50 -0
- package/module/codegen/wasmx/websrv/v1/proposal.js +156 -0
- package/module/codegen/wasmx/websrv/v1/query.js +739 -0
- package/module/codegen/wasmx/websrv/v1/query.rpc.Query.js +83 -0
- package/module/codegen/wasmx/websrv/v1/tx.amino.js +70 -0
- package/module/codegen/wasmx/websrv/v1/tx.js +291 -0
- package/module/codegen/wasmx/websrv/v1/tx.registry.js +109 -0
- package/module/codegen/wasmx/websrv/v1/tx.rpc.msg.js +29 -0
- package/package.json +1 -1
- package/src/codegen/cosmos/bundle.ts +4 -4
- package/src/codegen/wasmx/bundle.ts +46 -23
- package/src/codegen/wasmx/client.ts +7 -4
- package/src/codegen/wasmx/index.ts +9 -9
- package/src/codegen/wasmx/rpc.query.ts +6 -1
- package/src/codegen/wasmx/rpc.tx.ts +6 -1
- package/src/codegen/wasmx/wasmx/{contract.ts → v1/contract.ts} +91 -20
- package/src/codegen/wasmx/wasmx/{genesis.ts → v1/genesis.ts} +69 -19
- package/src/codegen/wasmx/wasmx/{query.rpc.Query.ts → v1/query.rpc.Query.ts} +10 -10
- package/src/codegen/wasmx/wasmx/{query.ts → v1/query.ts} +3 -3
- package/src/codegen/wasmx/wasmx/{tx.amino.ts → v1/tx.amino.ts} +76 -20
- package/src/codegen/wasmx/wasmx/{tx.registry.ts → v1/tx.registry.ts} +102 -32
- package/src/codegen/wasmx/wasmx/{tx.rpc.msg.ts → v1/tx.rpc.msg.ts} +28 -8
- package/src/codegen/wasmx/wasmx/{tx.ts → v1/tx.ts} +304 -2
- package/src/codegen/wasmx/websrv/v1/genesis.ts +70 -0
- package/src/codegen/wasmx/websrv/v1/params.ts +69 -0
- package/src/codegen/wasmx/websrv/v1/proposal.ts +254 -0
- package/src/codegen/wasmx/websrv/v1/query.rpc.Query.ts +121 -0
- package/src/codegen/wasmx/websrv/v1/query.ts +1151 -0
- package/src/codegen/wasmx/websrv/v1/tx.amino.ts +94 -0
- package/src/codegen/wasmx/websrv/v1/tx.registry.ts +125 -0
- package/src/codegen/wasmx/websrv/v1/tx.rpc.msg.ts +44 -0
- package/src/codegen/wasmx/websrv/v1/tx.ts +406 -0
- package/types/codegen/cosmos/bundle.d.ts +2 -2
- package/types/codegen/wasmx/bundle.d.ts +980 -555
- package/types/codegen/wasmx/client.d.ts +75 -18
- package/types/codegen/wasmx/rpc.query.d.ts +22 -9
- package/types/codegen/wasmx/rpc.tx.d.ts +6 -1
- package/types/codegen/wasmx/wasmx/contract.d.ts +19 -2
- package/types/codegen/wasmx/wasmx/genesis.d.ts +19 -5
- package/types/codegen/wasmx/wasmx/tx.amino.d.ts +37 -13
- package/types/codegen/wasmx/wasmx/tx.d.ts +72 -0
- package/types/codegen/wasmx/wasmx/tx.registry.d.ts +41 -1
- package/types/codegen/wasmx/wasmx/tx.rpc.msg.d.ts +7 -1
- package/types/codegen/wasmx/wasmx/v1/contract.d.ts +139 -0
- package/types/codegen/wasmx/wasmx/v1/genesis.d.ts +121 -0
- package/types/codegen/wasmx/wasmx/v1/params.d.ts +14 -0
- package/types/codegen/wasmx/wasmx/v1/query.d.ts +451 -0
- package/types/codegen/wasmx/wasmx/v1/query.rpc.Query.d.ts +48 -0
- package/types/codegen/wasmx/wasmx/v1/tx.amino.d.ts +134 -0
- package/types/codegen/wasmx/wasmx/v1/tx.d.ts +404 -0
- package/types/codegen/wasmx/wasmx/v1/tx.registry.d.ts +176 -0
- package/types/codegen/wasmx/wasmx/v1/tx.rpc.msg.d.ts +39 -0
- package/types/codegen/wasmx/websrv/genesis.d.ts +17 -0
- package/types/codegen/wasmx/websrv/params.d.ts +16 -0
- package/types/codegen/wasmx/websrv/proposal.d.ts +65 -0
- package/types/codegen/wasmx/websrv/query.d.ts +315 -0
- package/types/codegen/wasmx/websrv/query.rpc.Query.d.ts +40 -0
- package/types/codegen/wasmx/websrv/tx.amino.d.ts +41 -0
- package/types/codegen/wasmx/websrv/tx.d.ts +90 -0
- package/types/codegen/wasmx/websrv/tx.registry.d.ts +76 -0
- package/types/codegen/wasmx/websrv/tx.rpc.msg.d.ts +18 -0
- package/types/codegen/wasmx/websrv/v1/genesis.d.ts +17 -0
- package/types/codegen/wasmx/websrv/v1/params.d.ts +16 -0
- package/types/codegen/wasmx/websrv/v1/proposal.d.ts +65 -0
- package/types/codegen/wasmx/websrv/v1/query.d.ts +315 -0
- package/types/codegen/wasmx/websrv/v1/query.rpc.Query.d.ts +40 -0
- package/types/codegen/wasmx/websrv/v1/tx.amino.d.ts +41 -0
- package/types/codegen/wasmx/websrv/v1/tx.d.ts +90 -0
- package/types/codegen/wasmx/websrv/v1/tx.registry.d.ts +76 -0
- package/types/codegen/wasmx/websrv/v1/tx.rpc.msg.d.ts +18 -0
- package/module/codegen/wasmx/wasmx/tx.registry.js +0 -199
- /package/main/codegen/wasmx/wasmx/{params.js → v1/params.js} +0 -0
- /package/module/codegen/wasmx/wasmx/{params.js → v1/params.js} +0 -0
- /package/src/codegen/wasmx/wasmx/{params.ts → v1/params.ts} +0 -0
|
@@ -1,582 +1,994 @@
|
|
|
1
|
-
import * as _29 from "./wasmx/contract";
|
|
2
|
-
import * as _30 from "./wasmx/genesis";
|
|
3
|
-
import * as _31 from "./wasmx/params";
|
|
4
|
-
import * as _32 from "./wasmx/query";
|
|
5
|
-
import * as _33 from "./wasmx/tx";
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
1
|
+
import * as _29 from "./wasmx/v1/contract";
|
|
2
|
+
import * as _30 from "./wasmx/v1/genesis";
|
|
3
|
+
import * as _31 from "./wasmx/v1/params";
|
|
4
|
+
import * as _32 from "./wasmx/v1/query";
|
|
5
|
+
import * as _33 from "./wasmx/v1/tx";
|
|
6
|
+
import * as _34 from "./websrv/v1/genesis";
|
|
7
|
+
import * as _35 from "./websrv/v1/params";
|
|
8
|
+
import * as _36 from "./websrv/v1/proposal";
|
|
9
|
+
import * as _37 from "./websrv/v1/query";
|
|
10
|
+
import * as _38 from "./websrv/v1/tx";
|
|
11
|
+
import * as _44 from "./wasmx/v1/query.rpc.Query";
|
|
12
|
+
import * as _45 from "./websrv/v1/query.rpc.Query";
|
|
13
|
+
import * as _46 from "./wasmx/v1/tx.rpc.msg";
|
|
14
|
+
import * as _47 from "./websrv/v1/tx.rpc.msg";
|
|
8
15
|
export declare namespace wasmx {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
24
|
-
load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
|
|
25
|
-
MessageComposer: {
|
|
26
|
-
encoded: {
|
|
27
|
-
storeCode(value: _33.MsgStoreCode): {
|
|
28
|
-
typeUrl: string;
|
|
29
|
-
value: Uint8Array;
|
|
30
|
-
};
|
|
31
|
-
instantiateContract(value: _33.MsgInstantiateContract): {
|
|
32
|
-
typeUrl: string;
|
|
33
|
-
value: Uint8Array;
|
|
34
|
-
};
|
|
35
|
-
instantiateContract2(value: _33.MsgInstantiateContract2): {
|
|
36
|
-
typeUrl: string;
|
|
37
|
-
value: Uint8Array;
|
|
38
|
-
};
|
|
39
|
-
executeContract(value: _33.MsgExecuteContract): {
|
|
40
|
-
typeUrl: string;
|
|
41
|
-
value: Uint8Array;
|
|
42
|
-
};
|
|
43
|
-
executeWithOriginContract(value: _33.MsgExecuteWithOriginContract): {
|
|
44
|
-
typeUrl: string;
|
|
45
|
-
value: Uint8Array;
|
|
46
|
-
};
|
|
47
|
-
executeDelegateContract(value: _33.MsgExecuteDelegateContract): {
|
|
48
|
-
typeUrl: string;
|
|
49
|
-
value: Uint8Array;
|
|
50
|
-
};
|
|
16
|
+
namespace wasmx {
|
|
17
|
+
const v1: {
|
|
18
|
+
MsgClientImpl: typeof _46.MsgClientImpl;
|
|
19
|
+
QueryClientImpl: typeof _44.QueryClientImpl;
|
|
20
|
+
createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => {
|
|
21
|
+
contractInfo(request: _32.QueryContractInfoRequest): Promise<_32.QueryContractInfoResponse>;
|
|
22
|
+
contractsByCode(request: _32.QueryContractsByCodeRequest): Promise<_32.QueryContractsByCodeResponse>;
|
|
23
|
+
allContractState(request: _32.QueryAllContractStateRequest): Promise<_32.QueryAllContractStateResponse>;
|
|
24
|
+
rawContractState(request: _32.QueryRawContractStateRequest): Promise<_32.QueryRawContractStateResponse>;
|
|
25
|
+
smartContractCall(request: _32.QuerySmartContractCallRequest): Promise<_32.QuerySmartContractCallResponse>;
|
|
26
|
+
code(request: _32.QueryCodeRequest): Promise<_32.QueryCodeResponse>;
|
|
27
|
+
codes(request?: _32.QueryCodesRequest): Promise<_32.QueryCodesResponse>;
|
|
28
|
+
params(request?: _32.QueryParamsRequest): Promise<_32.QueryParamsResponse>;
|
|
29
|
+
contractsByCreator(request: _32.QueryContractsByCreatorRequest): Promise<_32.QueryContractsByCreatorResponse>;
|
|
51
30
|
};
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
31
|
+
registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
32
|
+
load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
|
|
33
|
+
MessageComposer: {
|
|
34
|
+
encoded: {
|
|
35
|
+
storeCode(value: _33.MsgStoreCode): {
|
|
36
|
+
typeUrl: string;
|
|
37
|
+
value: Uint8Array;
|
|
38
|
+
};
|
|
39
|
+
storeCodeEvm(value: _33.MsgStoreCodeEvm): {
|
|
40
|
+
typeUrl: string;
|
|
41
|
+
value: Uint8Array;
|
|
42
|
+
};
|
|
43
|
+
instantiateContract(value: _33.MsgInstantiateContract): {
|
|
44
|
+
typeUrl: string;
|
|
45
|
+
value: Uint8Array;
|
|
46
|
+
};
|
|
47
|
+
instantiateContract2(value: _33.MsgInstantiateContract2): {
|
|
48
|
+
typeUrl: string;
|
|
49
|
+
value: Uint8Array;
|
|
50
|
+
};
|
|
51
|
+
executeContract(value: _33.MsgExecuteContract): {
|
|
52
|
+
typeUrl: string;
|
|
53
|
+
value: Uint8Array;
|
|
54
|
+
};
|
|
55
|
+
executeWithOriginContract(value: _33.MsgExecuteWithOriginContract): {
|
|
56
|
+
typeUrl: string;
|
|
57
|
+
value: Uint8Array;
|
|
58
|
+
};
|
|
59
|
+
executeDelegateContract(value: _33.MsgExecuteDelegateContract): {
|
|
60
|
+
typeUrl: string;
|
|
61
|
+
value: Uint8Array;
|
|
62
|
+
};
|
|
63
|
+
compileContract(value: _33.MsgCompileContract): {
|
|
64
|
+
typeUrl: string;
|
|
65
|
+
value: Uint8Array;
|
|
66
|
+
};
|
|
60
67
|
};
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
68
|
+
withTypeUrl: {
|
|
69
|
+
storeCode(value: _33.MsgStoreCode): {
|
|
70
|
+
typeUrl: string;
|
|
71
|
+
value: _33.MsgStoreCode;
|
|
72
|
+
};
|
|
73
|
+
storeCodeEvm(value: _33.MsgStoreCodeEvm): {
|
|
74
|
+
typeUrl: string;
|
|
75
|
+
value: _33.MsgStoreCodeEvm;
|
|
76
|
+
};
|
|
77
|
+
instantiateContract(value: _33.MsgInstantiateContract): {
|
|
78
|
+
typeUrl: string;
|
|
79
|
+
value: _33.MsgInstantiateContract;
|
|
80
|
+
};
|
|
81
|
+
instantiateContract2(value: _33.MsgInstantiateContract2): {
|
|
82
|
+
typeUrl: string;
|
|
83
|
+
value: _33.MsgInstantiateContract2;
|
|
84
|
+
};
|
|
85
|
+
executeContract(value: _33.MsgExecuteContract): {
|
|
86
|
+
typeUrl: string;
|
|
87
|
+
value: _33.MsgExecuteContract;
|
|
88
|
+
};
|
|
89
|
+
executeWithOriginContract(value: _33.MsgExecuteWithOriginContract): {
|
|
90
|
+
typeUrl: string;
|
|
91
|
+
value: _33.MsgExecuteWithOriginContract;
|
|
92
|
+
};
|
|
93
|
+
executeDelegateContract(value: _33.MsgExecuteDelegateContract): {
|
|
94
|
+
typeUrl: string;
|
|
95
|
+
value: _33.MsgExecuteDelegateContract;
|
|
96
|
+
};
|
|
97
|
+
compileContract(value: _33.MsgCompileContract): {
|
|
98
|
+
typeUrl: string;
|
|
99
|
+
value: _33.MsgCompileContract;
|
|
100
|
+
};
|
|
64
101
|
};
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
102
|
+
toJSON: {
|
|
103
|
+
storeCode(value: _33.MsgStoreCode): {
|
|
104
|
+
typeUrl: string;
|
|
105
|
+
value: unknown;
|
|
106
|
+
};
|
|
107
|
+
storeCodeEvm(value: _33.MsgStoreCodeEvm): {
|
|
108
|
+
typeUrl: string;
|
|
109
|
+
value: unknown;
|
|
110
|
+
};
|
|
111
|
+
instantiateContract(value: _33.MsgInstantiateContract): {
|
|
112
|
+
typeUrl: string;
|
|
113
|
+
value: unknown;
|
|
114
|
+
};
|
|
115
|
+
instantiateContract2(value: _33.MsgInstantiateContract2): {
|
|
116
|
+
typeUrl: string;
|
|
117
|
+
value: unknown;
|
|
118
|
+
};
|
|
119
|
+
executeContract(value: _33.MsgExecuteContract): {
|
|
120
|
+
typeUrl: string;
|
|
121
|
+
value: unknown;
|
|
122
|
+
};
|
|
123
|
+
executeWithOriginContract(value: _33.MsgExecuteWithOriginContract): {
|
|
124
|
+
typeUrl: string;
|
|
125
|
+
value: unknown;
|
|
126
|
+
};
|
|
127
|
+
executeDelegateContract(value: _33.MsgExecuteDelegateContract): {
|
|
128
|
+
typeUrl: string;
|
|
129
|
+
value: unknown;
|
|
130
|
+
};
|
|
131
|
+
compileContract(value: _33.MsgCompileContract): {
|
|
132
|
+
typeUrl: string;
|
|
133
|
+
value: unknown;
|
|
134
|
+
};
|
|
68
135
|
};
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
136
|
+
fromJSON: {
|
|
137
|
+
storeCode(value: any): {
|
|
138
|
+
typeUrl: string;
|
|
139
|
+
value: _33.MsgStoreCode;
|
|
140
|
+
};
|
|
141
|
+
storeCodeEvm(value: any): {
|
|
142
|
+
typeUrl: string;
|
|
143
|
+
value: _33.MsgStoreCodeEvm;
|
|
144
|
+
};
|
|
145
|
+
instantiateContract(value: any): {
|
|
146
|
+
typeUrl: string;
|
|
147
|
+
value: _33.MsgInstantiateContract;
|
|
148
|
+
};
|
|
149
|
+
instantiateContract2(value: any): {
|
|
150
|
+
typeUrl: string;
|
|
151
|
+
value: _33.MsgInstantiateContract2;
|
|
152
|
+
};
|
|
153
|
+
executeContract(value: any): {
|
|
154
|
+
typeUrl: string;
|
|
155
|
+
value: _33.MsgExecuteContract;
|
|
156
|
+
};
|
|
157
|
+
executeWithOriginContract(value: any): {
|
|
158
|
+
typeUrl: string;
|
|
159
|
+
value: _33.MsgExecuteWithOriginContract;
|
|
160
|
+
};
|
|
161
|
+
executeDelegateContract(value: any): {
|
|
162
|
+
typeUrl: string;
|
|
163
|
+
value: _33.MsgExecuteDelegateContract;
|
|
164
|
+
};
|
|
165
|
+
compileContract(value: any): {
|
|
166
|
+
typeUrl: string;
|
|
167
|
+
value: _33.MsgCompileContract;
|
|
168
|
+
};
|
|
72
169
|
};
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
170
|
+
fromPartial: {
|
|
171
|
+
storeCode(value: _33.MsgStoreCode): {
|
|
172
|
+
typeUrl: string;
|
|
173
|
+
value: _33.MsgStoreCode;
|
|
174
|
+
};
|
|
175
|
+
storeCodeEvm(value: _33.MsgStoreCodeEvm): {
|
|
176
|
+
typeUrl: string;
|
|
177
|
+
value: _33.MsgStoreCodeEvm;
|
|
178
|
+
};
|
|
179
|
+
instantiateContract(value: _33.MsgInstantiateContract): {
|
|
180
|
+
typeUrl: string;
|
|
181
|
+
value: _33.MsgInstantiateContract;
|
|
182
|
+
};
|
|
183
|
+
instantiateContract2(value: _33.MsgInstantiateContract2): {
|
|
184
|
+
typeUrl: string;
|
|
185
|
+
value: _33.MsgInstantiateContract2;
|
|
186
|
+
};
|
|
187
|
+
executeContract(value: _33.MsgExecuteContract): {
|
|
188
|
+
typeUrl: string;
|
|
189
|
+
value: _33.MsgExecuteContract;
|
|
190
|
+
};
|
|
191
|
+
executeWithOriginContract(value: _33.MsgExecuteWithOriginContract): {
|
|
192
|
+
typeUrl: string;
|
|
193
|
+
value: _33.MsgExecuteWithOriginContract;
|
|
194
|
+
};
|
|
195
|
+
executeDelegateContract(value: _33.MsgExecuteDelegateContract): {
|
|
196
|
+
typeUrl: string;
|
|
197
|
+
value: _33.MsgExecuteDelegateContract;
|
|
198
|
+
};
|
|
199
|
+
compileContract(value: _33.MsgCompileContract): {
|
|
200
|
+
typeUrl: string;
|
|
201
|
+
value: _33.MsgCompileContract;
|
|
202
|
+
};
|
|
76
203
|
};
|
|
77
204
|
};
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
value: unknown;
|
|
90
|
-
};
|
|
91
|
-
executeContract(value: _33.MsgExecuteContract): {
|
|
92
|
-
typeUrl: string;
|
|
93
|
-
value: unknown;
|
|
94
|
-
};
|
|
95
|
-
executeWithOriginContract(value: _33.MsgExecuteWithOriginContract): {
|
|
96
|
-
typeUrl: string;
|
|
97
|
-
value: unknown;
|
|
205
|
+
AminoConverter: {
|
|
206
|
+
"/wasmx.wasmx.v1.MsgStoreCode": {
|
|
207
|
+
aminoType: string;
|
|
208
|
+
toAmino: ({ sender, wasmByteCode }: _33.MsgStoreCode) => {
|
|
209
|
+
sender: string;
|
|
210
|
+
wasm_byte_code: Uint8Array;
|
|
211
|
+
};
|
|
212
|
+
fromAmino: ({ sender, wasm_byte_code }: {
|
|
213
|
+
sender: string;
|
|
214
|
+
wasm_byte_code: Uint8Array;
|
|
215
|
+
}) => _33.MsgStoreCode;
|
|
98
216
|
};
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
217
|
+
"/wasmx.wasmx.v1.MsgStoreCodeEvm": {
|
|
218
|
+
aminoType: string;
|
|
219
|
+
toAmino: ({ sender, evmByteCode }: _33.MsgStoreCodeEvm) => {
|
|
220
|
+
sender: string;
|
|
221
|
+
evm_byte_code: Uint8Array;
|
|
222
|
+
};
|
|
223
|
+
fromAmino: ({ sender, evm_byte_code }: {
|
|
224
|
+
sender: string;
|
|
225
|
+
evm_byte_code: Uint8Array;
|
|
226
|
+
}) => _33.MsgStoreCodeEvm;
|
|
102
227
|
};
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
228
|
+
"/wasmx.wasmx.v1.MsgInstantiateContract": {
|
|
229
|
+
aminoType: string;
|
|
230
|
+
toAmino: ({ sender, codeId, label, msg, funds }: _33.MsgInstantiateContract) => {
|
|
231
|
+
sender: string;
|
|
232
|
+
code_id: string;
|
|
233
|
+
label: string;
|
|
234
|
+
msg: Uint8Array;
|
|
235
|
+
funds: {
|
|
236
|
+
denom: string;
|
|
237
|
+
amount: string;
|
|
238
|
+
}[];
|
|
239
|
+
};
|
|
240
|
+
fromAmino: ({ sender, code_id, label, msg, funds }: {
|
|
241
|
+
sender: string;
|
|
242
|
+
code_id: string;
|
|
243
|
+
label: string;
|
|
244
|
+
msg: Uint8Array;
|
|
245
|
+
funds: {
|
|
246
|
+
denom: string;
|
|
247
|
+
amount: string;
|
|
248
|
+
}[];
|
|
249
|
+
}) => _33.MsgInstantiateContract;
|
|
108
250
|
};
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
251
|
+
"/wasmx.wasmx.v1.MsgInstantiateContract2": {
|
|
252
|
+
aminoType: string;
|
|
253
|
+
toAmino: ({ sender, codeId, label, msg, funds, salt, fixMsg }: _33.MsgInstantiateContract2) => {
|
|
254
|
+
sender: string;
|
|
255
|
+
code_id: string;
|
|
256
|
+
label: string;
|
|
257
|
+
msg: Uint8Array;
|
|
258
|
+
funds: {
|
|
259
|
+
denom: string;
|
|
260
|
+
amount: string;
|
|
261
|
+
}[];
|
|
262
|
+
salt: Uint8Array;
|
|
263
|
+
fix_msg: boolean;
|
|
264
|
+
};
|
|
265
|
+
fromAmino: ({ sender, code_id, label, msg, funds, salt, fix_msg }: {
|
|
266
|
+
sender: string;
|
|
267
|
+
code_id: string;
|
|
268
|
+
label: string;
|
|
269
|
+
msg: Uint8Array;
|
|
270
|
+
funds: {
|
|
271
|
+
denom: string;
|
|
272
|
+
amount: string;
|
|
273
|
+
}[];
|
|
274
|
+
salt: Uint8Array;
|
|
275
|
+
fix_msg: boolean;
|
|
276
|
+
}) => _33.MsgInstantiateContract2;
|
|
112
277
|
};
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
278
|
+
"/wasmx.wasmx.v1.MsgExecuteContract": {
|
|
279
|
+
aminoType: string;
|
|
280
|
+
toAmino: ({ sender, contract, msg, funds, dependencies }: _33.MsgExecuteContract) => {
|
|
281
|
+
sender: string;
|
|
282
|
+
contract: string;
|
|
283
|
+
msg: Uint8Array;
|
|
284
|
+
funds: {
|
|
285
|
+
denom: string;
|
|
286
|
+
amount: string;
|
|
287
|
+
}[];
|
|
288
|
+
dependencies: string[];
|
|
289
|
+
};
|
|
290
|
+
fromAmino: ({ sender, contract, msg, funds, dependencies }: {
|
|
291
|
+
sender: string;
|
|
292
|
+
contract: string;
|
|
293
|
+
msg: Uint8Array;
|
|
294
|
+
funds: {
|
|
295
|
+
denom: string;
|
|
296
|
+
amount: string;
|
|
297
|
+
}[];
|
|
298
|
+
dependencies: string[];
|
|
299
|
+
}) => _33.MsgExecuteContract;
|
|
116
300
|
};
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
301
|
+
"/wasmx.wasmx.v1.MsgExecuteWithOriginContract": {
|
|
302
|
+
aminoType: string;
|
|
303
|
+
toAmino: ({ origin, sender, contract, msg, funds }: _33.MsgExecuteWithOriginContract) => {
|
|
304
|
+
origin: string;
|
|
305
|
+
sender: string;
|
|
306
|
+
contract: string;
|
|
307
|
+
msg: Uint8Array;
|
|
308
|
+
funds: {
|
|
309
|
+
denom: string;
|
|
310
|
+
amount: string;
|
|
311
|
+
}[];
|
|
312
|
+
};
|
|
313
|
+
fromAmino: ({ origin, sender, contract, msg, funds }: {
|
|
314
|
+
origin: string;
|
|
315
|
+
sender: string;
|
|
316
|
+
contract: string;
|
|
317
|
+
msg: Uint8Array;
|
|
318
|
+
funds: {
|
|
319
|
+
denom: string;
|
|
320
|
+
amount: string;
|
|
321
|
+
}[];
|
|
322
|
+
}) => _33.MsgExecuteWithOriginContract;
|
|
120
323
|
};
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
324
|
+
"/wasmx.wasmx.v1.MsgExecuteDelegateContract": {
|
|
325
|
+
aminoType: string;
|
|
326
|
+
toAmino: ({ origin, sender, caller, codeContract, storageContract, msg, funds }: _33.MsgExecuteDelegateContract) => {
|
|
327
|
+
origin: string;
|
|
328
|
+
sender: string;
|
|
329
|
+
caller: string;
|
|
330
|
+
code_contract: string;
|
|
331
|
+
storage_contract: string;
|
|
332
|
+
msg: Uint8Array;
|
|
333
|
+
funds: {
|
|
334
|
+
denom: string;
|
|
335
|
+
amount: string;
|
|
336
|
+
}[];
|
|
337
|
+
};
|
|
338
|
+
fromAmino: ({ origin, sender, caller, code_contract, storage_contract, msg, funds }: {
|
|
339
|
+
origin: string;
|
|
340
|
+
sender: string;
|
|
341
|
+
caller: string;
|
|
342
|
+
code_contract: string;
|
|
343
|
+
storage_contract: string;
|
|
344
|
+
msg: Uint8Array;
|
|
345
|
+
funds: {
|
|
346
|
+
denom: string;
|
|
347
|
+
amount: string;
|
|
348
|
+
}[];
|
|
349
|
+
}) => _33.MsgExecuteDelegateContract;
|
|
124
350
|
};
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
351
|
+
"/wasmx.wasmx.v1.MsgCompileContract": {
|
|
352
|
+
aminoType: string;
|
|
353
|
+
toAmino: ({ sender, codeId }: _33.MsgCompileContract) => {
|
|
354
|
+
sender: string;
|
|
355
|
+
codeId: string;
|
|
356
|
+
};
|
|
357
|
+
fromAmino: ({ sender, codeId }: {
|
|
358
|
+
sender: string;
|
|
359
|
+
codeId: string;
|
|
360
|
+
}) => _33.MsgCompileContract;
|
|
128
361
|
};
|
|
129
362
|
};
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
363
|
+
MsgStoreCode: {
|
|
364
|
+
encode(message: _33.MsgStoreCode, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
365
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgStoreCode;
|
|
366
|
+
fromJSON(object: any): _33.MsgStoreCode;
|
|
367
|
+
toJSON(message: _33.MsgStoreCode): unknown;
|
|
368
|
+
fromPartial(object: Partial<_33.MsgStoreCode>): _33.MsgStoreCode;
|
|
369
|
+
};
|
|
370
|
+
MsgStoreCodeResponse: {
|
|
371
|
+
encode(message: _33.MsgStoreCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
372
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgStoreCodeResponse;
|
|
373
|
+
fromJSON(object: any): _33.MsgStoreCodeResponse;
|
|
374
|
+
toJSON(message: _33.MsgStoreCodeResponse): unknown;
|
|
375
|
+
fromPartial(object: Partial<_33.MsgStoreCodeResponse>): _33.MsgStoreCodeResponse;
|
|
376
|
+
};
|
|
377
|
+
MsgStoreCodeEvm: {
|
|
378
|
+
encode(message: _33.MsgStoreCodeEvm, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
379
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgStoreCodeEvm;
|
|
380
|
+
fromJSON(object: any): _33.MsgStoreCodeEvm;
|
|
381
|
+
toJSON(message: _33.MsgStoreCodeEvm): unknown;
|
|
382
|
+
fromPartial(object: Partial<_33.MsgStoreCodeEvm>): _33.MsgStoreCodeEvm;
|
|
383
|
+
};
|
|
384
|
+
MsgStoreCodeEvmResponse: {
|
|
385
|
+
encode(message: _33.MsgStoreCodeEvmResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
386
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgStoreCodeEvmResponse;
|
|
387
|
+
fromJSON(object: any): _33.MsgStoreCodeEvmResponse;
|
|
388
|
+
toJSON(message: _33.MsgStoreCodeEvmResponse): unknown;
|
|
389
|
+
fromPartial(object: Partial<_33.MsgStoreCodeEvmResponse>): _33.MsgStoreCodeEvmResponse;
|
|
390
|
+
};
|
|
391
|
+
MsgInstantiateContract: {
|
|
392
|
+
encode(message: _33.MsgInstantiateContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
393
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgInstantiateContract;
|
|
394
|
+
fromJSON(object: any): _33.MsgInstantiateContract;
|
|
395
|
+
toJSON(message: _33.MsgInstantiateContract): unknown;
|
|
396
|
+
fromPartial(object: Partial<_33.MsgInstantiateContract>): _33.MsgInstantiateContract;
|
|
397
|
+
};
|
|
398
|
+
MsgInstantiateContract2: {
|
|
399
|
+
encode(message: _33.MsgInstantiateContract2, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
400
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgInstantiateContract2;
|
|
401
|
+
fromJSON(object: any): _33.MsgInstantiateContract2;
|
|
402
|
+
toJSON(message: _33.MsgInstantiateContract2): unknown;
|
|
403
|
+
fromPartial(object: Partial<_33.MsgInstantiateContract2>): _33.MsgInstantiateContract2;
|
|
404
|
+
};
|
|
405
|
+
MsgInstantiateContractResponse: {
|
|
406
|
+
encode(message: _33.MsgInstantiateContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
407
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgInstantiateContractResponse;
|
|
408
|
+
fromJSON(object: any): _33.MsgInstantiateContractResponse;
|
|
409
|
+
toJSON(message: _33.MsgInstantiateContractResponse): unknown;
|
|
410
|
+
fromPartial(object: Partial<_33.MsgInstantiateContractResponse>): _33.MsgInstantiateContractResponse;
|
|
411
|
+
};
|
|
412
|
+
MsgInstantiateContract2Response: {
|
|
413
|
+
encode(message: _33.MsgInstantiateContract2Response, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
414
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgInstantiateContract2Response;
|
|
415
|
+
fromJSON(object: any): _33.MsgInstantiateContract2Response;
|
|
416
|
+
toJSON(message: _33.MsgInstantiateContract2Response): unknown;
|
|
417
|
+
fromPartial(object: Partial<_33.MsgInstantiateContract2Response>): _33.MsgInstantiateContract2Response;
|
|
418
|
+
};
|
|
419
|
+
MsgExecuteContract: {
|
|
420
|
+
encode(message: _33.MsgExecuteContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
421
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteContract;
|
|
422
|
+
fromJSON(object: any): _33.MsgExecuteContract;
|
|
423
|
+
toJSON(message: _33.MsgExecuteContract): unknown;
|
|
424
|
+
fromPartial(object: Partial<_33.MsgExecuteContract>): _33.MsgExecuteContract;
|
|
425
|
+
};
|
|
426
|
+
MsgExecuteContractResponse: {
|
|
427
|
+
encode(message: _33.MsgExecuteContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
428
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteContractResponse;
|
|
429
|
+
fromJSON(object: any): _33.MsgExecuteContractResponse;
|
|
430
|
+
toJSON(message: _33.MsgExecuteContractResponse): unknown;
|
|
431
|
+
fromPartial(object: Partial<_33.MsgExecuteContractResponse>): _33.MsgExecuteContractResponse;
|
|
432
|
+
};
|
|
433
|
+
MsgExecuteWithOriginContract: {
|
|
434
|
+
encode(message: _33.MsgExecuteWithOriginContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
435
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteWithOriginContract;
|
|
436
|
+
fromJSON(object: any): _33.MsgExecuteWithOriginContract;
|
|
437
|
+
toJSON(message: _33.MsgExecuteWithOriginContract): unknown;
|
|
438
|
+
fromPartial(object: Partial<_33.MsgExecuteWithOriginContract>): _33.MsgExecuteWithOriginContract;
|
|
439
|
+
};
|
|
440
|
+
MsgExecuteDelegateContract: {
|
|
441
|
+
encode(message: _33.MsgExecuteDelegateContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
442
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteDelegateContract;
|
|
443
|
+
fromJSON(object: any): _33.MsgExecuteDelegateContract;
|
|
444
|
+
toJSON(message: _33.MsgExecuteDelegateContract): unknown;
|
|
445
|
+
fromPartial(object: Partial<_33.MsgExecuteDelegateContract>): _33.MsgExecuteDelegateContract;
|
|
446
|
+
};
|
|
447
|
+
MsgExecuteDelegateContractResponse: {
|
|
448
|
+
encode(message: _33.MsgExecuteDelegateContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
449
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteDelegateContractResponse;
|
|
450
|
+
fromJSON(object: any): _33.MsgExecuteDelegateContractResponse;
|
|
451
|
+
toJSON(message: _33.MsgExecuteDelegateContractResponse): unknown;
|
|
452
|
+
fromPartial(object: Partial<_33.MsgExecuteDelegateContractResponse>): _33.MsgExecuteDelegateContractResponse;
|
|
453
|
+
};
|
|
454
|
+
MsgCompileContract: {
|
|
455
|
+
encode(message: _33.MsgCompileContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
456
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgCompileContract;
|
|
457
|
+
fromJSON(object: any): _33.MsgCompileContract;
|
|
458
|
+
toJSON(message: _33.MsgCompileContract): unknown;
|
|
459
|
+
fromPartial(object: Partial<_33.MsgCompileContract>): _33.MsgCompileContract;
|
|
460
|
+
};
|
|
461
|
+
MsgCompileContractResponse: {
|
|
462
|
+
encode(_: _33.MsgCompileContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
463
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgCompileContractResponse;
|
|
464
|
+
fromJSON(_: any): _33.MsgCompileContractResponse;
|
|
465
|
+
toJSON(_: _33.MsgCompileContractResponse): unknown;
|
|
466
|
+
fromPartial(_: Partial<_33.MsgCompileContractResponse>): _33.MsgCompileContractResponse;
|
|
467
|
+
};
|
|
468
|
+
QueryContractInfoRequest: {
|
|
469
|
+
encode(message: _32.QueryContractInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
470
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractInfoRequest;
|
|
471
|
+
fromJSON(object: any): _32.QueryContractInfoRequest;
|
|
472
|
+
toJSON(message: _32.QueryContractInfoRequest): unknown;
|
|
473
|
+
fromPartial(object: Partial<_32.QueryContractInfoRequest>): _32.QueryContractInfoRequest;
|
|
474
|
+
};
|
|
475
|
+
QueryContractInfoResponse: {
|
|
476
|
+
encode(message: _32.QueryContractInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
477
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractInfoResponse;
|
|
478
|
+
fromJSON(object: any): _32.QueryContractInfoResponse;
|
|
479
|
+
toJSON(message: _32.QueryContractInfoResponse): unknown;
|
|
480
|
+
fromPartial(object: Partial<_32.QueryContractInfoResponse>): _32.QueryContractInfoResponse;
|
|
481
|
+
};
|
|
482
|
+
QueryContractsByCodeRequest: {
|
|
483
|
+
encode(message: _32.QueryContractsByCodeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
484
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractsByCodeRequest;
|
|
485
|
+
fromJSON(object: any): _32.QueryContractsByCodeRequest;
|
|
486
|
+
toJSON(message: _32.QueryContractsByCodeRequest): unknown;
|
|
487
|
+
fromPartial(object: Partial<_32.QueryContractsByCodeRequest>): _32.QueryContractsByCodeRequest;
|
|
488
|
+
};
|
|
489
|
+
QueryContractsByCodeResponse: {
|
|
490
|
+
encode(message: _32.QueryContractsByCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
491
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractsByCodeResponse;
|
|
492
|
+
fromJSON(object: any): _32.QueryContractsByCodeResponse;
|
|
493
|
+
toJSON(message: _32.QueryContractsByCodeResponse): unknown;
|
|
494
|
+
fromPartial(object: Partial<_32.QueryContractsByCodeResponse>): _32.QueryContractsByCodeResponse;
|
|
495
|
+
};
|
|
496
|
+
QueryAllContractStateRequest: {
|
|
497
|
+
encode(message: _32.QueryAllContractStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
498
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryAllContractStateRequest;
|
|
499
|
+
fromJSON(object: any): _32.QueryAllContractStateRequest;
|
|
500
|
+
toJSON(message: _32.QueryAllContractStateRequest): unknown;
|
|
501
|
+
fromPartial(object: Partial<_32.QueryAllContractStateRequest>): _32.QueryAllContractStateRequest;
|
|
502
|
+
};
|
|
503
|
+
QueryAllContractStateResponse: {
|
|
504
|
+
encode(message: _32.QueryAllContractStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
505
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryAllContractStateResponse;
|
|
506
|
+
fromJSON(object: any): _32.QueryAllContractStateResponse;
|
|
507
|
+
toJSON(message: _32.QueryAllContractStateResponse): unknown;
|
|
508
|
+
fromPartial(object: Partial<_32.QueryAllContractStateResponse>): _32.QueryAllContractStateResponse;
|
|
509
|
+
};
|
|
510
|
+
QueryRawContractStateRequest: {
|
|
511
|
+
encode(message: _32.QueryRawContractStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
512
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryRawContractStateRequest;
|
|
513
|
+
fromJSON(object: any): _32.QueryRawContractStateRequest;
|
|
514
|
+
toJSON(message: _32.QueryRawContractStateRequest): unknown;
|
|
515
|
+
fromPartial(object: Partial<_32.QueryRawContractStateRequest>): _32.QueryRawContractStateRequest;
|
|
516
|
+
};
|
|
517
|
+
QueryRawContractStateResponse: {
|
|
518
|
+
encode(message: _32.QueryRawContractStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
519
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryRawContractStateResponse;
|
|
520
|
+
fromJSON(object: any): _32.QueryRawContractStateResponse;
|
|
521
|
+
toJSON(message: _32.QueryRawContractStateResponse): unknown;
|
|
522
|
+
fromPartial(object: Partial<_32.QueryRawContractStateResponse>): _32.QueryRawContractStateResponse;
|
|
523
|
+
};
|
|
524
|
+
QuerySmartContractCallRequest: {
|
|
525
|
+
encode(message: _32.QuerySmartContractCallRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
526
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QuerySmartContractCallRequest;
|
|
527
|
+
fromJSON(object: any): _32.QuerySmartContractCallRequest;
|
|
528
|
+
toJSON(message: _32.QuerySmartContractCallRequest): unknown;
|
|
529
|
+
fromPartial(object: Partial<_32.QuerySmartContractCallRequest>): _32.QuerySmartContractCallRequest;
|
|
530
|
+
};
|
|
531
|
+
QuerySmartContractCallResponse: {
|
|
532
|
+
encode(message: _32.QuerySmartContractCallResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
533
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QuerySmartContractCallResponse;
|
|
534
|
+
fromJSON(object: any): _32.QuerySmartContractCallResponse;
|
|
535
|
+
toJSON(message: _32.QuerySmartContractCallResponse): unknown;
|
|
536
|
+
fromPartial(object: Partial<_32.QuerySmartContractCallResponse>): _32.QuerySmartContractCallResponse;
|
|
537
|
+
};
|
|
538
|
+
QueryCodeRequest: {
|
|
539
|
+
encode(message: _32.QueryCodeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
540
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryCodeRequest;
|
|
541
|
+
fromJSON(object: any): _32.QueryCodeRequest;
|
|
542
|
+
toJSON(message: _32.QueryCodeRequest): unknown;
|
|
543
|
+
fromPartial(object: Partial<_32.QueryCodeRequest>): _32.QueryCodeRequest;
|
|
544
|
+
};
|
|
545
|
+
CodeInfoResponse: {
|
|
546
|
+
encode(message: _32.CodeInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
547
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.CodeInfoResponse;
|
|
548
|
+
fromJSON(object: any): _32.CodeInfoResponse;
|
|
549
|
+
toJSON(message: _32.CodeInfoResponse): unknown;
|
|
550
|
+
fromPartial(object: Partial<_32.CodeInfoResponse>): _32.CodeInfoResponse;
|
|
551
|
+
};
|
|
552
|
+
QueryCodeResponse: {
|
|
553
|
+
encode(message: _32.QueryCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
554
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryCodeResponse;
|
|
555
|
+
fromJSON(object: any): _32.QueryCodeResponse;
|
|
556
|
+
toJSON(message: _32.QueryCodeResponse): unknown;
|
|
557
|
+
fromPartial(object: Partial<_32.QueryCodeResponse>): _32.QueryCodeResponse;
|
|
558
|
+
};
|
|
559
|
+
QueryCodesRequest: {
|
|
560
|
+
encode(message: _32.QueryCodesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
561
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryCodesRequest;
|
|
562
|
+
fromJSON(object: any): _32.QueryCodesRequest;
|
|
563
|
+
toJSON(message: _32.QueryCodesRequest): unknown;
|
|
564
|
+
fromPartial(object: Partial<_32.QueryCodesRequest>): _32.QueryCodesRequest;
|
|
565
|
+
};
|
|
566
|
+
QueryCodesResponse: {
|
|
567
|
+
encode(message: _32.QueryCodesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
568
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryCodesResponse;
|
|
569
|
+
fromJSON(object: any): _32.QueryCodesResponse;
|
|
570
|
+
toJSON(message: _32.QueryCodesResponse): unknown;
|
|
571
|
+
fromPartial(object: Partial<_32.QueryCodesResponse>): _32.QueryCodesResponse;
|
|
572
|
+
};
|
|
573
|
+
QueryParamsRequest: {
|
|
574
|
+
encode(_: _32.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
575
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryParamsRequest;
|
|
576
|
+
fromJSON(_: any): _32.QueryParamsRequest;
|
|
577
|
+
toJSON(_: _32.QueryParamsRequest): unknown;
|
|
578
|
+
fromPartial(_: Partial<_32.QueryParamsRequest>): _32.QueryParamsRequest;
|
|
579
|
+
};
|
|
580
|
+
QueryParamsResponse: {
|
|
581
|
+
encode(message: _32.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
582
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryParamsResponse;
|
|
583
|
+
fromJSON(object: any): _32.QueryParamsResponse;
|
|
584
|
+
toJSON(message: _32.QueryParamsResponse): unknown;
|
|
585
|
+
fromPartial(object: Partial<_32.QueryParamsResponse>): _32.QueryParamsResponse;
|
|
586
|
+
};
|
|
587
|
+
QueryContractsByCreatorRequest: {
|
|
588
|
+
encode(message: _32.QueryContractsByCreatorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
589
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractsByCreatorRequest;
|
|
590
|
+
fromJSON(object: any): _32.QueryContractsByCreatorRequest;
|
|
591
|
+
toJSON(message: _32.QueryContractsByCreatorRequest): unknown;
|
|
592
|
+
fromPartial(object: Partial<_32.QueryContractsByCreatorRequest>): _32.QueryContractsByCreatorRequest;
|
|
593
|
+
};
|
|
594
|
+
QueryContractsByCreatorResponse: {
|
|
595
|
+
encode(message: _32.QueryContractsByCreatorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
596
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractsByCreatorResponse;
|
|
597
|
+
fromJSON(object: any): _32.QueryContractsByCreatorResponse;
|
|
598
|
+
toJSON(message: _32.QueryContractsByCreatorResponse): unknown;
|
|
599
|
+
fromPartial(object: Partial<_32.QueryContractsByCreatorResponse>): _32.QueryContractsByCreatorResponse;
|
|
600
|
+
};
|
|
601
|
+
Params: {
|
|
602
|
+
encode(_: _31.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
603
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _31.Params;
|
|
604
|
+
fromJSON(_: any): _31.Params;
|
|
605
|
+
toJSON(_: _31.Params): unknown;
|
|
606
|
+
fromPartial(_: Partial<_31.Params>): _31.Params;
|
|
607
|
+
};
|
|
608
|
+
GenesisState: {
|
|
609
|
+
encode(message: _30.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
610
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.GenesisState;
|
|
611
|
+
fromJSON(object: any): _30.GenesisState;
|
|
612
|
+
toJSON(message: _30.GenesisState): unknown;
|
|
613
|
+
fromPartial(object: Partial<_30.GenesisState>): _30.GenesisState;
|
|
614
|
+
};
|
|
615
|
+
SystemContract: {
|
|
616
|
+
encode(message: _30.SystemContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
617
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.SystemContract;
|
|
618
|
+
fromJSON(object: any): _30.SystemContract;
|
|
619
|
+
toJSON(message: _30.SystemContract): unknown;
|
|
620
|
+
fromPartial(object: Partial<_30.SystemContract>): _30.SystemContract;
|
|
621
|
+
};
|
|
622
|
+
Code: {
|
|
623
|
+
encode(message: _30.Code, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
624
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.Code;
|
|
625
|
+
fromJSON(object: any): _30.Code;
|
|
626
|
+
toJSON(message: _30.Code): unknown;
|
|
627
|
+
fromPartial(object: Partial<_30.Code>): _30.Code;
|
|
628
|
+
};
|
|
629
|
+
Contract: {
|
|
630
|
+
encode(message: _30.Contract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
631
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.Contract;
|
|
632
|
+
fromJSON(object: any): _30.Contract;
|
|
633
|
+
toJSON(message: _30.Contract): unknown;
|
|
634
|
+
fromPartial(object: Partial<_30.Contract>): _30.Contract;
|
|
635
|
+
};
|
|
636
|
+
Sequence: {
|
|
637
|
+
encode(message: _30.Sequence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
638
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.Sequence;
|
|
639
|
+
fromJSON(object: any): _30.Sequence;
|
|
640
|
+
toJSON(message: _30.Sequence): unknown;
|
|
641
|
+
fromPartial(object: Partial<_30.Sequence>): _30.Sequence;
|
|
642
|
+
};
|
|
643
|
+
ContractStorage: {
|
|
644
|
+
encode(message: _29.ContractStorage, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
645
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.ContractStorage;
|
|
646
|
+
fromJSON(object: any): _29.ContractStorage;
|
|
647
|
+
toJSON(message: _29.ContractStorage): unknown;
|
|
648
|
+
fromPartial(object: Partial<_29.ContractStorage>): _29.ContractStorage;
|
|
649
|
+
};
|
|
650
|
+
CodeInfo: {
|
|
651
|
+
encode(message: _29.CodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
652
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.CodeInfo;
|
|
653
|
+
fromJSON(object: any): _29.CodeInfo;
|
|
654
|
+
toJSON(message: _29.CodeInfo): unknown;
|
|
655
|
+
fromPartial(object: Partial<_29.CodeInfo>): _29.CodeInfo;
|
|
656
|
+
};
|
|
657
|
+
CodeMetadata: {
|
|
658
|
+
encode(message: _29.CodeMetadata, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
659
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.CodeMetadata;
|
|
660
|
+
fromJSON(object: any): _29.CodeMetadata;
|
|
661
|
+
toJSON(message: _29.CodeMetadata): unknown;
|
|
662
|
+
fromPartial(object: Partial<_29.CodeMetadata>): _29.CodeMetadata;
|
|
663
|
+
};
|
|
664
|
+
ContractInfo: {
|
|
665
|
+
encode(message: _29.ContractInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
666
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.ContractInfo;
|
|
667
|
+
fromJSON(object: any): _29.ContractInfo;
|
|
668
|
+
toJSON(message: _29.ContractInfo): unknown;
|
|
669
|
+
fromPartial(object: Partial<_29.ContractInfo>): _29.ContractInfo;
|
|
670
|
+
};
|
|
671
|
+
AbsoluteTxPosition: {
|
|
672
|
+
encode(message: _29.AbsoluteTxPosition, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
673
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.AbsoluteTxPosition;
|
|
674
|
+
fromJSON(object: any): _29.AbsoluteTxPosition;
|
|
675
|
+
toJSON(message: _29.AbsoluteTxPosition): unknown;
|
|
676
|
+
fromPartial(object: Partial<_29.AbsoluteTxPosition>): _29.AbsoluteTxPosition;
|
|
677
|
+
};
|
|
678
|
+
};
|
|
679
|
+
}
|
|
680
|
+
namespace websrv {
|
|
681
|
+
const v1: {
|
|
682
|
+
MsgClientImpl: typeof _47.MsgClientImpl;
|
|
683
|
+
QueryClientImpl: typeof _45.QueryClientImpl;
|
|
684
|
+
createRpcQueryExtension: (base: import("@cosmjs/stargate").QueryClient) => {
|
|
685
|
+
httpGet(request: _37.QueryHttpRequestGet): Promise<_37.QueryHttpResponseGet>;
|
|
686
|
+
contractByRoute(request: _37.QueryContractByRouteRequest): Promise<_37.QueryContractByRouteResponse>;
|
|
687
|
+
routeByContract(request: _37.QueryRouteByContractRequest): Promise<_37.QueryRouteByContractResponse>;
|
|
688
|
+
params(request?: _37.QueryParamsRequest): Promise<_37.QueryParamsResponse>;
|
|
689
|
+
getAllOauthClients(request?: _37.QueryGetAllOauthClientsRequest): Promise<_37.QueryGetAllOauthClientsResponse>;
|
|
690
|
+
getOauthClient(request: _37.QueryGetOauthClientRequest): Promise<_37.QueryGetOauthClientResponse>;
|
|
691
|
+
getOauthClientsByOwner(request: _37.QueryGetOauthClientsByOwnerRequest): Promise<_37.QueryGetOauthClientsByOwnerResponse>;
|
|
692
|
+
};
|
|
693
|
+
registry: readonly [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
694
|
+
load: (protoRegistry: import("@cosmjs/proto-signing").Registry) => void;
|
|
695
|
+
MessageComposer: {
|
|
696
|
+
encoded: {
|
|
697
|
+
registerOAuthClient(value: _38.MsgRegisterOAuthClient): {
|
|
698
|
+
typeUrl: string;
|
|
699
|
+
value: Uint8Array;
|
|
700
|
+
};
|
|
701
|
+
editOAuthClient(value: _38.MsgEditOAuthClient): {
|
|
702
|
+
typeUrl: string;
|
|
703
|
+
value: Uint8Array;
|
|
704
|
+
};
|
|
705
|
+
deregisterOAuthClient(value: _38.MsgDeregisterOAuthClient): {
|
|
706
|
+
typeUrl: string;
|
|
707
|
+
value: Uint8Array;
|
|
708
|
+
};
|
|
138
709
|
};
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
710
|
+
withTypeUrl: {
|
|
711
|
+
registerOAuthClient(value: _38.MsgRegisterOAuthClient): {
|
|
712
|
+
typeUrl: string;
|
|
713
|
+
value: _38.MsgRegisterOAuthClient;
|
|
714
|
+
};
|
|
715
|
+
editOAuthClient(value: _38.MsgEditOAuthClient): {
|
|
716
|
+
typeUrl: string;
|
|
717
|
+
value: _38.MsgEditOAuthClient;
|
|
718
|
+
};
|
|
719
|
+
deregisterOAuthClient(value: _38.MsgDeregisterOAuthClient): {
|
|
720
|
+
typeUrl: string;
|
|
721
|
+
value: _38.MsgDeregisterOAuthClient;
|
|
722
|
+
};
|
|
142
723
|
};
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
724
|
+
toJSON: {
|
|
725
|
+
registerOAuthClient(value: _38.MsgRegisterOAuthClient): {
|
|
726
|
+
typeUrl: string;
|
|
727
|
+
value: unknown;
|
|
728
|
+
};
|
|
729
|
+
editOAuthClient(value: _38.MsgEditOAuthClient): {
|
|
730
|
+
typeUrl: string;
|
|
731
|
+
value: unknown;
|
|
732
|
+
};
|
|
733
|
+
deregisterOAuthClient(value: _38.MsgDeregisterOAuthClient): {
|
|
734
|
+
typeUrl: string;
|
|
735
|
+
value: unknown;
|
|
736
|
+
};
|
|
146
737
|
};
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
738
|
+
fromJSON: {
|
|
739
|
+
registerOAuthClient(value: any): {
|
|
740
|
+
typeUrl: string;
|
|
741
|
+
value: _38.MsgRegisterOAuthClient;
|
|
742
|
+
};
|
|
743
|
+
editOAuthClient(value: any): {
|
|
744
|
+
typeUrl: string;
|
|
745
|
+
value: _38.MsgEditOAuthClient;
|
|
746
|
+
};
|
|
747
|
+
deregisterOAuthClient(value: any): {
|
|
748
|
+
typeUrl: string;
|
|
749
|
+
value: _38.MsgDeregisterOAuthClient;
|
|
750
|
+
};
|
|
150
751
|
};
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
752
|
+
fromPartial: {
|
|
753
|
+
registerOAuthClient(value: _38.MsgRegisterOAuthClient): {
|
|
754
|
+
typeUrl: string;
|
|
755
|
+
value: _38.MsgRegisterOAuthClient;
|
|
756
|
+
};
|
|
757
|
+
editOAuthClient(value: _38.MsgEditOAuthClient): {
|
|
758
|
+
typeUrl: string;
|
|
759
|
+
value: _38.MsgEditOAuthClient;
|
|
760
|
+
};
|
|
761
|
+
deregisterOAuthClient(value: _38.MsgDeregisterOAuthClient): {
|
|
762
|
+
typeUrl: string;
|
|
763
|
+
value: _38.MsgDeregisterOAuthClient;
|
|
764
|
+
};
|
|
154
765
|
};
|
|
155
766
|
};
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
}) => _33.MsgStoreCode;
|
|
168
|
-
};
|
|
169
|
-
"/wasmx.wasmx.MsgInstantiateContract": {
|
|
170
|
-
aminoType: string;
|
|
171
|
-
toAmino: ({ sender, codeId, label, msg, funds }: _33.MsgInstantiateContract) => {
|
|
172
|
-
sender: string;
|
|
173
|
-
code_id: string;
|
|
174
|
-
label: string;
|
|
175
|
-
msg: Uint8Array;
|
|
176
|
-
funds: {
|
|
177
|
-
denom: string;
|
|
178
|
-
amount: string;
|
|
179
|
-
}[];
|
|
180
|
-
};
|
|
181
|
-
fromAmino: ({ sender, code_id, label, msg, funds }: {
|
|
182
|
-
sender: string;
|
|
183
|
-
code_id: string;
|
|
184
|
-
label: string;
|
|
185
|
-
msg: Uint8Array;
|
|
186
|
-
funds: {
|
|
187
|
-
denom: string;
|
|
188
|
-
amount: string;
|
|
189
|
-
}[];
|
|
190
|
-
}) => _33.MsgInstantiateContract;
|
|
191
|
-
};
|
|
192
|
-
"/wasmx.wasmx.MsgInstantiateContract2": {
|
|
193
|
-
aminoType: string;
|
|
194
|
-
toAmino: ({ sender, codeId, label, msg, funds, salt, fixMsg }: _33.MsgInstantiateContract2) => {
|
|
195
|
-
sender: string;
|
|
196
|
-
code_id: string;
|
|
197
|
-
label: string;
|
|
198
|
-
msg: Uint8Array;
|
|
199
|
-
funds: {
|
|
200
|
-
denom: string;
|
|
201
|
-
amount: string;
|
|
202
|
-
}[];
|
|
203
|
-
salt: Uint8Array;
|
|
204
|
-
fix_msg: boolean;
|
|
205
|
-
};
|
|
206
|
-
fromAmino: ({ sender, code_id, label, msg, funds, salt, fix_msg }: {
|
|
207
|
-
sender: string;
|
|
208
|
-
code_id: string;
|
|
209
|
-
label: string;
|
|
210
|
-
msg: Uint8Array;
|
|
211
|
-
funds: {
|
|
212
|
-
denom: string;
|
|
213
|
-
amount: string;
|
|
214
|
-
}[];
|
|
215
|
-
salt: Uint8Array;
|
|
216
|
-
fix_msg: boolean;
|
|
217
|
-
}) => _33.MsgInstantiateContract2;
|
|
218
|
-
};
|
|
219
|
-
"/wasmx.wasmx.MsgExecuteContract": {
|
|
220
|
-
aminoType: string;
|
|
221
|
-
toAmino: ({ sender, contract, msg, funds, dependencies }: _33.MsgExecuteContract) => {
|
|
222
|
-
sender: string;
|
|
223
|
-
contract: string;
|
|
224
|
-
msg: Uint8Array;
|
|
225
|
-
funds: {
|
|
226
|
-
denom: string;
|
|
227
|
-
amount: string;
|
|
228
|
-
}[];
|
|
229
|
-
dependencies: string[];
|
|
767
|
+
AminoConverter: {
|
|
768
|
+
"/wasmx.websrv.v1.MsgRegisterOAuthClient": {
|
|
769
|
+
aminoType: string;
|
|
770
|
+
toAmino: ({ owner, domain }: _38.MsgRegisterOAuthClient) => {
|
|
771
|
+
owner: string;
|
|
772
|
+
domain: string;
|
|
773
|
+
};
|
|
774
|
+
fromAmino: ({ owner, domain }: {
|
|
775
|
+
owner: string;
|
|
776
|
+
domain: string;
|
|
777
|
+
}) => _38.MsgRegisterOAuthClient;
|
|
230
778
|
};
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
aminoType: string;
|
|
244
|
-
toAmino: ({ origin, sender, contract, msg, funds }: _33.MsgExecuteWithOriginContract) => {
|
|
245
|
-
origin: string;
|
|
246
|
-
sender: string;
|
|
247
|
-
contract: string;
|
|
248
|
-
msg: Uint8Array;
|
|
249
|
-
funds: {
|
|
250
|
-
denom: string;
|
|
251
|
-
amount: string;
|
|
252
|
-
}[];
|
|
779
|
+
"/wasmx.websrv.v1.MsgEditOAuthClient": {
|
|
780
|
+
aminoType: string;
|
|
781
|
+
toAmino: ({ owner, clientId, domain }: _38.MsgEditOAuthClient) => {
|
|
782
|
+
owner: string;
|
|
783
|
+
client_id: string;
|
|
784
|
+
domain: string;
|
|
785
|
+
};
|
|
786
|
+
fromAmino: ({ owner, client_id, domain }: {
|
|
787
|
+
owner: string;
|
|
788
|
+
client_id: string;
|
|
789
|
+
domain: string;
|
|
790
|
+
}) => _38.MsgEditOAuthClient;
|
|
253
791
|
};
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
};
|
|
265
|
-
"/wasmx.wasmx.MsgExecuteDelegateContract": {
|
|
266
|
-
aminoType: string;
|
|
267
|
-
toAmino: ({ origin, sender, caller, codeContract, storageContract, msg, funds }: _33.MsgExecuteDelegateContract) => {
|
|
268
|
-
origin: string;
|
|
269
|
-
sender: string;
|
|
270
|
-
caller: string;
|
|
271
|
-
code_contract: string;
|
|
272
|
-
storage_contract: string;
|
|
273
|
-
msg: Uint8Array;
|
|
274
|
-
funds: {
|
|
275
|
-
denom: string;
|
|
276
|
-
amount: string;
|
|
277
|
-
}[];
|
|
792
|
+
"/wasmx.websrv.v1.MsgDeregisterOAuthClient": {
|
|
793
|
+
aminoType: string;
|
|
794
|
+
toAmino: ({ owner, clientId }: _38.MsgDeregisterOAuthClient) => {
|
|
795
|
+
owner: string;
|
|
796
|
+
client_id: string;
|
|
797
|
+
};
|
|
798
|
+
fromAmino: ({ owner, client_id }: {
|
|
799
|
+
owner: string;
|
|
800
|
+
client_id: string;
|
|
801
|
+
}) => _38.MsgDeregisterOAuthClient;
|
|
278
802
|
};
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
803
|
+
};
|
|
804
|
+
MsgRegisterOAuthClient: {
|
|
805
|
+
encode(message: _38.MsgRegisterOAuthClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
806
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _38.MsgRegisterOAuthClient;
|
|
807
|
+
fromJSON(object: any): _38.MsgRegisterOAuthClient;
|
|
808
|
+
toJSON(message: _38.MsgRegisterOAuthClient): unknown;
|
|
809
|
+
fromPartial(object: Partial<_38.MsgRegisterOAuthClient>): _38.MsgRegisterOAuthClient;
|
|
810
|
+
};
|
|
811
|
+
MsgRegisterOAuthClientResponse: {
|
|
812
|
+
encode(message: _38.MsgRegisterOAuthClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
813
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _38.MsgRegisterOAuthClientResponse;
|
|
814
|
+
fromJSON(object: any): _38.MsgRegisterOAuthClientResponse;
|
|
815
|
+
toJSON(message: _38.MsgRegisterOAuthClientResponse): unknown;
|
|
816
|
+
fromPartial(object: Partial<_38.MsgRegisterOAuthClientResponse>): _38.MsgRegisterOAuthClientResponse;
|
|
817
|
+
};
|
|
818
|
+
MsgEditOAuthClient: {
|
|
819
|
+
encode(message: _38.MsgEditOAuthClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
820
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _38.MsgEditOAuthClient;
|
|
821
|
+
fromJSON(object: any): _38.MsgEditOAuthClient;
|
|
822
|
+
toJSON(message: _38.MsgEditOAuthClient): unknown;
|
|
823
|
+
fromPartial(object: Partial<_38.MsgEditOAuthClient>): _38.MsgEditOAuthClient;
|
|
824
|
+
};
|
|
825
|
+
MsgEditOAuthClientResponse: {
|
|
826
|
+
encode(_: _38.MsgEditOAuthClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
827
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _38.MsgEditOAuthClientResponse;
|
|
828
|
+
fromJSON(_: any): _38.MsgEditOAuthClientResponse;
|
|
829
|
+
toJSON(_: _38.MsgEditOAuthClientResponse): unknown;
|
|
830
|
+
fromPartial(_: Partial<_38.MsgEditOAuthClientResponse>): _38.MsgEditOAuthClientResponse;
|
|
831
|
+
};
|
|
832
|
+
MsgDeregisterOAuthClient: {
|
|
833
|
+
encode(message: _38.MsgDeregisterOAuthClient, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
834
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _38.MsgDeregisterOAuthClient;
|
|
835
|
+
fromJSON(object: any): _38.MsgDeregisterOAuthClient;
|
|
836
|
+
toJSON(message: _38.MsgDeregisterOAuthClient): unknown;
|
|
837
|
+
fromPartial(object: Partial<_38.MsgDeregisterOAuthClient>): _38.MsgDeregisterOAuthClient;
|
|
838
|
+
};
|
|
839
|
+
MsgDeregisterOAuthClientResponse: {
|
|
840
|
+
encode(_: _38.MsgDeregisterOAuthClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
841
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _38.MsgDeregisterOAuthClientResponse;
|
|
842
|
+
fromJSON(_: any): _38.MsgDeregisterOAuthClientResponse;
|
|
843
|
+
toJSON(_: _38.MsgDeregisterOAuthClientResponse): unknown;
|
|
844
|
+
fromPartial(_: Partial<_38.MsgDeregisterOAuthClientResponse>): _38.MsgDeregisterOAuthClientResponse;
|
|
845
|
+
};
|
|
846
|
+
QueryContractByRouteRequest: {
|
|
847
|
+
encode(message: _37.QueryContractByRouteRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
848
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryContractByRouteRequest;
|
|
849
|
+
fromJSON(object: any): _37.QueryContractByRouteRequest;
|
|
850
|
+
toJSON(message: _37.QueryContractByRouteRequest): unknown;
|
|
851
|
+
fromPartial(object: Partial<_37.QueryContractByRouteRequest>): _37.QueryContractByRouteRequest;
|
|
852
|
+
};
|
|
853
|
+
QueryContractByRouteResponse: {
|
|
854
|
+
encode(message: _37.QueryContractByRouteResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
855
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryContractByRouteResponse;
|
|
856
|
+
fromJSON(object: any): _37.QueryContractByRouteResponse;
|
|
857
|
+
toJSON(message: _37.QueryContractByRouteResponse): unknown;
|
|
858
|
+
fromPartial(object: Partial<_37.QueryContractByRouteResponse>): _37.QueryContractByRouteResponse;
|
|
859
|
+
};
|
|
860
|
+
QueryRouteByContractRequest: {
|
|
861
|
+
encode(message: _37.QueryRouteByContractRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
862
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryRouteByContractRequest;
|
|
863
|
+
fromJSON(object: any): _37.QueryRouteByContractRequest;
|
|
864
|
+
toJSON(message: _37.QueryRouteByContractRequest): unknown;
|
|
865
|
+
fromPartial(object: Partial<_37.QueryRouteByContractRequest>): _37.QueryRouteByContractRequest;
|
|
866
|
+
};
|
|
867
|
+
QueryRouteByContractResponse: {
|
|
868
|
+
encode(message: _37.QueryRouteByContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
869
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryRouteByContractResponse;
|
|
870
|
+
fromJSON(object: any): _37.QueryRouteByContractResponse;
|
|
871
|
+
toJSON(message: _37.QueryRouteByContractResponse): unknown;
|
|
872
|
+
fromPartial(object: Partial<_37.QueryRouteByContractResponse>): _37.QueryRouteByContractResponse;
|
|
873
|
+
};
|
|
874
|
+
QueryHttpRequestGet: {
|
|
875
|
+
encode(message: _37.QueryHttpRequestGet, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
876
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryHttpRequestGet;
|
|
877
|
+
fromJSON(object: any): _37.QueryHttpRequestGet;
|
|
878
|
+
toJSON(message: _37.QueryHttpRequestGet): unknown;
|
|
879
|
+
fromPartial(object: Partial<_37.QueryHttpRequestGet>): _37.QueryHttpRequestGet;
|
|
880
|
+
};
|
|
881
|
+
QueryHttpResponseGet: {
|
|
882
|
+
encode(message: _37.QueryHttpResponseGet, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
883
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryHttpResponseGet;
|
|
884
|
+
fromJSON(object: any): _37.QueryHttpResponseGet;
|
|
885
|
+
toJSON(message: _37.QueryHttpResponseGet): unknown;
|
|
886
|
+
fromPartial(object: Partial<_37.QueryHttpResponseGet>): _37.QueryHttpResponseGet;
|
|
887
|
+
};
|
|
888
|
+
QueryParamsRequest: {
|
|
889
|
+
encode(_: _37.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
890
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryParamsRequest;
|
|
891
|
+
fromJSON(_: any): _37.QueryParamsRequest;
|
|
892
|
+
toJSON(_: _37.QueryParamsRequest): unknown;
|
|
893
|
+
fromPartial(_: Partial<_37.QueryParamsRequest>): _37.QueryParamsRequest;
|
|
894
|
+
};
|
|
895
|
+
QueryParamsResponse: {
|
|
896
|
+
encode(message: _37.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
897
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryParamsResponse;
|
|
898
|
+
fromJSON(object: any): _37.QueryParamsResponse;
|
|
899
|
+
toJSON(message: _37.QueryParamsResponse): unknown;
|
|
900
|
+
fromPartial(object: Partial<_37.QueryParamsResponse>): _37.QueryParamsResponse;
|
|
901
|
+
};
|
|
902
|
+
OauthClientInfo: {
|
|
903
|
+
encode(message: _37.OauthClientInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
904
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.OauthClientInfo;
|
|
905
|
+
fromJSON(object: any): _37.OauthClientInfo;
|
|
906
|
+
toJSON(message: _37.OauthClientInfo): unknown;
|
|
907
|
+
fromPartial(object: Partial<_37.OauthClientInfo>): _37.OauthClientInfo;
|
|
908
|
+
};
|
|
909
|
+
QueryGetAllOauthClientsRequest: {
|
|
910
|
+
encode(message: _37.QueryGetAllOauthClientsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
911
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryGetAllOauthClientsRequest;
|
|
912
|
+
fromJSON(object: any): _37.QueryGetAllOauthClientsRequest;
|
|
913
|
+
toJSON(message: _37.QueryGetAllOauthClientsRequest): unknown;
|
|
914
|
+
fromPartial(object: Partial<_37.QueryGetAllOauthClientsRequest>): _37.QueryGetAllOauthClientsRequest;
|
|
915
|
+
};
|
|
916
|
+
QueryGetAllOauthClientsResponse: {
|
|
917
|
+
encode(message: _37.QueryGetAllOauthClientsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
918
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryGetAllOauthClientsResponse;
|
|
919
|
+
fromJSON(object: any): _37.QueryGetAllOauthClientsResponse;
|
|
920
|
+
toJSON(message: _37.QueryGetAllOauthClientsResponse): unknown;
|
|
921
|
+
fromPartial(object: Partial<_37.QueryGetAllOauthClientsResponse>): _37.QueryGetAllOauthClientsResponse;
|
|
922
|
+
};
|
|
923
|
+
QueryGetOauthClientRequest: {
|
|
924
|
+
encode(message: _37.QueryGetOauthClientRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
925
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryGetOauthClientRequest;
|
|
926
|
+
fromJSON(object: any): _37.QueryGetOauthClientRequest;
|
|
927
|
+
toJSON(message: _37.QueryGetOauthClientRequest): unknown;
|
|
928
|
+
fromPartial(object: Partial<_37.QueryGetOauthClientRequest>): _37.QueryGetOauthClientRequest;
|
|
929
|
+
};
|
|
930
|
+
QueryGetOauthClientResponse: {
|
|
931
|
+
encode(message: _37.QueryGetOauthClientResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
932
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryGetOauthClientResponse;
|
|
933
|
+
fromJSON(object: any): _37.QueryGetOauthClientResponse;
|
|
934
|
+
toJSON(message: _37.QueryGetOauthClientResponse): unknown;
|
|
935
|
+
fromPartial(object: Partial<_37.QueryGetOauthClientResponse>): _37.QueryGetOauthClientResponse;
|
|
936
|
+
};
|
|
937
|
+
QueryGetOauthClientsByOwnerRequest: {
|
|
938
|
+
encode(message: _37.QueryGetOauthClientsByOwnerRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
939
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryGetOauthClientsByOwnerRequest;
|
|
940
|
+
fromJSON(object: any): _37.QueryGetOauthClientsByOwnerRequest;
|
|
941
|
+
toJSON(message: _37.QueryGetOauthClientsByOwnerRequest): unknown;
|
|
942
|
+
fromPartial(object: Partial<_37.QueryGetOauthClientsByOwnerRequest>): _37.QueryGetOauthClientsByOwnerRequest;
|
|
943
|
+
};
|
|
944
|
+
QueryGetOauthClientsByOwnerResponse: {
|
|
945
|
+
encode(message: _37.QueryGetOauthClientsByOwnerResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
946
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _37.QueryGetOauthClientsByOwnerResponse;
|
|
947
|
+
fromJSON(object: any): _37.QueryGetOauthClientsByOwnerResponse;
|
|
948
|
+
toJSON(message: _37.QueryGetOauthClientsByOwnerResponse): unknown;
|
|
949
|
+
fromPartial(object: Partial<_37.QueryGetOauthClientsByOwnerResponse>): _37.QueryGetOauthClientsByOwnerResponse;
|
|
950
|
+
};
|
|
951
|
+
RegisterRouteProposal: {
|
|
952
|
+
encode(message: _36.RegisterRouteProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
953
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.RegisterRouteProposal;
|
|
954
|
+
fromJSON(object: any): _36.RegisterRouteProposal;
|
|
955
|
+
toJSON(message: _36.RegisterRouteProposal): unknown;
|
|
956
|
+
fromPartial(object: Partial<_36.RegisterRouteProposal>): _36.RegisterRouteProposal;
|
|
957
|
+
};
|
|
958
|
+
DeregisterRouteProposal: {
|
|
959
|
+
encode(message: _36.DeregisterRouteProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
960
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _36.DeregisterRouteProposal;
|
|
961
|
+
fromJSON(object: any): _36.DeregisterRouteProposal;
|
|
962
|
+
toJSON(message: _36.DeregisterRouteProposal): unknown;
|
|
963
|
+
fromPartial(object: Partial<_36.DeregisterRouteProposal>): _36.DeregisterRouteProposal;
|
|
964
|
+
};
|
|
965
|
+
Params: {
|
|
966
|
+
encode(message: _35.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
967
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _35.Params;
|
|
968
|
+
fromJSON(object: any): _35.Params;
|
|
969
|
+
toJSON(message: _35.Params): unknown;
|
|
970
|
+
fromPartial(object: Partial<_35.Params>): _35.Params;
|
|
971
|
+
};
|
|
972
|
+
GenesisState: {
|
|
973
|
+
encode(message: _34.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
974
|
+
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _34.GenesisState;
|
|
975
|
+
fromJSON(object: any): _34.GenesisState;
|
|
976
|
+
toJSON(message: _34.GenesisState): unknown;
|
|
977
|
+
fromPartial(object: Partial<_34.GenesisState>): _34.GenesisState;
|
|
291
978
|
};
|
|
292
979
|
};
|
|
293
|
-
|
|
294
|
-
encode(message: _33.MsgStoreCode, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
295
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgStoreCode;
|
|
296
|
-
fromJSON(object: any): _33.MsgStoreCode;
|
|
297
|
-
toJSON(message: _33.MsgStoreCode): unknown;
|
|
298
|
-
fromPartial(object: Partial<_33.MsgStoreCode>): _33.MsgStoreCode;
|
|
299
|
-
};
|
|
300
|
-
MsgStoreCodeResponse: {
|
|
301
|
-
encode(message: _33.MsgStoreCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
302
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgStoreCodeResponse;
|
|
303
|
-
fromJSON(object: any): _33.MsgStoreCodeResponse;
|
|
304
|
-
toJSON(message: _33.MsgStoreCodeResponse): unknown;
|
|
305
|
-
fromPartial(object: Partial<_33.MsgStoreCodeResponse>): _33.MsgStoreCodeResponse;
|
|
306
|
-
};
|
|
307
|
-
MsgInstantiateContract: {
|
|
308
|
-
encode(message: _33.MsgInstantiateContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
309
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgInstantiateContract;
|
|
310
|
-
fromJSON(object: any): _33.MsgInstantiateContract;
|
|
311
|
-
toJSON(message: _33.MsgInstantiateContract): unknown;
|
|
312
|
-
fromPartial(object: Partial<_33.MsgInstantiateContract>): _33.MsgInstantiateContract;
|
|
313
|
-
};
|
|
314
|
-
MsgInstantiateContract2: {
|
|
315
|
-
encode(message: _33.MsgInstantiateContract2, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
316
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgInstantiateContract2;
|
|
317
|
-
fromJSON(object: any): _33.MsgInstantiateContract2;
|
|
318
|
-
toJSON(message: _33.MsgInstantiateContract2): unknown;
|
|
319
|
-
fromPartial(object: Partial<_33.MsgInstantiateContract2>): _33.MsgInstantiateContract2;
|
|
320
|
-
};
|
|
321
|
-
MsgInstantiateContractResponse: {
|
|
322
|
-
encode(message: _33.MsgInstantiateContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
323
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgInstantiateContractResponse;
|
|
324
|
-
fromJSON(object: any): _33.MsgInstantiateContractResponse;
|
|
325
|
-
toJSON(message: _33.MsgInstantiateContractResponse): unknown;
|
|
326
|
-
fromPartial(object: Partial<_33.MsgInstantiateContractResponse>): _33.MsgInstantiateContractResponse;
|
|
327
|
-
};
|
|
328
|
-
MsgInstantiateContract2Response: {
|
|
329
|
-
encode(message: _33.MsgInstantiateContract2Response, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
330
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgInstantiateContract2Response;
|
|
331
|
-
fromJSON(object: any): _33.MsgInstantiateContract2Response;
|
|
332
|
-
toJSON(message: _33.MsgInstantiateContract2Response): unknown;
|
|
333
|
-
fromPartial(object: Partial<_33.MsgInstantiateContract2Response>): _33.MsgInstantiateContract2Response;
|
|
334
|
-
};
|
|
335
|
-
MsgExecuteContract: {
|
|
336
|
-
encode(message: _33.MsgExecuteContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
337
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteContract;
|
|
338
|
-
fromJSON(object: any): _33.MsgExecuteContract;
|
|
339
|
-
toJSON(message: _33.MsgExecuteContract): unknown;
|
|
340
|
-
fromPartial(object: Partial<_33.MsgExecuteContract>): _33.MsgExecuteContract;
|
|
341
|
-
};
|
|
342
|
-
MsgExecuteContractResponse: {
|
|
343
|
-
encode(message: _33.MsgExecuteContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
344
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteContractResponse;
|
|
345
|
-
fromJSON(object: any): _33.MsgExecuteContractResponse;
|
|
346
|
-
toJSON(message: _33.MsgExecuteContractResponse): unknown;
|
|
347
|
-
fromPartial(object: Partial<_33.MsgExecuteContractResponse>): _33.MsgExecuteContractResponse;
|
|
348
|
-
};
|
|
349
|
-
MsgExecuteWithOriginContract: {
|
|
350
|
-
encode(message: _33.MsgExecuteWithOriginContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
351
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteWithOriginContract;
|
|
352
|
-
fromJSON(object: any): _33.MsgExecuteWithOriginContract;
|
|
353
|
-
toJSON(message: _33.MsgExecuteWithOriginContract): unknown;
|
|
354
|
-
fromPartial(object: Partial<_33.MsgExecuteWithOriginContract>): _33.MsgExecuteWithOriginContract;
|
|
355
|
-
};
|
|
356
|
-
MsgExecuteDelegateContract: {
|
|
357
|
-
encode(message: _33.MsgExecuteDelegateContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
358
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteDelegateContract;
|
|
359
|
-
fromJSON(object: any): _33.MsgExecuteDelegateContract;
|
|
360
|
-
toJSON(message: _33.MsgExecuteDelegateContract): unknown;
|
|
361
|
-
fromPartial(object: Partial<_33.MsgExecuteDelegateContract>): _33.MsgExecuteDelegateContract;
|
|
362
|
-
};
|
|
363
|
-
MsgExecuteDelegateContractResponse: {
|
|
364
|
-
encode(message: _33.MsgExecuteDelegateContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
365
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _33.MsgExecuteDelegateContractResponse;
|
|
366
|
-
fromJSON(object: any): _33.MsgExecuteDelegateContractResponse;
|
|
367
|
-
toJSON(message: _33.MsgExecuteDelegateContractResponse): unknown;
|
|
368
|
-
fromPartial(object: Partial<_33.MsgExecuteDelegateContractResponse>): _33.MsgExecuteDelegateContractResponse;
|
|
369
|
-
};
|
|
370
|
-
QueryContractInfoRequest: {
|
|
371
|
-
encode(message: _32.QueryContractInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
372
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractInfoRequest;
|
|
373
|
-
fromJSON(object: any): _32.QueryContractInfoRequest;
|
|
374
|
-
toJSON(message: _32.QueryContractInfoRequest): unknown;
|
|
375
|
-
fromPartial(object: Partial<_32.QueryContractInfoRequest>): _32.QueryContractInfoRequest;
|
|
376
|
-
};
|
|
377
|
-
QueryContractInfoResponse: {
|
|
378
|
-
encode(message: _32.QueryContractInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
379
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractInfoResponse;
|
|
380
|
-
fromJSON(object: any): _32.QueryContractInfoResponse;
|
|
381
|
-
toJSON(message: _32.QueryContractInfoResponse): unknown;
|
|
382
|
-
fromPartial(object: Partial<_32.QueryContractInfoResponse>): _32.QueryContractInfoResponse;
|
|
383
|
-
};
|
|
384
|
-
QueryContractsByCodeRequest: {
|
|
385
|
-
encode(message: _32.QueryContractsByCodeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
386
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractsByCodeRequest;
|
|
387
|
-
fromJSON(object: any): _32.QueryContractsByCodeRequest;
|
|
388
|
-
toJSON(message: _32.QueryContractsByCodeRequest): unknown;
|
|
389
|
-
fromPartial(object: Partial<_32.QueryContractsByCodeRequest>): _32.QueryContractsByCodeRequest;
|
|
390
|
-
};
|
|
391
|
-
QueryContractsByCodeResponse: {
|
|
392
|
-
encode(message: _32.QueryContractsByCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
393
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractsByCodeResponse;
|
|
394
|
-
fromJSON(object: any): _32.QueryContractsByCodeResponse;
|
|
395
|
-
toJSON(message: _32.QueryContractsByCodeResponse): unknown;
|
|
396
|
-
fromPartial(object: Partial<_32.QueryContractsByCodeResponse>): _32.QueryContractsByCodeResponse;
|
|
397
|
-
};
|
|
398
|
-
QueryAllContractStateRequest: {
|
|
399
|
-
encode(message: _32.QueryAllContractStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
400
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryAllContractStateRequest;
|
|
401
|
-
fromJSON(object: any): _32.QueryAllContractStateRequest;
|
|
402
|
-
toJSON(message: _32.QueryAllContractStateRequest): unknown;
|
|
403
|
-
fromPartial(object: Partial<_32.QueryAllContractStateRequest>): _32.QueryAllContractStateRequest;
|
|
404
|
-
};
|
|
405
|
-
QueryAllContractStateResponse: {
|
|
406
|
-
encode(message: _32.QueryAllContractStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
407
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryAllContractStateResponse;
|
|
408
|
-
fromJSON(object: any): _32.QueryAllContractStateResponse;
|
|
409
|
-
toJSON(message: _32.QueryAllContractStateResponse): unknown;
|
|
410
|
-
fromPartial(object: Partial<_32.QueryAllContractStateResponse>): _32.QueryAllContractStateResponse;
|
|
411
|
-
};
|
|
412
|
-
QueryRawContractStateRequest: {
|
|
413
|
-
encode(message: _32.QueryRawContractStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
414
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryRawContractStateRequest;
|
|
415
|
-
fromJSON(object: any): _32.QueryRawContractStateRequest;
|
|
416
|
-
toJSON(message: _32.QueryRawContractStateRequest): unknown;
|
|
417
|
-
fromPartial(object: Partial<_32.QueryRawContractStateRequest>): _32.QueryRawContractStateRequest;
|
|
418
|
-
};
|
|
419
|
-
QueryRawContractStateResponse: {
|
|
420
|
-
encode(message: _32.QueryRawContractStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
421
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryRawContractStateResponse;
|
|
422
|
-
fromJSON(object: any): _32.QueryRawContractStateResponse;
|
|
423
|
-
toJSON(message: _32.QueryRawContractStateResponse): unknown;
|
|
424
|
-
fromPartial(object: Partial<_32.QueryRawContractStateResponse>): _32.QueryRawContractStateResponse;
|
|
425
|
-
};
|
|
426
|
-
QuerySmartContractCallRequest: {
|
|
427
|
-
encode(message: _32.QuerySmartContractCallRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
428
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QuerySmartContractCallRequest;
|
|
429
|
-
fromJSON(object: any): _32.QuerySmartContractCallRequest;
|
|
430
|
-
toJSON(message: _32.QuerySmartContractCallRequest): unknown;
|
|
431
|
-
fromPartial(object: Partial<_32.QuerySmartContractCallRequest>): _32.QuerySmartContractCallRequest;
|
|
432
|
-
};
|
|
433
|
-
QuerySmartContractCallResponse: {
|
|
434
|
-
encode(message: _32.QuerySmartContractCallResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
435
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QuerySmartContractCallResponse;
|
|
436
|
-
fromJSON(object: any): _32.QuerySmartContractCallResponse;
|
|
437
|
-
toJSON(message: _32.QuerySmartContractCallResponse): unknown;
|
|
438
|
-
fromPartial(object: Partial<_32.QuerySmartContractCallResponse>): _32.QuerySmartContractCallResponse;
|
|
439
|
-
};
|
|
440
|
-
QueryCodeRequest: {
|
|
441
|
-
encode(message: _32.QueryCodeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
442
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryCodeRequest;
|
|
443
|
-
fromJSON(object: any): _32.QueryCodeRequest;
|
|
444
|
-
toJSON(message: _32.QueryCodeRequest): unknown;
|
|
445
|
-
fromPartial(object: Partial<_32.QueryCodeRequest>): _32.QueryCodeRequest;
|
|
446
|
-
};
|
|
447
|
-
CodeInfoResponse: {
|
|
448
|
-
encode(message: _32.CodeInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
449
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.CodeInfoResponse;
|
|
450
|
-
fromJSON(object: any): _32.CodeInfoResponse;
|
|
451
|
-
toJSON(message: _32.CodeInfoResponse): unknown;
|
|
452
|
-
fromPartial(object: Partial<_32.CodeInfoResponse>): _32.CodeInfoResponse;
|
|
453
|
-
};
|
|
454
|
-
QueryCodeResponse: {
|
|
455
|
-
encode(message: _32.QueryCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
456
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryCodeResponse;
|
|
457
|
-
fromJSON(object: any): _32.QueryCodeResponse;
|
|
458
|
-
toJSON(message: _32.QueryCodeResponse): unknown;
|
|
459
|
-
fromPartial(object: Partial<_32.QueryCodeResponse>): _32.QueryCodeResponse;
|
|
460
|
-
};
|
|
461
|
-
QueryCodesRequest: {
|
|
462
|
-
encode(message: _32.QueryCodesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
463
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryCodesRequest;
|
|
464
|
-
fromJSON(object: any): _32.QueryCodesRequest;
|
|
465
|
-
toJSON(message: _32.QueryCodesRequest): unknown;
|
|
466
|
-
fromPartial(object: Partial<_32.QueryCodesRequest>): _32.QueryCodesRequest;
|
|
467
|
-
};
|
|
468
|
-
QueryCodesResponse: {
|
|
469
|
-
encode(message: _32.QueryCodesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
470
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryCodesResponse;
|
|
471
|
-
fromJSON(object: any): _32.QueryCodesResponse;
|
|
472
|
-
toJSON(message: _32.QueryCodesResponse): unknown;
|
|
473
|
-
fromPartial(object: Partial<_32.QueryCodesResponse>): _32.QueryCodesResponse;
|
|
474
|
-
};
|
|
475
|
-
QueryParamsRequest: {
|
|
476
|
-
encode(_: _32.QueryParamsRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
477
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryParamsRequest;
|
|
478
|
-
fromJSON(_: any): _32.QueryParamsRequest;
|
|
479
|
-
toJSON(_: _32.QueryParamsRequest): unknown;
|
|
480
|
-
fromPartial(_: Partial<_32.QueryParamsRequest>): _32.QueryParamsRequest;
|
|
481
|
-
};
|
|
482
|
-
QueryParamsResponse: {
|
|
483
|
-
encode(message: _32.QueryParamsResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
484
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryParamsResponse;
|
|
485
|
-
fromJSON(object: any): _32.QueryParamsResponse;
|
|
486
|
-
toJSON(message: _32.QueryParamsResponse): unknown;
|
|
487
|
-
fromPartial(object: Partial<_32.QueryParamsResponse>): _32.QueryParamsResponse;
|
|
488
|
-
};
|
|
489
|
-
QueryContractsByCreatorRequest: {
|
|
490
|
-
encode(message: _32.QueryContractsByCreatorRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
491
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractsByCreatorRequest;
|
|
492
|
-
fromJSON(object: any): _32.QueryContractsByCreatorRequest;
|
|
493
|
-
toJSON(message: _32.QueryContractsByCreatorRequest): unknown;
|
|
494
|
-
fromPartial(object: Partial<_32.QueryContractsByCreatorRequest>): _32.QueryContractsByCreatorRequest;
|
|
495
|
-
};
|
|
496
|
-
QueryContractsByCreatorResponse: {
|
|
497
|
-
encode(message: _32.QueryContractsByCreatorResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
498
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _32.QueryContractsByCreatorResponse;
|
|
499
|
-
fromJSON(object: any): _32.QueryContractsByCreatorResponse;
|
|
500
|
-
toJSON(message: _32.QueryContractsByCreatorResponse): unknown;
|
|
501
|
-
fromPartial(object: Partial<_32.QueryContractsByCreatorResponse>): _32.QueryContractsByCreatorResponse;
|
|
502
|
-
};
|
|
503
|
-
Params: {
|
|
504
|
-
encode(_: _31.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
505
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _31.Params;
|
|
506
|
-
fromJSON(_: any): _31.Params;
|
|
507
|
-
toJSON(_: _31.Params): unknown;
|
|
508
|
-
fromPartial(_: Partial<_31.Params>): _31.Params;
|
|
509
|
-
};
|
|
510
|
-
GenesisState: {
|
|
511
|
-
encode(message: _30.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
512
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.GenesisState;
|
|
513
|
-
fromJSON(object: any): _30.GenesisState;
|
|
514
|
-
toJSON(message: _30.GenesisState): unknown;
|
|
515
|
-
fromPartial(object: Partial<_30.GenesisState>): _30.GenesisState;
|
|
516
|
-
};
|
|
517
|
-
SystemContract: {
|
|
518
|
-
encode(message: _30.SystemContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
519
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.SystemContract;
|
|
520
|
-
fromJSON(object: any): _30.SystemContract;
|
|
521
|
-
toJSON(message: _30.SystemContract): unknown;
|
|
522
|
-
fromPartial(object: Partial<_30.SystemContract>): _30.SystemContract;
|
|
523
|
-
};
|
|
524
|
-
Code: {
|
|
525
|
-
encode(message: _30.Code, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
526
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.Code;
|
|
527
|
-
fromJSON(object: any): _30.Code;
|
|
528
|
-
toJSON(message: _30.Code): unknown;
|
|
529
|
-
fromPartial(object: Partial<_30.Code>): _30.Code;
|
|
530
|
-
};
|
|
531
|
-
Contract: {
|
|
532
|
-
encode(message: _30.Contract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
533
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.Contract;
|
|
534
|
-
fromJSON(object: any): _30.Contract;
|
|
535
|
-
toJSON(message: _30.Contract): unknown;
|
|
536
|
-
fromPartial(object: Partial<_30.Contract>): _30.Contract;
|
|
537
|
-
};
|
|
538
|
-
Sequence: {
|
|
539
|
-
encode(message: _30.Sequence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
540
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _30.Sequence;
|
|
541
|
-
fromJSON(object: any): _30.Sequence;
|
|
542
|
-
toJSON(message: _30.Sequence): unknown;
|
|
543
|
-
fromPartial(object: Partial<_30.Sequence>): _30.Sequence;
|
|
544
|
-
};
|
|
545
|
-
ContractStorage: {
|
|
546
|
-
encode(message: _29.ContractStorage, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
547
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.ContractStorage;
|
|
548
|
-
fromJSON(object: any): _29.ContractStorage;
|
|
549
|
-
toJSON(message: _29.ContractStorage): unknown;
|
|
550
|
-
fromPartial(object: Partial<_29.ContractStorage>): _29.ContractStorage;
|
|
551
|
-
};
|
|
552
|
-
CodeInfo: {
|
|
553
|
-
encode(message: _29.CodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
554
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.CodeInfo;
|
|
555
|
-
fromJSON(object: any): _29.CodeInfo;
|
|
556
|
-
toJSON(message: _29.CodeInfo): unknown;
|
|
557
|
-
fromPartial(object: Partial<_29.CodeInfo>): _29.CodeInfo;
|
|
558
|
-
};
|
|
559
|
-
ContractInfo: {
|
|
560
|
-
encode(message: _29.ContractInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
561
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.ContractInfo;
|
|
562
|
-
fromJSON(object: any): _29.ContractInfo;
|
|
563
|
-
toJSON(message: _29.ContractInfo): unknown;
|
|
564
|
-
fromPartial(object: Partial<_29.ContractInfo>): _29.ContractInfo;
|
|
565
|
-
};
|
|
566
|
-
AbsoluteTxPosition: {
|
|
567
|
-
encode(message: _29.AbsoluteTxPosition, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
|
|
568
|
-
decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _29.AbsoluteTxPosition;
|
|
569
|
-
fromJSON(object: any): _29.AbsoluteTxPosition;
|
|
570
|
-
toJSON(message: _29.AbsoluteTxPosition): unknown;
|
|
571
|
-
fromPartial(object: Partial<_29.AbsoluteTxPosition>): _29.AbsoluteTxPosition;
|
|
572
|
-
};
|
|
573
|
-
};
|
|
980
|
+
}
|
|
574
981
|
const ClientFactory: {
|
|
575
982
|
createRPCMsgClient: ({ rpc }: {
|
|
576
983
|
rpc: import("../helpers").Rpc;
|
|
577
984
|
}) => Promise<{
|
|
578
985
|
wasmx: {
|
|
579
|
-
wasmx:
|
|
986
|
+
wasmx: {
|
|
987
|
+
v1: _46.MsgClientImpl;
|
|
988
|
+
};
|
|
989
|
+
websrv: {
|
|
990
|
+
v1: _47.MsgClientImpl;
|
|
991
|
+
};
|
|
580
992
|
};
|
|
581
993
|
}>;
|
|
582
994
|
createRPCQueryClient: ({ rpcEndpoint }: {
|
|
@@ -598,15 +1010,28 @@ export declare namespace wasmx {
|
|
|
598
1010
|
};
|
|
599
1011
|
wasmx: {
|
|
600
1012
|
wasmx: {
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
1013
|
+
v1: {
|
|
1014
|
+
contractInfo(request: _32.QueryContractInfoRequest): Promise<_32.QueryContractInfoResponse>;
|
|
1015
|
+
contractsByCode(request: _32.QueryContractsByCodeRequest): Promise<_32.QueryContractsByCodeResponse>;
|
|
1016
|
+
allContractState(request: _32.QueryAllContractStateRequest): Promise<_32.QueryAllContractStateResponse>;
|
|
1017
|
+
rawContractState(request: _32.QueryRawContractStateRequest): Promise<_32.QueryRawContractStateResponse>;
|
|
1018
|
+
smartContractCall(request: _32.QuerySmartContractCallRequest): Promise<_32.QuerySmartContractCallResponse>;
|
|
1019
|
+
code(request: _32.QueryCodeRequest): Promise<_32.QueryCodeResponse>;
|
|
1020
|
+
codes(request?: _32.QueryCodesRequest): Promise<_32.QueryCodesResponse>;
|
|
1021
|
+
params(request?: _32.QueryParamsRequest): Promise<_32.QueryParamsResponse>;
|
|
1022
|
+
contractsByCreator(request: _32.QueryContractsByCreatorRequest): Promise<_32.QueryContractsByCreatorResponse>;
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
websrv: {
|
|
1026
|
+
v1: {
|
|
1027
|
+
httpGet(request: _37.QueryHttpRequestGet): Promise<_37.QueryHttpResponseGet>;
|
|
1028
|
+
contractByRoute(request: _37.QueryContractByRouteRequest): Promise<_37.QueryContractByRouteResponse>;
|
|
1029
|
+
routeByContract(request: _37.QueryRouteByContractRequest): Promise<_37.QueryRouteByContractResponse>;
|
|
1030
|
+
params(request?: _37.QueryParamsRequest): Promise<_37.QueryParamsResponse>;
|
|
1031
|
+
getAllOauthClients(request?: _37.QueryGetAllOauthClientsRequest): Promise<_37.QueryGetAllOauthClientsResponse>;
|
|
1032
|
+
getOauthClient(request: _37.QueryGetOauthClientRequest): Promise<_37.QueryGetOauthClientResponse>;
|
|
1033
|
+
getOauthClientsByOwner(request: _37.QueryGetOauthClientsByOwnerRequest): Promise<_37.QueryGetOauthClientsByOwnerResponse>;
|
|
1034
|
+
};
|
|
610
1035
|
};
|
|
611
1036
|
};
|
|
612
1037
|
}>;
|