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