@burnt-labs/xion-types 25.0.0 → 25.0.2
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/package.json +1 -1
- package/types/abstractaccount/bundle.ts +14 -14
- package/types/cosmos/bundle.ts +226 -226
- package/types/cosmwasm/bundle.ts +14 -14
- package/types/cosmwasm/wasm/v1/query.lcd.ts +1 -1
- package/types/cosmwasm/wasm/v1/types.ts +16 -16
- package/types/ibc/bundle.ts +96 -96
- package/types/xion/bundle.ts +88 -66
- package/types/xion/indexer/authz/v1/query.lcd.ts +63 -0
- package/types/xion/indexer/authz/v1/query.rpc.Query.ts +61 -0
- package/types/xion/indexer/authz/v1/query.ts +753 -0
- package/types/xion/indexer/feegrant/v1/query.lcd.ts +44 -0
- package/types/xion/indexer/feegrant/v1/query.rpc.Query.ts +53 -0
- package/types/xion/indexer/feegrant/v1/query.ts +694 -0
- package/types/xion/lcd.ts +12 -0
- package/types/xion/rpc.query.ts +8 -0
package/types/cosmwasm/bundle.ts
CHANGED
|
@@ -6,14 +6,14 @@ import * as _152 from "./wasm/v1/proposal_legacy";
|
|
|
6
6
|
import * as _153 from "./wasm/v1/query";
|
|
7
7
|
import * as _154 from "./wasm/v1/tx";
|
|
8
8
|
import * as _155 from "./wasm/v1/types";
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
9
|
+
import * as _406 from "./wasm/v1/tx.amino";
|
|
10
|
+
import * as _407 from "./wasm/v1/tx.registry";
|
|
11
|
+
import * as _408 from "./wasm/v1/query.lcd";
|
|
12
|
+
import * as _409 from "./wasm/v1/query.rpc.Query";
|
|
13
|
+
import * as _410 from "./wasm/v1/tx.rpc.msg";
|
|
14
|
+
import * as _487 from "./lcd";
|
|
15
|
+
import * as _488 from "./rpc.query";
|
|
16
|
+
import * as _489 from "./rpc.tx";
|
|
17
17
|
export namespace cosmwasm {
|
|
18
18
|
export namespace wasm {
|
|
19
19
|
export const v1 = {
|
|
@@ -24,16 +24,16 @@ export namespace cosmwasm {
|
|
|
24
24
|
..._153,
|
|
25
25
|
..._154,
|
|
26
26
|
..._155,
|
|
27
|
-
..._404,
|
|
28
|
-
..._405,
|
|
29
27
|
..._406,
|
|
30
28
|
..._407,
|
|
31
|
-
..._408
|
|
29
|
+
..._408,
|
|
30
|
+
..._409,
|
|
31
|
+
..._410
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
34
|
export const ClientFactory = {
|
|
35
|
-
...
|
|
36
|
-
...
|
|
37
|
-
...
|
|
35
|
+
..._487,
|
|
36
|
+
..._488,
|
|
37
|
+
..._489
|
|
38
38
|
};
|
|
39
39
|
}
|
|
@@ -148,7 +148,7 @@ export class LCDQueryClient {
|
|
|
148
148
|
if (typeof params?.initArgs !== "undefined") {
|
|
149
149
|
options.params.init_args = params.initArgs;
|
|
150
150
|
}
|
|
151
|
-
const endpoint = `cosmwasm/wasm/v1/
|
|
151
|
+
const endpoint = `cosmwasm/wasm/v1/build_address`;
|
|
152
152
|
return await this.req.get<QueryBuildAddressResponseSDKType>(endpoint, options);
|
|
153
153
|
}
|
|
154
154
|
}
|
|
@@ -238,12 +238,12 @@ export interface ContractInfo {
|
|
|
238
238
|
/** Created Tx position when the contract was instantiated. */
|
|
239
239
|
created?: AbsoluteTxPosition;
|
|
240
240
|
ibcPortId: string;
|
|
241
|
-
ibc2PortId: string;
|
|
242
241
|
/**
|
|
243
242
|
* Extension is an extension point to store custom metadata within the
|
|
244
243
|
* persistence model.
|
|
245
244
|
*/
|
|
246
245
|
extension?: Any | undefined;
|
|
246
|
+
ibc2PortId: string;
|
|
247
247
|
}
|
|
248
248
|
export interface ContractInfoProtoMsg {
|
|
249
249
|
typeUrl: "/cosmwasm.wasm.v1.ContractInfo";
|
|
@@ -284,12 +284,12 @@ export interface ContractInfoAmino {
|
|
|
284
284
|
*/
|
|
285
285
|
created?: AbsoluteTxPositionAmino;
|
|
286
286
|
ibc_port_id?: string;
|
|
287
|
-
ibc2_port_id?: string;
|
|
288
287
|
/**
|
|
289
288
|
* Extension is an extension point to store custom metadata within the
|
|
290
289
|
* persistence model.
|
|
291
290
|
*/
|
|
292
291
|
extension?: AnyAmino;
|
|
292
|
+
ibc2_port_id?: string;
|
|
293
293
|
}
|
|
294
294
|
export interface ContractInfoAminoMsg {
|
|
295
295
|
type: "wasm/ContractInfo";
|
|
@@ -303,8 +303,8 @@ export interface ContractInfoSDKType {
|
|
|
303
303
|
label: string;
|
|
304
304
|
created?: AbsoluteTxPositionSDKType;
|
|
305
305
|
ibc_port_id: string;
|
|
306
|
-
ibc2_port_id: string;
|
|
307
306
|
extension?: AnySDKType | undefined;
|
|
307
|
+
ibc2_port_id: string;
|
|
308
308
|
}
|
|
309
309
|
/** ContractCodeHistoryEntry metadata to a contract. */
|
|
310
310
|
export interface ContractCodeHistoryEntry {
|
|
@@ -765,8 +765,8 @@ function createBaseContractInfo(): ContractInfo {
|
|
|
765
765
|
label: "",
|
|
766
766
|
created: undefined,
|
|
767
767
|
ibcPortId: "",
|
|
768
|
-
|
|
769
|
-
|
|
768
|
+
extension: undefined,
|
|
769
|
+
ibc2PortId: ""
|
|
770
770
|
};
|
|
771
771
|
}
|
|
772
772
|
export const ContractInfo = {
|
|
@@ -790,11 +790,11 @@ export const ContractInfo = {
|
|
|
790
790
|
if (message.ibcPortId !== "") {
|
|
791
791
|
writer.uint32(50).string(message.ibcPortId);
|
|
792
792
|
}
|
|
793
|
-
if (message.ibc2PortId !== "") {
|
|
794
|
-
writer.uint32(58).string(message.ibc2PortId);
|
|
795
|
-
}
|
|
796
793
|
if (message.extension !== undefined) {
|
|
797
|
-
Any.encode(message.extension as Any, writer.uint32(
|
|
794
|
+
Any.encode(message.extension as Any, writer.uint32(58).fork()).ldelim();
|
|
795
|
+
}
|
|
796
|
+
if (message.ibc2PortId !== "") {
|
|
797
|
+
writer.uint32(66).string(message.ibc2PortId);
|
|
798
798
|
}
|
|
799
799
|
return writer;
|
|
800
800
|
},
|
|
@@ -824,10 +824,10 @@ export const ContractInfo = {
|
|
|
824
824
|
message.ibcPortId = reader.string();
|
|
825
825
|
break;
|
|
826
826
|
case 7:
|
|
827
|
-
message.
|
|
827
|
+
message.extension = Cosmwasm_wasmv1ContractInfoExtension_InterfaceDecoder(reader) as Any;
|
|
828
828
|
break;
|
|
829
829
|
case 8:
|
|
830
|
-
message.
|
|
830
|
+
message.ibc2PortId = reader.string();
|
|
831
831
|
break;
|
|
832
832
|
default:
|
|
833
833
|
reader.skipType(tag & 7);
|
|
@@ -844,8 +844,8 @@ export const ContractInfo = {
|
|
|
844
844
|
message.label = object.label ?? "";
|
|
845
845
|
message.created = object.created !== undefined && object.created !== null ? AbsoluteTxPosition.fromPartial(object.created) : undefined;
|
|
846
846
|
message.ibcPortId = object.ibcPortId ?? "";
|
|
847
|
-
message.ibc2PortId = object.ibc2PortId ?? "";
|
|
848
847
|
message.extension = object.extension !== undefined && object.extension !== null ? Any.fromPartial(object.extension) : undefined;
|
|
848
|
+
message.ibc2PortId = object.ibc2PortId ?? "";
|
|
849
849
|
return message;
|
|
850
850
|
},
|
|
851
851
|
fromAmino(object: ContractInfoAmino): ContractInfo {
|
|
@@ -868,12 +868,12 @@ export const ContractInfo = {
|
|
|
868
868
|
if (object.ibc_port_id !== undefined && object.ibc_port_id !== null) {
|
|
869
869
|
message.ibcPortId = object.ibc_port_id;
|
|
870
870
|
}
|
|
871
|
-
if (object.ibc2_port_id !== undefined && object.ibc2_port_id !== null) {
|
|
872
|
-
message.ibc2PortId = object.ibc2_port_id;
|
|
873
|
-
}
|
|
874
871
|
if (object.extension !== undefined && object.extension !== null) {
|
|
875
872
|
message.extension = Cosmwasm_wasmv1ContractInfoExtension_FromAmino(object.extension);
|
|
876
873
|
}
|
|
874
|
+
if (object.ibc2_port_id !== undefined && object.ibc2_port_id !== null) {
|
|
875
|
+
message.ibc2PortId = object.ibc2_port_id;
|
|
876
|
+
}
|
|
877
877
|
return message;
|
|
878
878
|
},
|
|
879
879
|
toAmino(message: ContractInfo): ContractInfoAmino {
|
|
@@ -884,8 +884,8 @@ export const ContractInfo = {
|
|
|
884
884
|
obj.label = message.label === "" ? undefined : message.label;
|
|
885
885
|
obj.created = message.created ? AbsoluteTxPosition.toAmino(message.created) : undefined;
|
|
886
886
|
obj.ibc_port_id = message.ibcPortId === "" ? undefined : message.ibcPortId;
|
|
887
|
-
obj.ibc2_port_id = message.ibc2PortId === "" ? undefined : message.ibc2PortId;
|
|
888
887
|
obj.extension = message.extension ? Cosmwasm_wasmv1ContractInfoExtension_ToAmino(message.extension as Any) : undefined;
|
|
888
|
+
obj.ibc2_port_id = message.ibc2PortId === "" ? undefined : message.ibc2PortId;
|
|
889
889
|
return obj;
|
|
890
890
|
},
|
|
891
891
|
fromAminoMsg(object: ContractInfoAminoMsg): ContractInfo {
|
package/types/ibc/bundle.ts
CHANGED
|
@@ -48,54 +48,54 @@ import * as _252 from "./lightclients/wasm/v1/genesis";
|
|
|
48
48
|
import * as _253 from "./lightclients/wasm/v1/query";
|
|
49
49
|
import * as _254 from "./lightclients/wasm/v1/tx";
|
|
50
50
|
import * as _255 from "./lightclients/wasm/v1/wasm";
|
|
51
|
-
import * as
|
|
52
|
-
import * as
|
|
53
|
-
import * as
|
|
54
|
-
import * as
|
|
55
|
-
import * as
|
|
56
|
-
import * as
|
|
57
|
-
import * as
|
|
58
|
-
import * as
|
|
59
|
-
import * as
|
|
60
|
-
import * as
|
|
61
|
-
import * as
|
|
62
|
-
import * as
|
|
63
|
-
import * as
|
|
64
|
-
import * as
|
|
65
|
-
import * as
|
|
66
|
-
import * as
|
|
67
|
-
import * as
|
|
68
|
-
import * as
|
|
69
|
-
import * as
|
|
70
|
-
import * as
|
|
71
|
-
import * as
|
|
72
|
-
import * as
|
|
73
|
-
import * as
|
|
74
|
-
import * as
|
|
75
|
-
import * as
|
|
76
|
-
import * as
|
|
77
|
-
import * as
|
|
78
|
-
import * as
|
|
79
|
-
import * as
|
|
80
|
-
import * as
|
|
81
|
-
import * as
|
|
82
|
-
import * as
|
|
83
|
-
import * as
|
|
84
|
-
import * as
|
|
85
|
-
import * as
|
|
86
|
-
import * as
|
|
87
|
-
import * as
|
|
88
|
-
import * as
|
|
89
|
-
import * as
|
|
90
|
-
import * as
|
|
91
|
-
import * as
|
|
92
|
-
import * as
|
|
93
|
-
import * as
|
|
94
|
-
import * as
|
|
95
|
-
import * as
|
|
96
|
-
import * as
|
|
97
|
-
import * as
|
|
98
|
-
import * as
|
|
51
|
+
import * as _411 from "./applications/interchain_accounts/controller/v1/tx.amino";
|
|
52
|
+
import * as _412 from "./applications/interchain_accounts/host/v1/tx.amino";
|
|
53
|
+
import * as _413 from "./applications/transfer/v1/tx.amino";
|
|
54
|
+
import * as _414 from "./core/channel/v1/tx.amino";
|
|
55
|
+
import * as _415 from "./core/channel/v2/tx.amino";
|
|
56
|
+
import * as _416 from "./core/client/v1/tx.amino";
|
|
57
|
+
import * as _417 from "./core/client/v2/tx.amino";
|
|
58
|
+
import * as _418 from "./core/connection/v1/tx.amino";
|
|
59
|
+
import * as _419 from "./lightclients/wasm/v1/tx.amino";
|
|
60
|
+
import * as _420 from "./applications/interchain_accounts/controller/v1/tx.registry";
|
|
61
|
+
import * as _421 from "./applications/interchain_accounts/host/v1/tx.registry";
|
|
62
|
+
import * as _422 from "./applications/transfer/v1/tx.registry";
|
|
63
|
+
import * as _423 from "./core/channel/v1/tx.registry";
|
|
64
|
+
import * as _424 from "./core/channel/v2/tx.registry";
|
|
65
|
+
import * as _425 from "./core/client/v1/tx.registry";
|
|
66
|
+
import * as _426 from "./core/client/v2/tx.registry";
|
|
67
|
+
import * as _427 from "./core/connection/v1/tx.registry";
|
|
68
|
+
import * as _428 from "./lightclients/wasm/v1/tx.registry";
|
|
69
|
+
import * as _429 from "./applications/interchain_accounts/controller/v1/query.lcd";
|
|
70
|
+
import * as _430 from "./applications/interchain_accounts/host/v1/query.lcd";
|
|
71
|
+
import * as _431 from "./applications/transfer/v1/query.lcd";
|
|
72
|
+
import * as _432 from "./core/channel/v1/query.lcd";
|
|
73
|
+
import * as _433 from "./core/channel/v2/query.lcd";
|
|
74
|
+
import * as _434 from "./core/client/v1/query.lcd";
|
|
75
|
+
import * as _435 from "./core/client/v2/query.lcd";
|
|
76
|
+
import * as _436 from "./core/connection/v1/query.lcd";
|
|
77
|
+
import * as _437 from "./lightclients/wasm/v1/query.lcd";
|
|
78
|
+
import * as _438 from "./applications/interchain_accounts/controller/v1/query.rpc.Query";
|
|
79
|
+
import * as _439 from "./applications/interchain_accounts/host/v1/query.rpc.Query";
|
|
80
|
+
import * as _440 from "./applications/transfer/v1/query.rpc.Query";
|
|
81
|
+
import * as _441 from "./core/channel/v1/query.rpc.Query";
|
|
82
|
+
import * as _442 from "./core/channel/v2/query.rpc.Query";
|
|
83
|
+
import * as _443 from "./core/client/v1/query.rpc.Query";
|
|
84
|
+
import * as _444 from "./core/client/v2/query.rpc.Query";
|
|
85
|
+
import * as _445 from "./core/connection/v1/query.rpc.Query";
|
|
86
|
+
import * as _446 from "./lightclients/wasm/v1/query.rpc.Query";
|
|
87
|
+
import * as _447 from "./applications/interchain_accounts/controller/v1/tx.rpc.msg";
|
|
88
|
+
import * as _448 from "./applications/interchain_accounts/host/v1/tx.rpc.msg";
|
|
89
|
+
import * as _449 from "./applications/transfer/v1/tx.rpc.msg";
|
|
90
|
+
import * as _450 from "./core/channel/v1/tx.rpc.msg";
|
|
91
|
+
import * as _451 from "./core/channel/v2/tx.rpc.msg";
|
|
92
|
+
import * as _452 from "./core/client/v1/tx.rpc.msg";
|
|
93
|
+
import * as _453 from "./core/client/v2/tx.rpc.msg";
|
|
94
|
+
import * as _454 from "./core/connection/v1/tx.rpc.msg";
|
|
95
|
+
import * as _455 from "./lightclients/wasm/v1/tx.rpc.msg";
|
|
96
|
+
import * as _490 from "./lcd";
|
|
97
|
+
import * as _491 from "./rpc.query";
|
|
98
|
+
import * as _492 from "./rpc.tx";
|
|
99
99
|
export namespace ibc {
|
|
100
100
|
export namespace applications {
|
|
101
101
|
export namespace interchain_accounts {
|
|
@@ -104,11 +104,11 @@ export namespace ibc {
|
|
|
104
104
|
..._207,
|
|
105
105
|
..._208,
|
|
106
106
|
..._209,
|
|
107
|
-
...
|
|
108
|
-
...
|
|
109
|
-
...
|
|
110
|
-
...
|
|
111
|
-
...
|
|
107
|
+
..._411,
|
|
108
|
+
..._420,
|
|
109
|
+
..._429,
|
|
110
|
+
..._438,
|
|
111
|
+
..._447
|
|
112
112
|
};
|
|
113
113
|
}
|
|
114
114
|
export namespace genesis {
|
|
@@ -121,11 +121,11 @@ export namespace ibc {
|
|
|
121
121
|
..._211,
|
|
122
122
|
..._212,
|
|
123
123
|
..._213,
|
|
124
|
-
...
|
|
125
|
-
...
|
|
126
|
-
...
|
|
127
|
-
...
|
|
128
|
-
...
|
|
124
|
+
..._412,
|
|
125
|
+
..._421,
|
|
126
|
+
..._430,
|
|
127
|
+
..._439,
|
|
128
|
+
..._448
|
|
129
129
|
};
|
|
130
130
|
}
|
|
131
131
|
export const v1 = {
|
|
@@ -144,11 +144,11 @@ export namespace ibc {
|
|
|
144
144
|
..._222,
|
|
145
145
|
..._223,
|
|
146
146
|
..._224,
|
|
147
|
-
...
|
|
148
|
-
...
|
|
149
|
-
...
|
|
150
|
-
...
|
|
151
|
-
...
|
|
147
|
+
..._413,
|
|
148
|
+
..._422,
|
|
149
|
+
..._431,
|
|
150
|
+
..._440,
|
|
151
|
+
..._449
|
|
152
152
|
};
|
|
153
153
|
}
|
|
154
154
|
}
|
|
@@ -159,22 +159,22 @@ export namespace ibc {
|
|
|
159
159
|
..._226,
|
|
160
160
|
..._227,
|
|
161
161
|
..._228,
|
|
162
|
-
...
|
|
163
|
-
...
|
|
164
|
-
...
|
|
165
|
-
...
|
|
166
|
-
...
|
|
162
|
+
..._414,
|
|
163
|
+
..._423,
|
|
164
|
+
..._432,
|
|
165
|
+
..._441,
|
|
166
|
+
..._450
|
|
167
167
|
};
|
|
168
168
|
export const v2 = {
|
|
169
169
|
..._229,
|
|
170
170
|
..._230,
|
|
171
171
|
..._231,
|
|
172
172
|
..._232,
|
|
173
|
-
...
|
|
174
|
-
...
|
|
175
|
-
...
|
|
176
|
-
...
|
|
177
|
-
...
|
|
173
|
+
..._415,
|
|
174
|
+
..._424,
|
|
175
|
+
..._433,
|
|
176
|
+
..._442,
|
|
177
|
+
..._451
|
|
178
178
|
};
|
|
179
179
|
}
|
|
180
180
|
export namespace client {
|
|
@@ -183,11 +183,11 @@ export namespace ibc {
|
|
|
183
183
|
..._234,
|
|
184
184
|
..._235,
|
|
185
185
|
..._236,
|
|
186
|
-
...
|
|
187
|
-
...
|
|
188
|
-
...
|
|
189
|
-
...
|
|
190
|
-
...
|
|
186
|
+
..._416,
|
|
187
|
+
..._425,
|
|
188
|
+
..._434,
|
|
189
|
+
..._443,
|
|
190
|
+
..._452
|
|
191
191
|
};
|
|
192
192
|
export const v2 = {
|
|
193
193
|
..._237,
|
|
@@ -195,11 +195,11 @@ export namespace ibc {
|
|
|
195
195
|
..._239,
|
|
196
196
|
..._240,
|
|
197
197
|
..._241,
|
|
198
|
-
...
|
|
199
|
-
...
|
|
200
|
-
...
|
|
201
|
-
...
|
|
202
|
-
...
|
|
198
|
+
..._417,
|
|
199
|
+
..._426,
|
|
200
|
+
..._435,
|
|
201
|
+
..._444,
|
|
202
|
+
..._453
|
|
203
203
|
};
|
|
204
204
|
}
|
|
205
205
|
export namespace commitment {
|
|
@@ -216,11 +216,11 @@ export namespace ibc {
|
|
|
216
216
|
..._245,
|
|
217
217
|
..._246,
|
|
218
218
|
..._247,
|
|
219
|
-
...
|
|
220
|
-
...
|
|
221
|
-
...
|
|
222
|
-
...
|
|
223
|
-
...
|
|
219
|
+
..._418,
|
|
220
|
+
..._427,
|
|
221
|
+
..._436,
|
|
222
|
+
..._445,
|
|
223
|
+
..._454
|
|
224
224
|
};
|
|
225
225
|
}
|
|
226
226
|
export namespace types {
|
|
@@ -249,17 +249,17 @@ export namespace ibc {
|
|
|
249
249
|
..._253,
|
|
250
250
|
..._254,
|
|
251
251
|
..._255,
|
|
252
|
-
...
|
|
253
|
-
...
|
|
254
|
-
...
|
|
255
|
-
...
|
|
256
|
-
...
|
|
252
|
+
..._419,
|
|
253
|
+
..._428,
|
|
254
|
+
..._437,
|
|
255
|
+
..._446,
|
|
256
|
+
..._455
|
|
257
257
|
};
|
|
258
258
|
}
|
|
259
259
|
}
|
|
260
260
|
export const ClientFactory = {
|
|
261
|
-
...
|
|
262
|
-
...
|
|
263
|
-
...
|
|
261
|
+
..._490,
|
|
262
|
+
..._491,
|
|
263
|
+
..._492
|
|
264
264
|
};
|
|
265
265
|
}
|
package/types/xion/bundle.ts
CHANGED
|
@@ -8,44 +8,50 @@ import * as _271 from "./feeabs/v1beta1/query";
|
|
|
8
8
|
import * as _272 from "./feeabs/v1beta1/tx";
|
|
9
9
|
import * as _273 from "./globalfee/v1/genesis";
|
|
10
10
|
import * as _274 from "./globalfee/v1/query";
|
|
11
|
-
import * as _275 from "./
|
|
12
|
-
import * as _276 from "./
|
|
13
|
-
import * as _277 from "./jwk/v1/
|
|
14
|
-
import * as _278 from "./jwk/v1/
|
|
15
|
-
import * as _279 from "./jwk/v1/
|
|
16
|
-
import * as _280 from "./
|
|
17
|
-
import * as _281 from "./
|
|
18
|
-
import * as _282 from "./mint/v1/
|
|
19
|
-
import * as _283 from "./mint/v1/
|
|
20
|
-
import * as _284 from "./mint/v1/
|
|
21
|
-
import * as _285 from "./v1/
|
|
22
|
-
import * as _286 from "./v1/
|
|
23
|
-
import * as _287 from "./v1/
|
|
24
|
-
import * as _288 from "./v1/
|
|
25
|
-
import * as
|
|
26
|
-
import * as
|
|
27
|
-
import * as _456 from "./
|
|
28
|
-
import * as _457 from "./v1/tx.amino";
|
|
29
|
-
import * as _458 from "./
|
|
30
|
-
import * as _459 from "./
|
|
31
|
-
import * as _460 from "./
|
|
32
|
-
import * as _461 from "./v1/tx.registry";
|
|
33
|
-
import * as _462 from "./
|
|
34
|
-
import * as _463 from "./
|
|
35
|
-
import * as _464 from "./
|
|
36
|
-
import * as _465 from "./
|
|
37
|
-
import * as _466 from "./
|
|
38
|
-
import * as _467 from "./
|
|
39
|
-
import * as _468 from "./jwk/v1/query.
|
|
40
|
-
import * as _469 from "./mint/v1/query.
|
|
41
|
-
import * as _470 from "./
|
|
42
|
-
import * as _471 from "./
|
|
43
|
-
import * as _472 from "./
|
|
44
|
-
import * as _473 from "./
|
|
45
|
-
import * as _474 from "./v1/
|
|
46
|
-
import * as
|
|
47
|
-
import * as
|
|
48
|
-
import * as
|
|
11
|
+
import * as _275 from "./indexer/authz/v1/query";
|
|
12
|
+
import * as _276 from "./indexer/feegrant/v1/query";
|
|
13
|
+
import * as _277 from "./jwk/v1/audience";
|
|
14
|
+
import * as _278 from "./jwk/v1/genesis";
|
|
15
|
+
import * as _279 from "./jwk/v1/params";
|
|
16
|
+
import * as _280 from "./jwk/v1/query";
|
|
17
|
+
import * as _281 from "./jwk/v1/tx";
|
|
18
|
+
import * as _282 from "./mint/v1/event";
|
|
19
|
+
import * as _283 from "./mint/v1/genesis";
|
|
20
|
+
import * as _284 from "./mint/v1/mint";
|
|
21
|
+
import * as _285 from "./mint/v1/query";
|
|
22
|
+
import * as _286 from "./mint/v1/tx";
|
|
23
|
+
import * as _287 from "./v1/feegrant";
|
|
24
|
+
import * as _288 from "./v1/genesis";
|
|
25
|
+
import * as _289 from "./v1/query";
|
|
26
|
+
import * as _290 from "./v1/tx";
|
|
27
|
+
import * as _456 from "./feeabs/v1beta1/tx.amino";
|
|
28
|
+
import * as _457 from "./jwk/v1/tx.amino";
|
|
29
|
+
import * as _458 from "./mint/v1/tx.amino";
|
|
30
|
+
import * as _459 from "./v1/tx.amino";
|
|
31
|
+
import * as _460 from "./feeabs/v1beta1/tx.registry";
|
|
32
|
+
import * as _461 from "./jwk/v1/tx.registry";
|
|
33
|
+
import * as _462 from "./mint/v1/tx.registry";
|
|
34
|
+
import * as _463 from "./v1/tx.registry";
|
|
35
|
+
import * as _464 from "./feeabs/v1beta1/query.lcd";
|
|
36
|
+
import * as _465 from "./globalfee/v1/query.lcd";
|
|
37
|
+
import * as _466 from "./indexer/authz/v1/query.lcd";
|
|
38
|
+
import * as _467 from "./indexer/feegrant/v1/query.lcd";
|
|
39
|
+
import * as _468 from "./jwk/v1/query.lcd";
|
|
40
|
+
import * as _469 from "./mint/v1/query.lcd";
|
|
41
|
+
import * as _470 from "./feeabs/v1beta1/query.rpc.Query";
|
|
42
|
+
import * as _471 from "./globalfee/v1/query.rpc.Query";
|
|
43
|
+
import * as _472 from "./indexer/authz/v1/query.rpc.Query";
|
|
44
|
+
import * as _473 from "./indexer/feegrant/v1/query.rpc.Query";
|
|
45
|
+
import * as _474 from "./jwk/v1/query.rpc.Query";
|
|
46
|
+
import * as _475 from "./mint/v1/query.rpc.Query";
|
|
47
|
+
import * as _476 from "./v1/query.rpc.Query";
|
|
48
|
+
import * as _477 from "./feeabs/v1beta1/tx.rpc.msg";
|
|
49
|
+
import * as _478 from "./jwk/v1/tx.rpc.msg";
|
|
50
|
+
import * as _479 from "./mint/v1/tx.rpc.msg";
|
|
51
|
+
import * as _480 from "./v1/tx.rpc.msg";
|
|
52
|
+
import * as _493 from "./lcd";
|
|
53
|
+
import * as _494 from "./rpc.query";
|
|
54
|
+
import * as _495 from "./rpc.tx";
|
|
49
55
|
export namespace xion {
|
|
50
56
|
export namespace feeabs {
|
|
51
57
|
export const v1beta1 = {
|
|
@@ -56,62 +62,78 @@ export namespace xion {
|
|
|
56
62
|
..._270,
|
|
57
63
|
..._271,
|
|
58
64
|
..._272,
|
|
59
|
-
...
|
|
60
|
-
...
|
|
61
|
-
...
|
|
62
|
-
...
|
|
63
|
-
...
|
|
65
|
+
..._456,
|
|
66
|
+
..._460,
|
|
67
|
+
..._464,
|
|
68
|
+
..._470,
|
|
69
|
+
..._477
|
|
64
70
|
};
|
|
65
71
|
}
|
|
66
72
|
export namespace globalfee {
|
|
67
73
|
export const v1 = {
|
|
68
74
|
..._273,
|
|
69
75
|
..._274,
|
|
70
|
-
...
|
|
71
|
-
...
|
|
76
|
+
..._465,
|
|
77
|
+
..._471
|
|
72
78
|
};
|
|
73
79
|
}
|
|
80
|
+
export namespace indexer {
|
|
81
|
+
export namespace authz {
|
|
82
|
+
export const v1 = {
|
|
83
|
+
..._275,
|
|
84
|
+
..._466,
|
|
85
|
+
..._472
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
export namespace feegrant {
|
|
89
|
+
export const v1 = {
|
|
90
|
+
..._276,
|
|
91
|
+
..._467,
|
|
92
|
+
..._473
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
}
|
|
74
96
|
export namespace jwk {
|
|
75
97
|
export const v1 = {
|
|
76
|
-
..._275,
|
|
77
|
-
..._276,
|
|
78
98
|
..._277,
|
|
79
99
|
..._278,
|
|
80
100
|
..._279,
|
|
81
|
-
...
|
|
82
|
-
...
|
|
83
|
-
...
|
|
101
|
+
..._280,
|
|
102
|
+
..._281,
|
|
103
|
+
..._457,
|
|
104
|
+
..._461,
|
|
84
105
|
..._468,
|
|
85
|
-
...
|
|
106
|
+
..._474,
|
|
107
|
+
..._478
|
|
86
108
|
};
|
|
87
109
|
}
|
|
88
110
|
export namespace mint {
|
|
89
111
|
export const v1 = {
|
|
90
|
-
..._280,
|
|
91
|
-
..._281,
|
|
92
112
|
..._282,
|
|
93
113
|
..._283,
|
|
94
114
|
..._284,
|
|
95
|
-
...
|
|
96
|
-
...
|
|
97
|
-
...
|
|
115
|
+
..._285,
|
|
116
|
+
..._286,
|
|
117
|
+
..._458,
|
|
118
|
+
..._462,
|
|
98
119
|
..._469,
|
|
99
|
-
...
|
|
120
|
+
..._475,
|
|
121
|
+
..._479
|
|
100
122
|
};
|
|
101
123
|
}
|
|
102
124
|
export const v1 = {
|
|
103
|
-
..._285,
|
|
104
|
-
..._286,
|
|
105
125
|
..._287,
|
|
106
126
|
..._288,
|
|
107
|
-
...
|
|
108
|
-
...
|
|
109
|
-
...
|
|
110
|
-
...
|
|
127
|
+
..._289,
|
|
128
|
+
..._290,
|
|
129
|
+
..._459,
|
|
130
|
+
..._463,
|
|
131
|
+
..._476,
|
|
132
|
+
..._480
|
|
111
133
|
};
|
|
112
134
|
export const ClientFactory = {
|
|
113
|
-
...
|
|
114
|
-
...
|
|
115
|
-
...
|
|
135
|
+
..._493,
|
|
136
|
+
..._494,
|
|
137
|
+
..._495
|
|
116
138
|
};
|
|
117
139
|
}
|