@agoric/orchestration 0.1.1-dev-989aa19.0 → 0.1.1-dev-9274bc7.0
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 +18 -16
- package/src/chain-info.js +1 -1
- package/src/examples/stakeBld.contract.d.ts +10 -20
- package/src/examples/stakeBld.contract.d.ts.map +1 -1
- package/src/examples/stakeBld.contract.js +4 -2
- package/src/examples/stakeIca.contract.d.ts +9 -9
- package/src/examples/stakeIca.contract.d.ts.map +1 -1
- package/src/examples/stakeIca.contract.js +4 -1
- package/src/exos/chain-account-kit.d.ts +10 -1
- package/src/exos/chain-account-kit.d.ts.map +1 -1
- package/src/exos/chain-account-kit.js +35 -13
- package/src/exos/chain-hub.d.ts +2392 -0
- package/src/{utils/chainHub.d.ts.map → exos/chain-hub.d.ts.map} +1 -1
- package/src/{utils/chainHub.js → exos/chain-hub.js} +69 -9
- package/src/exos/cosmos-orchestration-account.d.ts +50 -15
- package/src/exos/cosmos-orchestration-account.d.ts.map +1 -1
- package/src/exos/cosmos-orchestration-account.js +113 -57
- package/src/exos/icq-connection-kit.d.ts +10 -1
- package/src/exos/icq-connection-kit.d.ts.map +1 -1
- package/src/exos/icq-connection-kit.js +27 -11
- package/src/exos/local-chain-facade.d.ts +46 -9
- package/src/exos/local-chain-facade.d.ts.map +1 -1
- package/src/exos/local-chain-facade.js +1 -1
- package/src/exos/local-orchestration-account.d.ts +115 -2343
- package/src/exos/local-orchestration-account.d.ts.map +1 -1
- package/src/exos/local-orchestration-account.js +185 -56
- package/src/exos/orchestrator.d.ts +9 -2313
- package/src/exos/orchestrator.d.ts.map +1 -1
- package/src/exos/orchestrator.js +1 -1
- package/src/exos/remote-chain-facade.d.ts +6 -6
- package/src/facade.d.ts +48 -11
- package/src/facade.d.ts.map +1 -1
- package/src/facade.js +2 -2
- package/src/proposals/orchestration-proposal.d.ts +36 -6
- package/src/proposals/orchestration-proposal.js +1 -1
- package/src/proposals/start-stakeAtom.d.ts +9 -9
- package/src/proposals/start-stakeAtom.d.ts.map +1 -1
- package/src/proposals/start-stakeAtom.js +5 -6
- package/src/proposals/start-stakeBld.d.ts +10 -20
- package/src/proposals/start-stakeBld.d.ts.map +1 -1
- package/src/proposals/start-stakeOsmo.d.ts +9 -9
- package/src/proposals/start-stakeOsmo.d.ts.map +1 -1
- package/src/proposals/start-stakeOsmo.js +5 -6
- package/src/service.d.ts +92 -9
- package/src/service.d.ts.map +1 -1
- package/src/service.js +143 -66
- package/src/utils/start-helper.d.ts +8 -2320
- package/src/utils/start-helper.d.ts.map +1 -1
- package/src/utils/start-helper.js +5 -2
- package/src/utils/time.d.ts +2 -0
- package/src/utils/time.d.ts.map +1 -1
- package/src/utils/time.js +2 -0
- package/src/vat-orchestration.d.ts +36 -6
- package/src/vat-orchestration.d.ts.map +1 -1
- package/src/vat-orchestration.js +3 -0
- package/src/utils/chainHub.d.ts +0 -2404
|
@@ -1,2340 +1,34 @@
|
|
|
1
|
-
export function prepareLocalOrchestrationAccountKit(zone: Zone, makeRecorderKit: <T>(storageNode: StorageNode | Awaited<import("@endo/far").FarRef<StorageNode>>, valueShape?: import("@agoric/zoe/src/contractSupport/recorder.js").TypedMatcher<T> | undefined) => RecorderKit<T>, zcf: ZCF, timerService: Remote<TimerService>,
|
|
1
|
+
export function prepareLocalOrchestrationAccountKit(zone: Zone, makeRecorderKit: <T>(storageNode: StorageNode | Awaited<import("@endo/far").FarRef<StorageNode>>, valueShape?: import("@agoric/zoe/src/contractSupport/recorder.js").TypedMatcher<T> | undefined) => RecorderKit<T>, zcf: ZCF, timerService: Remote<TimerService>, { watch, when, allVows }: {
|
|
2
|
+
when: <T_1, TResult1 = import("@agoric/vow").EUnwrap<T_1>, TResult2 = never>(specimenP: T_1, onFulfilled?: ((value: import("@agoric/vow").EUnwrap<T_1>) => TResult1 | PromiseLike<TResult1>) | undefined, onRejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined) => Promise<TResult1 | TResult2>;
|
|
3
|
+
watch: <T_2 = any, TResult1_1 = T_2, TResult2_1 = never, C = any>(specimenP: import("@agoric/vow").ERef<T_2 | import("@agoric/vow").Vow<T_2>>, watcher?: import("@agoric/vow").Watcher<T_2, TResult1_1, TResult2_1> | undefined, watcherContext?: C | undefined) => import("@agoric/vow").Vow<Exclude<TResult1_1, void> | Exclude<TResult2_1, void> extends never ? TResult1_1 : Exclude<TResult1_1, void> | Exclude<TResult2_1, void>>;
|
|
4
|
+
makeVowKit: <T_3>() => import("@agoric/vow").VowKit<T_3>;
|
|
5
|
+
allVows: (vows: unknown[]) => import("@agoric/vow").Vow<any[]>;
|
|
6
|
+
}, chainHub: import("@endo/exo").Guarded<{
|
|
2
7
|
registerChain(name: string, chainInfo: Readonly<{
|
|
3
8
|
chainId: string;
|
|
4
|
-
connections?: Record<string,
|
|
9
|
+
connections?: Record<string, IBCConnectionInfo> | undefined;
|
|
5
10
|
icqEnabled?: boolean | undefined;
|
|
6
11
|
stakingTokens?: readonly {
|
|
7
12
|
denom: string;
|
|
8
13
|
}[] | undefined;
|
|
9
14
|
}>): void;
|
|
10
|
-
getChainInfo<K extends string>(chainName: K): Promise<
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
client_id: string;
|
|
19
|
-
connection_id: "connection-1";
|
|
20
|
-
prefix: {
|
|
21
|
-
key_prefix: string;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
state: 3;
|
|
25
|
-
transferChannel: {
|
|
26
|
-
portId: string;
|
|
27
|
-
channelId: "channel-1";
|
|
28
|
-
counterPartyChannelId: "channel-1";
|
|
29
|
-
counterPartyPortId: string;
|
|
30
|
-
ordering: 1;
|
|
31
|
-
state: 3;
|
|
32
|
-
version: string;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
osmosislocal: {
|
|
36
|
-
id: "connection-0";
|
|
37
|
-
client_id: string;
|
|
38
|
-
counterparty: {
|
|
39
|
-
client_id: string;
|
|
40
|
-
connection_id: "connection-1";
|
|
41
|
-
prefix: {
|
|
42
|
-
key_prefix: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
state: 3;
|
|
46
|
-
transferChannel: {
|
|
47
|
-
portId: string;
|
|
48
|
-
channelId: "channel-0";
|
|
49
|
-
counterPartyChannelId: "channel-1";
|
|
50
|
-
counterPartyPortId: string;
|
|
51
|
-
ordering: 1;
|
|
52
|
-
state: 3;
|
|
53
|
-
version: string;
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
};
|
|
58
|
-
agoric: {
|
|
59
|
-
readonly chainId: "agoric-3";
|
|
60
|
-
readonly stakingTokens: readonly [{
|
|
61
|
-
readonly denom: "ubld";
|
|
62
|
-
}];
|
|
63
|
-
readonly icqEnabled: false;
|
|
64
|
-
readonly connections: {
|
|
65
|
-
readonly 'cosmoshub-4': {
|
|
66
|
-
readonly id: "connection-8";
|
|
67
|
-
readonly client_id: "07-tendermint-6";
|
|
68
|
-
readonly counterparty: {
|
|
69
|
-
readonly client_id: "07-tendermint-927";
|
|
70
|
-
readonly connection_id: "connection-649";
|
|
71
|
-
readonly prefix: {
|
|
72
|
-
readonly key_prefix: "FIXME";
|
|
73
|
-
};
|
|
74
|
-
};
|
|
75
|
-
readonly state: 3;
|
|
76
|
-
readonly transferChannel: {
|
|
77
|
-
readonly channelId: "channel-405";
|
|
78
|
-
readonly portId: "transfer";
|
|
79
|
-
readonly counterPartyChannelId: "channel-5";
|
|
80
|
-
readonly counterPartyPortId: "transfer";
|
|
81
|
-
readonly ordering: 0;
|
|
82
|
-
readonly state: 3;
|
|
83
|
-
readonly version: "ics20-1";
|
|
84
|
-
};
|
|
85
|
-
};
|
|
86
|
-
readonly 'noble-1': {
|
|
87
|
-
readonly id: "connection-72";
|
|
88
|
-
readonly client_id: "07-tendermint-77";
|
|
89
|
-
readonly counterparty: {
|
|
90
|
-
readonly client_id: "07-tendermint-32";
|
|
91
|
-
readonly connection_id: "connection-40";
|
|
92
|
-
readonly prefix: {
|
|
93
|
-
readonly key_prefix: "FIXME";
|
|
94
|
-
};
|
|
95
|
-
};
|
|
96
|
-
readonly state: 3;
|
|
97
|
-
readonly transferChannel: {
|
|
98
|
-
readonly channelId: "channel-21";
|
|
99
|
-
readonly portId: "transfer";
|
|
100
|
-
readonly counterPartyChannelId: "channel-62";
|
|
101
|
-
readonly counterPartyPortId: "transfer";
|
|
102
|
-
readonly ordering: 0;
|
|
103
|
-
readonly state: 3;
|
|
104
|
-
readonly version: "ics20-1";
|
|
105
|
-
};
|
|
106
|
-
};
|
|
107
|
-
readonly 'omniflixhub-1': {
|
|
108
|
-
readonly id: "connection-67";
|
|
109
|
-
readonly client_id: "07-tendermint-73";
|
|
110
|
-
readonly counterparty: {
|
|
111
|
-
readonly client_id: "07-tendermint-47";
|
|
112
|
-
readonly connection_id: "connection-40";
|
|
113
|
-
readonly prefix: {
|
|
114
|
-
readonly key_prefix: "FIXME";
|
|
115
|
-
};
|
|
116
|
-
};
|
|
117
|
-
readonly state: 3;
|
|
118
|
-
readonly transferChannel: {
|
|
119
|
-
readonly channelId: "channel-30";
|
|
120
|
-
readonly portId: "transfer";
|
|
121
|
-
readonly counterPartyChannelId: "channel-58";
|
|
122
|
-
readonly counterPartyPortId: "transfer";
|
|
123
|
-
readonly ordering: 0;
|
|
124
|
-
readonly state: 3;
|
|
125
|
-
readonly version: "ics20-1";
|
|
126
|
-
};
|
|
127
|
-
};
|
|
128
|
-
readonly 'osmosis-1': {
|
|
129
|
-
readonly id: "connection-1";
|
|
130
|
-
readonly client_id: "07-tendermint-1";
|
|
131
|
-
readonly counterparty: {
|
|
132
|
-
readonly client_id: "07-tendermint-2109";
|
|
133
|
-
readonly connection_id: "connection-1649";
|
|
134
|
-
readonly prefix: {
|
|
135
|
-
readonly key_prefix: "FIXME";
|
|
136
|
-
};
|
|
137
|
-
};
|
|
138
|
-
readonly state: 3;
|
|
139
|
-
readonly transferChannel: {
|
|
140
|
-
readonly channelId: "channel-320";
|
|
141
|
-
readonly portId: "transfer";
|
|
142
|
-
readonly counterPartyChannelId: "channel-1";
|
|
143
|
-
readonly counterPartyPortId: "transfer";
|
|
144
|
-
readonly ordering: 0;
|
|
145
|
-
readonly state: 3;
|
|
146
|
-
readonly version: "ics20-1";
|
|
147
|
-
};
|
|
148
|
-
};
|
|
149
|
-
readonly 'secret-4': {
|
|
150
|
-
readonly id: "connection-17";
|
|
151
|
-
readonly client_id: "07-tendermint-17";
|
|
152
|
-
readonly counterparty: {
|
|
153
|
-
readonly client_id: "07-tendermint-111";
|
|
154
|
-
readonly connection_id: "connection-80";
|
|
155
|
-
readonly prefix: {
|
|
156
|
-
readonly key_prefix: "FIXME";
|
|
157
|
-
};
|
|
158
|
-
};
|
|
159
|
-
readonly state: 3;
|
|
160
|
-
readonly transferChannel: {
|
|
161
|
-
readonly channelId: "channel-51";
|
|
162
|
-
readonly portId: "transfer";
|
|
163
|
-
readonly counterPartyChannelId: "channel-10";
|
|
164
|
-
readonly counterPartyPortId: "transfer";
|
|
165
|
-
readonly ordering: 0;
|
|
166
|
-
readonly state: 3;
|
|
167
|
-
readonly version: "ics20-1";
|
|
168
|
-
};
|
|
169
|
-
};
|
|
170
|
-
readonly 'stride-1': {
|
|
171
|
-
readonly id: "connection-68";
|
|
172
|
-
readonly client_id: "07-tendermint-74";
|
|
173
|
-
readonly counterparty: {
|
|
174
|
-
readonly client_id: "07-tendermint-129";
|
|
175
|
-
readonly connection_id: "connection-118";
|
|
176
|
-
readonly prefix: {
|
|
177
|
-
readonly key_prefix: "FIXME";
|
|
178
|
-
};
|
|
179
|
-
};
|
|
180
|
-
readonly state: 3;
|
|
181
|
-
readonly transferChannel: {
|
|
182
|
-
readonly channelId: "channel-148";
|
|
183
|
-
readonly portId: "transfer";
|
|
184
|
-
readonly counterPartyChannelId: "channel-59";
|
|
185
|
-
readonly counterPartyPortId: "transfer";
|
|
186
|
-
readonly ordering: 0;
|
|
187
|
-
readonly state: 3;
|
|
188
|
-
readonly version: "ics20-1";
|
|
189
|
-
};
|
|
190
|
-
};
|
|
191
|
-
readonly 'umee-1': {
|
|
192
|
-
readonly id: "connection-18";
|
|
193
|
-
readonly client_id: "07-tendermint-18";
|
|
194
|
-
readonly counterparty: {
|
|
195
|
-
readonly client_id: "07-tendermint-152";
|
|
196
|
-
readonly connection_id: "connection-101";
|
|
197
|
-
readonly prefix: {
|
|
198
|
-
readonly key_prefix: "FIXME";
|
|
199
|
-
};
|
|
200
|
-
};
|
|
201
|
-
readonly state: 3;
|
|
202
|
-
readonly transferChannel: {
|
|
203
|
-
readonly channelId: "channel-42";
|
|
204
|
-
readonly portId: "transfer";
|
|
205
|
-
readonly counterPartyChannelId: "channel-11";
|
|
206
|
-
readonly counterPartyPortId: "transfer";
|
|
207
|
-
readonly ordering: 0;
|
|
208
|
-
readonly state: 3;
|
|
209
|
-
readonly version: "ics20-1";
|
|
210
|
-
};
|
|
211
|
-
};
|
|
212
|
-
};
|
|
213
|
-
};
|
|
214
|
-
celestia: {
|
|
215
|
-
readonly chainId: "celestia";
|
|
216
|
-
readonly stakingTokens: readonly [{
|
|
217
|
-
readonly denom: "utia";
|
|
218
|
-
}];
|
|
219
|
-
readonly icqEnabled: false;
|
|
220
|
-
readonly connections: {
|
|
221
|
-
readonly 'neutron-1': {
|
|
222
|
-
readonly id: "connection-7";
|
|
223
|
-
readonly client_id: "07-tendermint-29";
|
|
224
|
-
readonly counterparty: {
|
|
225
|
-
readonly client_id: "07-tendermint-48";
|
|
226
|
-
readonly connection_id: "connection-36"; /** @type {OrchestrationAccount<any>['getBalance']} */
|
|
227
|
-
readonly prefix: {
|
|
228
|
-
readonly key_prefix: "FIXME";
|
|
229
|
-
};
|
|
230
|
-
};
|
|
231
|
-
readonly state: 3;
|
|
232
|
-
readonly transferChannel: {
|
|
233
|
-
readonly channelId: "channel-35";
|
|
234
|
-
readonly portId: "transfer";
|
|
235
|
-
readonly counterPartyChannelId: "channel-8";
|
|
236
|
-
readonly counterPartyPortId: "transfer";
|
|
237
|
-
readonly ordering: 0;
|
|
238
|
-
readonly state: 3;
|
|
239
|
-
readonly version: "ics20-1";
|
|
240
|
-
};
|
|
241
|
-
};
|
|
242
|
-
readonly 'osmosis-1': {
|
|
243
|
-
readonly id: "connection-2";
|
|
244
|
-
readonly client_id: "07-tendermint-10";
|
|
245
|
-
readonly counterparty: {
|
|
246
|
-
readonly client_id: "07-tendermint-3012";
|
|
247
|
-
readonly connection_id: "connection-2503";
|
|
248
|
-
readonly prefix: {
|
|
249
|
-
readonly key_prefix: "FIXME";
|
|
250
|
-
};
|
|
251
|
-
};
|
|
252
|
-
readonly state: 3;
|
|
253
|
-
readonly transferChannel: {
|
|
254
|
-
readonly channelId: "channel-6994";
|
|
255
|
-
readonly portId: "transfer";
|
|
256
|
-
readonly counterPartyChannelId: "channel-2";
|
|
257
|
-
readonly counterPartyPortId: "transfer";
|
|
258
|
-
readonly ordering: 0;
|
|
259
|
-
readonly state: 3;
|
|
260
|
-
readonly version: "ics20-1";
|
|
261
|
-
};
|
|
262
|
-
};
|
|
263
|
-
readonly 'secret-4': {
|
|
264
|
-
readonly id: "connection-15";
|
|
265
|
-
readonly client_id: "07-tendermint-52";
|
|
266
|
-
readonly counterparty: {
|
|
267
|
-
readonly client_id: "07-tendermint-174";
|
|
268
|
-
readonly connection_id: "connection-131";
|
|
269
|
-
readonly prefix: {
|
|
270
|
-
readonly key_prefix: "FIXME";
|
|
271
|
-
};
|
|
272
|
-
};
|
|
273
|
-
readonly state: 3;
|
|
274
|
-
readonly transferChannel: {
|
|
275
|
-
readonly channelId: "channel-91";
|
|
276
|
-
readonly portId: "transfer";
|
|
277
|
-
readonly counterPartyChannelId: "channel-14";
|
|
278
|
-
readonly counterPartyPortId: "transfer";
|
|
279
|
-
readonly ordering: 0;
|
|
280
|
-
readonly state: 3;
|
|
281
|
-
readonly version: "ics20-1";
|
|
282
|
-
};
|
|
283
|
-
};
|
|
284
|
-
readonly 'stargaze-1': {
|
|
285
|
-
readonly id: "connection-56";
|
|
286
|
-
readonly client_id: "07-tendermint-86";
|
|
287
|
-
readonly counterparty: {
|
|
288
|
-
readonly client_id: "07-tendermint-359";
|
|
289
|
-
readonly connection_id: "connection-296";
|
|
290
|
-
readonly prefix: {
|
|
291
|
-
readonly key_prefix: "FIXME";
|
|
292
|
-
};
|
|
293
|
-
};
|
|
294
|
-
readonly state: 3;
|
|
295
|
-
readonly transferChannel: {
|
|
296
|
-
readonly channelId: "channel-291";
|
|
297
|
-
readonly portId: "transfer";
|
|
298
|
-
readonly counterPartyChannelId: "channel-33";
|
|
299
|
-
readonly counterPartyPortId: "transfer";
|
|
300
|
-
readonly ordering: 0;
|
|
301
|
-
readonly state: 3;
|
|
302
|
-
readonly version: "ics20-1";
|
|
303
|
-
};
|
|
304
|
-
};
|
|
305
|
-
readonly 'stride-1': {
|
|
306
|
-
readonly id: "connection-4";
|
|
307
|
-
readonly client_id: "07-tendermint-0";
|
|
308
|
-
readonly counterparty: {
|
|
309
|
-
readonly client_id: "07-tendermint-137";
|
|
310
|
-
readonly connection_id: "connection-125";
|
|
311
|
-
readonly prefix: {
|
|
312
|
-
readonly key_prefix: "FIXME";
|
|
313
|
-
};
|
|
314
|
-
};
|
|
315
|
-
readonly state: 3;
|
|
316
|
-
readonly transferChannel: {
|
|
317
|
-
readonly channelId: "channel-162";
|
|
318
|
-
readonly portId: "transfer";
|
|
319
|
-
readonly counterPartyChannelId: "channel-4";
|
|
320
|
-
readonly counterPartyPortId: "transfer";
|
|
321
|
-
readonly ordering: 0;
|
|
322
|
-
readonly state: 3;
|
|
323
|
-
readonly version: "ics20-1";
|
|
324
|
-
};
|
|
325
|
-
};
|
|
326
|
-
};
|
|
327
|
-
};
|
|
328
|
-
cosmoshub: {
|
|
329
|
-
readonly chainId: "cosmoshub-4";
|
|
330
|
-
readonly stakingTokens: readonly [{
|
|
331
|
-
readonly denom: "uatom";
|
|
332
|
-
}];
|
|
333
|
-
readonly icqEnabled: false;
|
|
334
|
-
readonly connections: {
|
|
335
|
-
readonly 'agoric-3': {
|
|
336
|
-
readonly id: "connection-649";
|
|
337
|
-
readonly client_id: "07-tendermint-927";
|
|
338
|
-
readonly counterparty: {
|
|
339
|
-
readonly client_id: "07-tendermint-6";
|
|
340
|
-
readonly connection_id: "connection-8";
|
|
341
|
-
readonly prefix: {
|
|
342
|
-
readonly key_prefix: "FIXME";
|
|
343
|
-
};
|
|
344
|
-
};
|
|
345
|
-
readonly state: 3;
|
|
346
|
-
readonly transferChannel: {
|
|
347
|
-
readonly channelId: "channel-5";
|
|
348
|
-
readonly portId: "transfer";
|
|
349
|
-
readonly counterPartyChannelId: "channel-405";
|
|
350
|
-
readonly counterPartyPortId: "transfer";
|
|
351
|
-
readonly ordering: 0;
|
|
352
|
-
readonly state: 3;
|
|
353
|
-
readonly version: "ics20-1";
|
|
354
|
-
};
|
|
355
|
-
};
|
|
356
|
-
readonly 'juno-1': {
|
|
357
|
-
readonly id: "connection-372";
|
|
358
|
-
readonly client_id: "07-tendermint-439";
|
|
359
|
-
readonly counterparty: {
|
|
360
|
-
readonly client_id: "07-tendermint-3";
|
|
361
|
-
readonly connection_id: "connection-2";
|
|
362
|
-
readonly prefix: {
|
|
363
|
-
readonly key_prefix: "FIXME";
|
|
364
|
-
};
|
|
365
|
-
};
|
|
366
|
-
readonly state: 3;
|
|
367
|
-
readonly transferChannel: {
|
|
368
|
-
readonly channelId: "channel-1";
|
|
369
|
-
readonly portId: "transfer";
|
|
370
|
-
readonly counterPartyChannelId: "channel-207";
|
|
371
|
-
readonly counterPartyPortId: "transfer"; /**
|
|
372
|
-
* @param {AmountArg} amount an ERTP {@link Amount} or a
|
|
373
|
-
* {@link DenomAmount}
|
|
374
|
-
* @param {ChainAddress} destination
|
|
375
|
-
* @param {IBCMsgTransferOptions} [opts] if either timeoutHeight or
|
|
376
|
-
* timeoutTimestamp are not supplied, a default timeoutTimestamp will
|
|
377
|
-
* be set for 5 minutes in the future
|
|
378
|
-
* @returns {Promise<void>}
|
|
379
|
-
*/
|
|
380
|
-
readonly ordering: 0;
|
|
381
|
-
readonly state: 3;
|
|
382
|
-
readonly version: "ics20-1";
|
|
383
|
-
};
|
|
384
|
-
};
|
|
385
|
-
readonly 'neutron-1': {
|
|
386
|
-
readonly id: "connection-809";
|
|
387
|
-
readonly client_id: "07-tendermint-1119";
|
|
388
|
-
readonly counterparty: {
|
|
389
|
-
readonly client_id: "07-tendermint-0";
|
|
390
|
-
readonly connection_id: "connection-0";
|
|
391
|
-
readonly prefix: {
|
|
392
|
-
readonly key_prefix: "FIXME";
|
|
393
|
-
};
|
|
394
|
-
};
|
|
395
|
-
readonly state: 3;
|
|
396
|
-
readonly transferChannel: {
|
|
397
|
-
readonly channelId: "channel-1";
|
|
398
|
-
readonly portId: "transfer";
|
|
399
|
-
readonly counterPartyChannelId: "channel-569";
|
|
400
|
-
readonly counterPartyPortId: "transfer";
|
|
401
|
-
readonly ordering: 0;
|
|
402
|
-
readonly state: 3;
|
|
403
|
-
readonly version: "ics20-1";
|
|
404
|
-
};
|
|
405
|
-
};
|
|
406
|
-
readonly 'noble-1': {
|
|
407
|
-
readonly id: "connection-790";
|
|
408
|
-
readonly client_id: "07-tendermint-1116";
|
|
409
|
-
readonly counterparty: {
|
|
410
|
-
readonly client_id: "07-tendermint-4";
|
|
411
|
-
readonly connection_id: "connection-12";
|
|
412
|
-
readonly prefix: {
|
|
413
|
-
readonly key_prefix: "FIXME";
|
|
414
|
-
};
|
|
415
|
-
};
|
|
416
|
-
readonly state: 3;
|
|
417
|
-
readonly transferChannel: {
|
|
418
|
-
readonly channelId: "channel-4";
|
|
419
|
-
readonly portId: "transfer";
|
|
420
|
-
readonly counterPartyChannelId: "channel-536";
|
|
421
|
-
readonly counterPartyPortId: "transfer";
|
|
422
|
-
readonly ordering: 0;
|
|
423
|
-
readonly state: 3;
|
|
424
|
-
readonly version: "ics20-1";
|
|
425
|
-
};
|
|
426
|
-
};
|
|
427
|
-
readonly 'omniflixhub-1': {
|
|
428
|
-
readonly id: "connection-501";
|
|
429
|
-
readonly client_id: "07-tendermint-656";
|
|
430
|
-
readonly counterparty: {
|
|
431
|
-
readonly client_id: "07-tendermint-23";
|
|
432
|
-
readonly connection_id: "connection-19";
|
|
433
|
-
readonly prefix: {
|
|
434
|
-
readonly key_prefix: "FIXME";
|
|
435
|
-
};
|
|
436
|
-
};
|
|
437
|
-
readonly state: 3;
|
|
438
|
-
readonly transferChannel: {
|
|
439
|
-
readonly channelId: "channel-12";
|
|
440
|
-
readonly portId: "transfer";
|
|
441
|
-
readonly counterPartyChannelId: "channel-306";
|
|
442
|
-
readonly counterPartyPortId: "transfer";
|
|
443
|
-
readonly ordering: 0;
|
|
444
|
-
readonly state: 3;
|
|
445
|
-
readonly version: "ics20-1";
|
|
446
|
-
};
|
|
447
|
-
};
|
|
448
|
-
readonly 'osmosis-1': {
|
|
449
|
-
readonly id: "connection-257";
|
|
450
|
-
readonly client_id: "07-tendermint-259";
|
|
451
|
-
readonly counterparty: {
|
|
452
|
-
readonly client_id: "07-tendermint-1";
|
|
453
|
-
readonly connection_id: "connection-1";
|
|
454
|
-
readonly prefix: {
|
|
455
|
-
readonly key_prefix: "FIXME";
|
|
456
|
-
};
|
|
457
|
-
};
|
|
458
|
-
readonly state: 3;
|
|
459
|
-
readonly transferChannel: {
|
|
460
|
-
readonly channelId: "channel-0";
|
|
461
|
-
readonly portId: "transfer";
|
|
462
|
-
readonly counterPartyChannelId: "channel-141";
|
|
463
|
-
readonly counterPartyPortId: "transfer";
|
|
464
|
-
readonly ordering: 0;
|
|
465
|
-
readonly state: 3;
|
|
466
|
-
readonly version: "ics20-1";
|
|
467
|
-
};
|
|
468
|
-
};
|
|
469
|
-
readonly 'secret-4': {
|
|
470
|
-
readonly id: "connection-401";
|
|
471
|
-
readonly client_id: "07-tendermint-492";
|
|
472
|
-
readonly counterparty: {
|
|
473
|
-
readonly client_id: "07-tendermint-1";
|
|
474
|
-
readonly connection_id: "connection-0";
|
|
475
|
-
readonly prefix: {
|
|
476
|
-
readonly key_prefix: "FIXME";
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
readonly state: 3;
|
|
480
|
-
readonly transferChannel: {
|
|
481
|
-
readonly channelId: "channel-0";
|
|
482
|
-
readonly portId: "transfer";
|
|
483
|
-
readonly counterPartyChannelId: "channel-235";
|
|
484
|
-
readonly counterPartyPortId: "transfer";
|
|
485
|
-
readonly ordering: 0;
|
|
486
|
-
readonly state: 3;
|
|
487
|
-
readonly version: "ics20-1";
|
|
488
|
-
};
|
|
489
|
-
};
|
|
490
|
-
readonly 'stargaze-1': {
|
|
491
|
-
readonly id: "connection-918";
|
|
492
|
-
readonly client_id: "07-tendermint-1188";
|
|
493
|
-
readonly counterparty: {
|
|
494
|
-
readonly client_id: "07-tendermint-320";
|
|
495
|
-
readonly connection_id: "connection-256";
|
|
496
|
-
readonly prefix: {
|
|
497
|
-
readonly key_prefix: "FIXME";
|
|
498
|
-
};
|
|
499
|
-
};
|
|
500
|
-
readonly state: 3;
|
|
501
|
-
readonly transferChannel: {
|
|
502
|
-
readonly channelId: "channel-239";
|
|
503
|
-
readonly portId: "transfer";
|
|
504
|
-
readonly counterPartyChannelId: "channel-730";
|
|
505
|
-
readonly counterPartyPortId: "transfer";
|
|
506
|
-
readonly ordering: 0;
|
|
507
|
-
readonly state: 3;
|
|
508
|
-
readonly version: "ics20-1";
|
|
509
|
-
};
|
|
510
|
-
};
|
|
511
|
-
readonly 'stride-1': {
|
|
512
|
-
readonly id: "connection-635";
|
|
513
|
-
readonly client_id: "07-tendermint-913";
|
|
514
|
-
readonly counterparty: {
|
|
515
|
-
readonly client_id: "07-tendermint-0";
|
|
516
|
-
readonly connection_id: "connection-0";
|
|
517
|
-
readonly prefix: {
|
|
518
|
-
readonly key_prefix: "FIXME";
|
|
519
|
-
};
|
|
520
|
-
};
|
|
521
|
-
readonly state: 3;
|
|
522
|
-
readonly transferChannel: {
|
|
523
|
-
readonly channelId: "channel-0";
|
|
524
|
-
readonly portId: "transfer";
|
|
525
|
-
readonly counterPartyChannelId: "channel-391";
|
|
526
|
-
readonly counterPartyPortId: "transfer";
|
|
527
|
-
readonly ordering: 0;
|
|
528
|
-
readonly state: 3;
|
|
529
|
-
readonly version: "ics20-1";
|
|
530
|
-
};
|
|
531
|
-
};
|
|
532
|
-
};
|
|
533
|
-
};
|
|
534
|
-
dydx: {
|
|
535
|
-
readonly chainId: "dydx-mainnet-1";
|
|
536
|
-
readonly stakingTokens: readonly [{
|
|
537
|
-
readonly denom: "adydx";
|
|
538
|
-
}];
|
|
539
|
-
readonly icqEnabled: false;
|
|
540
|
-
readonly connections: {
|
|
541
|
-
readonly 'neutron-1': {
|
|
542
|
-
readonly id: "connection-17";
|
|
543
|
-
readonly client_id: "07-tendermint-11";
|
|
544
|
-
readonly counterparty: {
|
|
545
|
-
readonly client_id: "07-tendermint-72";
|
|
546
|
-
readonly connection_id: "connection-51";
|
|
547
|
-
readonly prefix: {
|
|
548
|
-
readonly key_prefix: "FIXME";
|
|
549
|
-
};
|
|
550
|
-
};
|
|
551
|
-
readonly state: 3;
|
|
552
|
-
readonly transferChannel: {
|
|
553
|
-
readonly channelId: "channel-48";
|
|
554
|
-
readonly portId: "transfer";
|
|
555
|
-
readonly counterPartyChannelId: "channel-11";
|
|
556
|
-
readonly counterPartyPortId: "transfer";
|
|
557
|
-
readonly ordering: 0;
|
|
558
|
-
readonly state: 3;
|
|
559
|
-
readonly version: "ics20-1";
|
|
560
|
-
};
|
|
561
|
-
};
|
|
562
|
-
readonly 'noble-1': {
|
|
563
|
-
readonly id: "connection-0";
|
|
564
|
-
readonly client_id: "07-tendermint-0";
|
|
565
|
-
readonly counterparty: {
|
|
566
|
-
readonly client_id: "07-tendermint-59";
|
|
567
|
-
readonly connection_id: "connection-57";
|
|
568
|
-
readonly prefix: {
|
|
569
|
-
readonly key_prefix: "FIXME";
|
|
570
|
-
};
|
|
571
|
-
};
|
|
572
|
-
readonly state: 3;
|
|
573
|
-
readonly transferChannel: {
|
|
574
|
-
readonly channelId: "channel-33";
|
|
575
|
-
readonly portId: "transfer";
|
|
576
|
-
readonly counterPartyChannelId: "channel-0";
|
|
577
|
-
readonly counterPartyPortId: "transfer";
|
|
578
|
-
readonly ordering: 0;
|
|
579
|
-
readonly state: 3;
|
|
580
|
-
readonly version: "ics20-1";
|
|
581
|
-
};
|
|
582
|
-
};
|
|
583
|
-
readonly 'osmosis-1': {
|
|
584
|
-
readonly id: "connection-7";
|
|
585
|
-
readonly client_id: "07-tendermint-3";
|
|
586
|
-
readonly counterparty: {
|
|
587
|
-
readonly client_id: "07-tendermint-3009";
|
|
588
|
-
readonly connection_id: "connection-2500";
|
|
589
|
-
readonly prefix: {
|
|
590
|
-
readonly key_prefix: "FIXME";
|
|
591
|
-
};
|
|
592
|
-
};
|
|
593
|
-
readonly state: 3;
|
|
594
|
-
readonly transferChannel: {
|
|
595
|
-
readonly channelId: "channel-6787";
|
|
596
|
-
readonly portId: "transfer";
|
|
597
|
-
readonly counterPartyChannelId: "channel-3";
|
|
598
|
-
readonly counterPartyPortId: "transfer";
|
|
599
|
-
readonly ordering: 0;
|
|
600
|
-
readonly state: 3;
|
|
601
|
-
readonly version: "ics20-1";
|
|
602
|
-
};
|
|
603
|
-
};
|
|
604
|
-
readonly 'stride-1': {
|
|
605
|
-
readonly id: "connection-1";
|
|
606
|
-
readonly client_id: "07-tendermint-1";
|
|
607
|
-
readonly counterparty: {
|
|
608
|
-
readonly client_id: "07-tendermint-133";
|
|
609
|
-
readonly connection_id: "connection-123";
|
|
610
|
-
readonly prefix: {
|
|
611
|
-
readonly key_prefix: "FIXME";
|
|
612
|
-
};
|
|
613
|
-
};
|
|
614
|
-
readonly state: 3;
|
|
615
|
-
readonly transferChannel: {
|
|
616
|
-
readonly channelId: "channel-160";
|
|
617
|
-
readonly portId: "transfer";
|
|
618
|
-
readonly counterPartyChannelId: "channel-1";
|
|
619
|
-
readonly counterPartyPortId: "transfer";
|
|
620
|
-
readonly ordering: 0;
|
|
621
|
-
readonly state: 3;
|
|
622
|
-
readonly version: "ics20-1";
|
|
623
|
-
};
|
|
624
|
-
};
|
|
625
|
-
readonly 'umee-1': {
|
|
626
|
-
readonly id: "connection-13";
|
|
627
|
-
readonly client_id: "07-tendermint-8";
|
|
628
|
-
readonly counterparty: {
|
|
629
|
-
readonly client_id: "07-tendermint-244";
|
|
630
|
-
readonly connection_id: "connection-208";
|
|
631
|
-
readonly prefix: {
|
|
632
|
-
readonly key_prefix: "FIXME";
|
|
633
|
-
};
|
|
634
|
-
};
|
|
635
|
-
readonly state: 3;
|
|
636
|
-
readonly transferChannel: {
|
|
637
|
-
readonly channelId: "channel-118";
|
|
638
|
-
readonly portId: "transfer";
|
|
639
|
-
readonly counterPartyChannelId: "channel-8";
|
|
640
|
-
readonly counterPartyPortId: "transfer";
|
|
641
|
-
readonly ordering: 0;
|
|
642
|
-
readonly state: 3;
|
|
643
|
-
readonly version: "ics20-1";
|
|
644
|
-
};
|
|
645
|
-
};
|
|
646
|
-
};
|
|
647
|
-
};
|
|
648
|
-
juno: {
|
|
649
|
-
readonly chainId: "juno-1";
|
|
650
|
-
readonly stakingTokens: readonly [{
|
|
651
|
-
readonly denom: "ujuno";
|
|
652
|
-
}];
|
|
653
|
-
readonly icqEnabled: false;
|
|
654
|
-
readonly connections: {
|
|
655
|
-
readonly 'cosmoshub-4': {
|
|
656
|
-
readonly id: "connection-2";
|
|
657
|
-
readonly client_id: "07-tendermint-3";
|
|
658
|
-
readonly counterparty: {
|
|
659
|
-
readonly client_id: "07-tendermint-439";
|
|
660
|
-
readonly connection_id: "connection-372";
|
|
661
|
-
readonly prefix: {
|
|
662
|
-
readonly key_prefix: "FIXME";
|
|
663
|
-
};
|
|
664
|
-
};
|
|
665
|
-
readonly state: 3;
|
|
666
|
-
readonly transferChannel: {
|
|
667
|
-
readonly channelId: "channel-207";
|
|
668
|
-
readonly portId: "transfer";
|
|
669
|
-
readonly counterPartyChannelId: "channel-1";
|
|
670
|
-
readonly counterPartyPortId: "transfer";
|
|
671
|
-
readonly ordering: 0;
|
|
672
|
-
readonly state: 3;
|
|
673
|
-
readonly version: "ics20-1";
|
|
674
|
-
};
|
|
675
|
-
};
|
|
676
|
-
readonly 'neutron-1': {
|
|
677
|
-
readonly id: "connection-524";
|
|
678
|
-
readonly client_id: "07-tendermint-557";
|
|
679
|
-
readonly counterparty: {
|
|
680
|
-
readonly client_id: "07-tendermint-97";
|
|
681
|
-
readonly connection_id: "connection-71";
|
|
682
|
-
readonly prefix: {
|
|
683
|
-
readonly key_prefix: "FIXME";
|
|
684
|
-
};
|
|
685
|
-
};
|
|
686
|
-
readonly state: 3;
|
|
687
|
-
readonly transferChannel: {
|
|
688
|
-
readonly channelId: "channel-4328";
|
|
689
|
-
readonly portId: "transfer";
|
|
690
|
-
readonly counterPartyChannelId: "channel-548";
|
|
691
|
-
readonly counterPartyPortId: "transfer";
|
|
692
|
-
readonly ordering: 0;
|
|
693
|
-
readonly state: 3;
|
|
694
|
-
readonly version: "ics20-1";
|
|
695
|
-
};
|
|
696
|
-
};
|
|
697
|
-
readonly 'noble-1': {
|
|
698
|
-
readonly id: "connection-322";
|
|
699
|
-
readonly client_id: "07-tendermint-334";
|
|
700
|
-
readonly counterparty: {
|
|
701
|
-
readonly client_id: "07-tendermint-3";
|
|
702
|
-
readonly connection_id: "connection-8";
|
|
703
|
-
readonly prefix: {
|
|
704
|
-
readonly key_prefix: "FIXME";
|
|
705
|
-
};
|
|
706
|
-
};
|
|
707
|
-
readonly state: 3;
|
|
708
|
-
readonly transferChannel: {
|
|
709
|
-
readonly channelId: "channel-3";
|
|
710
|
-
readonly portId: "transfer";
|
|
711
|
-
readonly counterPartyChannelId: "channel-224";
|
|
712
|
-
readonly counterPartyPortId: "transfer";
|
|
713
|
-
readonly ordering: 0;
|
|
714
|
-
readonly state: 3;
|
|
715
|
-
readonly version: "ics20-1";
|
|
716
|
-
};
|
|
717
|
-
};
|
|
718
|
-
readonly 'osmosis-1': {
|
|
719
|
-
readonly id: "connection-0";
|
|
720
|
-
readonly client_id: "07-tendermint-0";
|
|
721
|
-
readonly counterparty: {
|
|
722
|
-
readonly client_id: "07-tendermint-1457";
|
|
723
|
-
readonly connection_id: "connection-1142";
|
|
724
|
-
readonly prefix: {
|
|
725
|
-
readonly key_prefix: "FIXME";
|
|
726
|
-
};
|
|
727
|
-
};
|
|
728
|
-
readonly state: 3;
|
|
729
|
-
readonly transferChannel: {
|
|
730
|
-
readonly channelId: "channel-42";
|
|
731
|
-
readonly portId: "transfer";
|
|
732
|
-
readonly counterPartyChannelId: "channel-0";
|
|
733
|
-
readonly counterPartyPortId: "transfer";
|
|
734
|
-
readonly ordering: 0;
|
|
735
|
-
readonly state: 3;
|
|
736
|
-
readonly version: "ics20-1";
|
|
737
|
-
};
|
|
738
|
-
};
|
|
739
|
-
readonly 'secret-4': {
|
|
740
|
-
readonly id: "connection-68";
|
|
741
|
-
readonly client_id: "07-tendermint-108";
|
|
742
|
-
readonly counterparty: {
|
|
743
|
-
readonly client_id: "07-tendermint-23";
|
|
744
|
-
readonly connection_id: "connection-9";
|
|
745
|
-
readonly prefix: {
|
|
746
|
-
readonly key_prefix: "FIXME";
|
|
747
|
-
};
|
|
748
|
-
};
|
|
749
|
-
readonly state: 3;
|
|
750
|
-
readonly transferChannel: {
|
|
751
|
-
readonly channelId: "channel-8";
|
|
752
|
-
readonly portId: "transfer";
|
|
753
|
-
readonly counterPartyChannelId: "channel-48";
|
|
754
|
-
readonly counterPartyPortId: "transfer";
|
|
755
|
-
readonly ordering: 0;
|
|
756
|
-
readonly state: 3;
|
|
757
|
-
readonly version: "ics20-1";
|
|
758
|
-
};
|
|
759
|
-
};
|
|
760
|
-
readonly 'stargaze-1': {
|
|
761
|
-
readonly id: "connection-30";
|
|
762
|
-
readonly client_id: "07-tendermint-44";
|
|
763
|
-
readonly counterparty: {
|
|
764
|
-
readonly client_id: "07-tendermint-13";
|
|
765
|
-
readonly connection_id: "connection-11";
|
|
766
|
-
readonly prefix: {
|
|
767
|
-
readonly key_prefix: "FIXME";
|
|
768
|
-
};
|
|
769
|
-
};
|
|
770
|
-
readonly state: 3;
|
|
771
|
-
readonly transferChannel: {
|
|
772
|
-
readonly channelId: "channel-5";
|
|
773
|
-
readonly portId: "transfer";
|
|
774
|
-
readonly counterPartyChannelId: "channel-20";
|
|
775
|
-
readonly counterPartyPortId: "transfer";
|
|
776
|
-
readonly ordering: 0;
|
|
777
|
-
readonly state: 3;
|
|
778
|
-
readonly version: "ics20-1";
|
|
779
|
-
};
|
|
780
|
-
};
|
|
781
|
-
readonly 'stride-1': {
|
|
782
|
-
readonly id: "connection-205";
|
|
783
|
-
readonly client_id: "07-tendermint-263";
|
|
784
|
-
readonly counterparty: {
|
|
785
|
-
readonly client_id: "07-tendermint-31";
|
|
786
|
-
readonly connection_id: "connection-19";
|
|
787
|
-
readonly prefix: {
|
|
788
|
-
readonly key_prefix: "FIXME";
|
|
789
|
-
};
|
|
790
|
-
};
|
|
791
|
-
readonly state: 3;
|
|
792
|
-
readonly transferChannel: {
|
|
793
|
-
readonly channelId: "channel-24";
|
|
794
|
-
readonly portId: "transfer";
|
|
795
|
-
readonly counterPartyChannelId: "channel-139";
|
|
796
|
-
readonly counterPartyPortId: "transfer";
|
|
797
|
-
readonly ordering: 0;
|
|
798
|
-
readonly state: 3;
|
|
799
|
-
readonly version: "ics20-1";
|
|
800
|
-
};
|
|
801
|
-
};
|
|
802
|
-
};
|
|
803
|
-
};
|
|
804
|
-
neutron: {
|
|
805
|
-
readonly chainId: "neutron-1";
|
|
806
|
-
readonly stakingTokens: readonly [{
|
|
807
|
-
readonly denom: "untrn";
|
|
808
|
-
}];
|
|
809
|
-
readonly icqEnabled: false;
|
|
810
|
-
readonly connections: {
|
|
811
|
-
readonly celestia: {
|
|
812
|
-
readonly id: "connection-36";
|
|
813
|
-
readonly client_id: "07-tendermint-48";
|
|
814
|
-
readonly counterparty: {
|
|
815
|
-
readonly client_id: "07-tendermint-29";
|
|
816
|
-
readonly connection_id: "connection-7";
|
|
817
|
-
readonly prefix: {
|
|
818
|
-
readonly key_prefix: "FIXME";
|
|
819
|
-
};
|
|
820
|
-
};
|
|
821
|
-
readonly state: 3;
|
|
822
|
-
readonly transferChannel: {
|
|
823
|
-
readonly channelId: "channel-8";
|
|
824
|
-
readonly portId: "transfer";
|
|
825
|
-
readonly counterPartyChannelId: "channel-35";
|
|
826
|
-
readonly counterPartyPortId: "transfer";
|
|
827
|
-
readonly ordering: 0;
|
|
828
|
-
readonly state: 3;
|
|
829
|
-
readonly version: "ics20-1";
|
|
830
|
-
};
|
|
831
|
-
};
|
|
832
|
-
readonly 'cosmoshub-4': {
|
|
833
|
-
readonly id: "connection-0";
|
|
834
|
-
readonly client_id: "07-tendermint-0";
|
|
835
|
-
readonly counterparty: {
|
|
836
|
-
readonly client_id: "07-tendermint-1119";
|
|
837
|
-
readonly connection_id: "connection-809";
|
|
838
|
-
readonly prefix: {
|
|
839
|
-
readonly key_prefix: "FIXME";
|
|
840
|
-
};
|
|
841
|
-
};
|
|
842
|
-
readonly state: 3;
|
|
843
|
-
readonly transferChannel: {
|
|
844
|
-
readonly channelId: "channel-569";
|
|
845
|
-
readonly portId: "transfer";
|
|
846
|
-
readonly counterPartyChannelId: "channel-1";
|
|
847
|
-
readonly counterPartyPortId: "transfer";
|
|
848
|
-
readonly ordering: 0;
|
|
849
|
-
readonly state: 3;
|
|
850
|
-
readonly version: "ics20-1";
|
|
851
|
-
};
|
|
852
|
-
};
|
|
853
|
-
readonly 'dydx-mainnet-1': {
|
|
854
|
-
readonly id: "connection-51";
|
|
855
|
-
readonly client_id: "07-tendermint-72";
|
|
856
|
-
readonly counterparty: {
|
|
857
|
-
readonly client_id: "07-tendermint-11";
|
|
858
|
-
readonly connection_id: "connection-17";
|
|
859
|
-
readonly prefix: {
|
|
860
|
-
readonly key_prefix: "FIXME";
|
|
861
|
-
};
|
|
862
|
-
};
|
|
863
|
-
readonly state: 3;
|
|
864
|
-
readonly transferChannel: {
|
|
865
|
-
readonly channelId: "channel-11";
|
|
866
|
-
readonly portId: "transfer";
|
|
867
|
-
readonly counterPartyChannelId: "channel-48";
|
|
868
|
-
readonly counterPartyPortId: "transfer";
|
|
869
|
-
readonly ordering: 0;
|
|
870
|
-
readonly state: 3;
|
|
871
|
-
readonly version: "ics20-1";
|
|
872
|
-
};
|
|
873
|
-
};
|
|
874
|
-
readonly 'juno-1': {
|
|
875
|
-
readonly id: "connection-71";
|
|
876
|
-
readonly client_id: "07-tendermint-97";
|
|
877
|
-
readonly counterparty: {
|
|
878
|
-
readonly client_id: "07-tendermint-557";
|
|
879
|
-
readonly connection_id: "connection-524";
|
|
880
|
-
readonly prefix: {
|
|
881
|
-
readonly key_prefix: "FIXME";
|
|
882
|
-
};
|
|
883
|
-
};
|
|
884
|
-
readonly state: 3;
|
|
885
|
-
readonly transferChannel: {
|
|
886
|
-
readonly channelId: "channel-548";
|
|
887
|
-
readonly portId: "transfer";
|
|
888
|
-
readonly counterPartyChannelId: "channel-4328";
|
|
889
|
-
readonly counterPartyPortId: "transfer";
|
|
890
|
-
readonly ordering: 0;
|
|
891
|
-
readonly state: 3;
|
|
892
|
-
readonly version: "ics20-1";
|
|
893
|
-
};
|
|
894
|
-
};
|
|
895
|
-
readonly 'noble-1': {
|
|
896
|
-
readonly id: "connection-31";
|
|
897
|
-
readonly client_id: "07-tendermint-40";
|
|
898
|
-
readonly counterparty: {
|
|
899
|
-
readonly client_id: "07-tendermint-25";
|
|
900
|
-
readonly connection_id: "connection-34";
|
|
901
|
-
readonly prefix: {
|
|
902
|
-
readonly key_prefix: "FIXME";
|
|
903
|
-
};
|
|
904
|
-
};
|
|
905
|
-
readonly state: 3;
|
|
906
|
-
readonly transferChannel: {
|
|
907
|
-
readonly channelId: "channel-18";
|
|
908
|
-
readonly portId: "transfer";
|
|
909
|
-
readonly counterPartyChannelId: "channel-30";
|
|
910
|
-
readonly counterPartyPortId: "transfer";
|
|
911
|
-
readonly ordering: 0;
|
|
912
|
-
readonly state: 3;
|
|
913
|
-
readonly version: "ics20-1";
|
|
914
|
-
};
|
|
915
|
-
};
|
|
916
|
-
readonly 'osmosis-1': {
|
|
917
|
-
readonly id: "connection-18";
|
|
918
|
-
readonly client_id: "07-tendermint-19";
|
|
919
|
-
readonly counterparty: {
|
|
920
|
-
readonly client_id: "07-tendermint-2823";
|
|
921
|
-
readonly connection_id: "connection-2338";
|
|
922
|
-
readonly prefix: {
|
|
923
|
-
readonly key_prefix: "FIXME";
|
|
924
|
-
};
|
|
925
|
-
};
|
|
926
|
-
readonly state: 3;
|
|
927
|
-
readonly transferChannel: {
|
|
928
|
-
readonly channelId: "channel-874";
|
|
929
|
-
readonly portId: "transfer";
|
|
930
|
-
readonly counterPartyChannelId: "channel-10";
|
|
931
|
-
readonly counterPartyPortId: "transfer";
|
|
932
|
-
readonly ordering: 0;
|
|
933
|
-
readonly state: 3;
|
|
934
|
-
readonly version: "ics20-1";
|
|
935
|
-
};
|
|
936
|
-
};
|
|
937
|
-
readonly 'secret-4': {
|
|
938
|
-
readonly id: "connection-63";
|
|
939
|
-
readonly client_id: "07-tendermint-85";
|
|
940
|
-
readonly counterparty: {
|
|
941
|
-
readonly client_id: "07-tendermint-199";
|
|
942
|
-
readonly connection_id: "connection-192";
|
|
943
|
-
readonly prefix: {
|
|
944
|
-
readonly key_prefix: "FIXME";
|
|
945
|
-
};
|
|
946
|
-
};
|
|
947
|
-
readonly state: 3;
|
|
948
|
-
readonly transferChannel: {
|
|
949
|
-
readonly channelId: "channel-144";
|
|
950
|
-
readonly portId: "transfer";
|
|
951
|
-
readonly counterPartyChannelId: "channel-1551";
|
|
952
|
-
readonly counterPartyPortId: "transfer";
|
|
953
|
-
readonly ordering: 0;
|
|
954
|
-
readonly state: 3;
|
|
955
|
-
readonly version: "ics20-1";
|
|
956
|
-
};
|
|
957
|
-
};
|
|
958
|
-
readonly 'stargaze-1': {
|
|
959
|
-
readonly id: "connection-23";
|
|
960
|
-
readonly client_id: "07-tendermint-31";
|
|
961
|
-
readonly counterparty: {
|
|
962
|
-
readonly client_id: "07-tendermint-283";
|
|
963
|
-
readonly connection_id: "connection-211";
|
|
964
|
-
readonly prefix: {
|
|
965
|
-
readonly key_prefix: "FIXME";
|
|
966
|
-
};
|
|
967
|
-
};
|
|
968
|
-
readonly state: 3;
|
|
969
|
-
readonly transferChannel: {
|
|
970
|
-
readonly channelId: "channel-191";
|
|
971
|
-
readonly portId: "transfer";
|
|
972
|
-
readonly counterPartyChannelId: "channel-18";
|
|
973
|
-
readonly counterPartyPortId: "transfer";
|
|
974
|
-
readonly ordering: 0;
|
|
975
|
-
readonly state: 3;
|
|
976
|
-
readonly version: "ics20-1";
|
|
977
|
-
};
|
|
978
|
-
};
|
|
979
|
-
readonly 'stride-1': {
|
|
980
|
-
readonly id: "connection-15";
|
|
981
|
-
readonly client_id: "07-tendermint-18";
|
|
982
|
-
readonly counterparty: {
|
|
983
|
-
readonly client_id: "07-tendermint-125";
|
|
984
|
-
readonly connection_id: "connection-113";
|
|
985
|
-
readonly prefix: {
|
|
986
|
-
readonly key_prefix: "FIXME";
|
|
987
|
-
};
|
|
988
|
-
};
|
|
989
|
-
readonly state: 3;
|
|
990
|
-
readonly transferChannel: {
|
|
991
|
-
readonly channelId: "channel-123";
|
|
992
|
-
readonly portId: "transfer";
|
|
993
|
-
readonly counterPartyChannelId: "channel-8";
|
|
994
|
-
readonly counterPartyPortId: "transfer";
|
|
995
|
-
readonly ordering: 0;
|
|
996
|
-
readonly state: 3;
|
|
997
|
-
readonly version: "ics20-1";
|
|
998
|
-
};
|
|
999
|
-
};
|
|
1000
|
-
};
|
|
1001
|
-
};
|
|
1002
|
-
noble: {
|
|
1003
|
-
readonly chainId: "noble-1";
|
|
1004
|
-
readonly stakingTokens: readonly [{
|
|
1005
|
-
readonly denom: "ustake";
|
|
1006
|
-
}];
|
|
1007
|
-
readonly icqEnabled: false;
|
|
1008
|
-
readonly connections: {
|
|
1009
|
-
readonly 'agoric-3': {
|
|
1010
|
-
readonly id: "connection-40";
|
|
1011
|
-
readonly client_id: "07-tendermint-32";
|
|
1012
|
-
readonly counterparty: {
|
|
1013
|
-
readonly client_id: "07-tendermint-77";
|
|
1014
|
-
readonly connection_id: "connection-72";
|
|
1015
|
-
readonly prefix: {
|
|
1016
|
-
readonly key_prefix: "FIXME";
|
|
1017
|
-
};
|
|
1018
|
-
};
|
|
1019
|
-
readonly state: 3;
|
|
1020
|
-
readonly transferChannel: {
|
|
1021
|
-
readonly channelId: "channel-62";
|
|
1022
|
-
readonly portId: "transfer";
|
|
1023
|
-
readonly counterPartyChannelId: "channel-21";
|
|
1024
|
-
readonly counterPartyPortId: "transfer";
|
|
1025
|
-
readonly ordering: 0;
|
|
1026
|
-
readonly state: 3;
|
|
1027
|
-
readonly version: "ics20-1";
|
|
1028
|
-
};
|
|
1029
|
-
};
|
|
1030
|
-
readonly 'cosmoshub-4': {
|
|
1031
|
-
readonly id: "connection-12";
|
|
1032
|
-
readonly client_id: "07-tendermint-4";
|
|
1033
|
-
readonly counterparty: {
|
|
1034
|
-
readonly client_id: "07-tendermint-1116";
|
|
1035
|
-
readonly connection_id: "connection-790";
|
|
1036
|
-
readonly prefix: {
|
|
1037
|
-
readonly key_prefix: "FIXME";
|
|
1038
|
-
};
|
|
1039
|
-
};
|
|
1040
|
-
readonly state: 3;
|
|
1041
|
-
readonly transferChannel: {
|
|
1042
|
-
readonly channelId: "channel-536";
|
|
1043
|
-
readonly portId: "transfer";
|
|
1044
|
-
readonly counterPartyChannelId: "channel-4";
|
|
1045
|
-
readonly counterPartyPortId: "transfer";
|
|
1046
|
-
readonly ordering: 0;
|
|
1047
|
-
readonly state: 3;
|
|
1048
|
-
readonly version: "ics20-1";
|
|
1049
|
-
};
|
|
1050
|
-
};
|
|
1051
|
-
readonly 'dydx-mainnet-1': {
|
|
1052
|
-
readonly id: "connection-57";
|
|
1053
|
-
readonly client_id: "07-tendermint-59";
|
|
1054
|
-
readonly counterparty: {
|
|
1055
|
-
readonly client_id: "07-tendermint-0";
|
|
1056
|
-
readonly connection_id: "connection-0";
|
|
1057
|
-
readonly prefix: {
|
|
1058
|
-
readonly key_prefix: "FIXME";
|
|
1059
|
-
};
|
|
1060
|
-
};
|
|
1061
|
-
readonly state: 3;
|
|
1062
|
-
readonly transferChannel: {
|
|
1063
|
-
readonly channelId: "channel-0";
|
|
1064
|
-
readonly portId: "transfer";
|
|
1065
|
-
readonly counterPartyChannelId: "channel-33";
|
|
1066
|
-
readonly counterPartyPortId: "transfer";
|
|
1067
|
-
readonly ordering: 0;
|
|
1068
|
-
readonly state: 3;
|
|
1069
|
-
readonly version: "ics20-1";
|
|
1070
|
-
};
|
|
1071
|
-
};
|
|
1072
|
-
readonly 'juno-1': {
|
|
1073
|
-
readonly id: "connection-8";
|
|
1074
|
-
readonly client_id: "07-tendermint-3";
|
|
1075
|
-
readonly counterparty: {
|
|
1076
|
-
readonly client_id: "07-tendermint-334";
|
|
1077
|
-
readonly connection_id: "connection-322";
|
|
1078
|
-
readonly prefix: {
|
|
1079
|
-
readonly key_prefix: "FIXME";
|
|
1080
|
-
};
|
|
1081
|
-
};
|
|
1082
|
-
readonly state: 3;
|
|
1083
|
-
readonly transferChannel: {
|
|
1084
|
-
readonly channelId: "channel-224";
|
|
1085
|
-
readonly portId: "transfer";
|
|
1086
|
-
readonly counterPartyChannelId: "channel-3";
|
|
1087
|
-
readonly counterPartyPortId: "transfer";
|
|
1088
|
-
readonly ordering: 0;
|
|
1089
|
-
readonly state: 3;
|
|
1090
|
-
readonly version: "ics20-1";
|
|
1091
|
-
};
|
|
1092
|
-
};
|
|
1093
|
-
readonly 'neutron-1': {
|
|
1094
|
-
readonly id: "connection-34";
|
|
1095
|
-
readonly client_id: "07-tendermint-25";
|
|
1096
|
-
readonly counterparty: {
|
|
1097
|
-
readonly client_id: "07-tendermint-40";
|
|
1098
|
-
readonly connection_id: "connection-31";
|
|
1099
|
-
readonly prefix: {
|
|
1100
|
-
readonly key_prefix: "FIXME";
|
|
1101
|
-
};
|
|
1102
|
-
};
|
|
1103
|
-
readonly state: 3;
|
|
1104
|
-
readonly transferChannel: {
|
|
1105
|
-
readonly channelId: "channel-30";
|
|
1106
|
-
readonly portId: "transfer";
|
|
1107
|
-
readonly counterPartyChannelId: "channel-18";
|
|
1108
|
-
readonly counterPartyPortId: "transfer";
|
|
1109
|
-
readonly ordering: 0;
|
|
1110
|
-
readonly state: 3;
|
|
1111
|
-
readonly version: "ics20-1";
|
|
1112
|
-
};
|
|
1113
|
-
};
|
|
1114
|
-
readonly 'omniflixhub-1': {
|
|
1115
|
-
readonly id: "connection-65";
|
|
1116
|
-
readonly client_id: "07-tendermint-68";
|
|
1117
|
-
readonly counterparty: {
|
|
1118
|
-
readonly client_id: "07-tendermint-51";
|
|
1119
|
-
readonly connection_id: "connection-49";
|
|
1120
|
-
readonly prefix: {
|
|
1121
|
-
readonly key_prefix: "FIXME";
|
|
1122
|
-
};
|
|
1123
|
-
};
|
|
1124
|
-
readonly state: 3;
|
|
1125
|
-
readonly transferChannel: {
|
|
1126
|
-
readonly channelId: "channel-38";
|
|
1127
|
-
readonly portId: "transfer";
|
|
1128
|
-
readonly counterPartyChannelId: "channel-44";
|
|
1129
|
-
readonly counterPartyPortId: "transfer";
|
|
1130
|
-
readonly ordering: 0;
|
|
1131
|
-
readonly state: 3;
|
|
1132
|
-
readonly version: "ics20-1";
|
|
1133
|
-
};
|
|
1134
|
-
};
|
|
1135
|
-
readonly 'osmosis-1': {
|
|
1136
|
-
readonly id: "connection-2";
|
|
1137
|
-
readonly client_id: "07-tendermint-0";
|
|
1138
|
-
readonly counterparty: {
|
|
1139
|
-
readonly client_id: "07-tendermint-2704";
|
|
1140
|
-
readonly connection_id: "connection-2241";
|
|
1141
|
-
readonly prefix: {
|
|
1142
|
-
readonly key_prefix: "FIXME";
|
|
1143
|
-
};
|
|
1144
|
-
};
|
|
1145
|
-
readonly state: 3;
|
|
1146
|
-
readonly transferChannel: {
|
|
1147
|
-
readonly channelId: "channel-750";
|
|
1148
|
-
readonly portId: "transfer";
|
|
1149
|
-
readonly counterPartyChannelId: "channel-1";
|
|
1150
|
-
readonly counterPartyPortId: "transfer";
|
|
1151
|
-
readonly ordering: 0;
|
|
1152
|
-
readonly state: 3;
|
|
1153
|
-
readonly version: "ics20-1";
|
|
1154
|
-
};
|
|
1155
|
-
};
|
|
1156
|
-
readonly 'secret-4': {
|
|
1157
|
-
readonly id: "connection-33";
|
|
1158
|
-
readonly client_id: "07-tendermint-24";
|
|
1159
|
-
readonly counterparty: {
|
|
1160
|
-
readonly client_id: "07-tendermint-170";
|
|
1161
|
-
readonly connection_id: "connection-127";
|
|
1162
|
-
readonly prefix: {
|
|
1163
|
-
readonly key_prefix: "FIXME";
|
|
1164
|
-
};
|
|
1165
|
-
};
|
|
1166
|
-
readonly state: 3;
|
|
1167
|
-
readonly transferChannel: {
|
|
1168
|
-
readonly channelId: "channel-88";
|
|
1169
|
-
readonly portId: "transfer";
|
|
1170
|
-
readonly counterPartyChannelId: "channel-17";
|
|
1171
|
-
readonly counterPartyPortId: "transfer";
|
|
1172
|
-
readonly ordering: 0;
|
|
1173
|
-
readonly state: 3;
|
|
1174
|
-
readonly version: "ics20-1";
|
|
1175
|
-
};
|
|
1176
|
-
};
|
|
1177
|
-
readonly 'stargaze-1': {
|
|
1178
|
-
readonly id: "connection-25";
|
|
1179
|
-
readonly client_id: "07-tendermint-16";
|
|
1180
|
-
readonly counterparty: {
|
|
1181
|
-
readonly client_id: "07-tendermint-287";
|
|
1182
|
-
readonly connection_id: "connection-214";
|
|
1183
|
-
readonly prefix: {
|
|
1184
|
-
readonly key_prefix: "FIXME";
|
|
1185
|
-
};
|
|
1186
|
-
};
|
|
1187
|
-
readonly state: 3;
|
|
1188
|
-
readonly transferChannel: {
|
|
1189
|
-
readonly channelId: "channel-204";
|
|
1190
|
-
readonly portId: "transfer";
|
|
1191
|
-
readonly counterPartyChannelId: "channel-11";
|
|
1192
|
-
readonly counterPartyPortId: "transfer";
|
|
1193
|
-
readonly ordering: 0;
|
|
1194
|
-
readonly state: 3;
|
|
1195
|
-
readonly version: "ics20-1";
|
|
1196
|
-
};
|
|
1197
|
-
};
|
|
1198
|
-
readonly 'umee-1': {
|
|
1199
|
-
readonly id: "connection-74";
|
|
1200
|
-
readonly client_id: "07-tendermint-73";
|
|
1201
|
-
readonly counterparty: {
|
|
1202
|
-
readonly client_id: "07-tendermint-248";
|
|
1203
|
-
readonly connection_id: "connection-210";
|
|
1204
|
-
readonly prefix: {
|
|
1205
|
-
readonly key_prefix: "FIXME";
|
|
1206
|
-
};
|
|
1207
|
-
};
|
|
1208
|
-
readonly state: 3;
|
|
1209
|
-
readonly transferChannel: {
|
|
1210
|
-
readonly channelId: "channel-120";
|
|
1211
|
-
readonly portId: "transfer";
|
|
1212
|
-
readonly counterPartyChannelId: "channel-51";
|
|
1213
|
-
readonly counterPartyPortId: "transfer";
|
|
1214
|
-
readonly ordering: 0;
|
|
1215
|
-
readonly state: 3;
|
|
1216
|
-
readonly version: "ics20-1";
|
|
1217
|
-
};
|
|
1218
|
-
};
|
|
1219
|
-
};
|
|
1220
|
-
};
|
|
1221
|
-
omniflixhub: {
|
|
1222
|
-
readonly chainId: "omniflixhub-1";
|
|
1223
|
-
readonly stakingTokens: readonly [{
|
|
1224
|
-
readonly denom: "uflix";
|
|
1225
|
-
}];
|
|
1226
|
-
readonly icqEnabled: false;
|
|
1227
|
-
readonly connections: {
|
|
1228
|
-
readonly 'agoric-3': {
|
|
1229
|
-
readonly id: "connection-40";
|
|
1230
|
-
readonly client_id: "07-tendermint-47";
|
|
1231
|
-
readonly counterparty: {
|
|
1232
|
-
readonly client_id: "07-tendermint-73";
|
|
1233
|
-
readonly connection_id: "connection-67";
|
|
1234
|
-
readonly prefix: {
|
|
1235
|
-
readonly key_prefix: "FIXME";
|
|
1236
|
-
};
|
|
1237
|
-
};
|
|
1238
|
-
readonly state: 3;
|
|
1239
|
-
readonly transferChannel: {
|
|
1240
|
-
readonly channelId: "channel-58";
|
|
1241
|
-
readonly portId: "transfer";
|
|
1242
|
-
readonly counterPartyChannelId: "channel-30";
|
|
1243
|
-
readonly counterPartyPortId: "transfer";
|
|
1244
|
-
readonly ordering: 0;
|
|
1245
|
-
readonly state: 3;
|
|
1246
|
-
readonly version: "ics20-1";
|
|
1247
|
-
};
|
|
1248
|
-
};
|
|
1249
|
-
readonly 'cosmoshub-4': {
|
|
1250
|
-
readonly id: "connection-19";
|
|
1251
|
-
readonly client_id: "07-tendermint-23";
|
|
1252
|
-
readonly counterparty: {
|
|
1253
|
-
readonly client_id: "07-tendermint-656";
|
|
1254
|
-
readonly connection_id: "connection-501";
|
|
1255
|
-
readonly prefix: {
|
|
1256
|
-
readonly key_prefix: "FIXME";
|
|
1257
|
-
};
|
|
1258
|
-
};
|
|
1259
|
-
readonly state: 3;
|
|
1260
|
-
readonly transferChannel: {
|
|
1261
|
-
readonly channelId: "channel-306";
|
|
1262
|
-
readonly portId: "transfer";
|
|
1263
|
-
readonly counterPartyChannelId: "channel-12";
|
|
1264
|
-
readonly counterPartyPortId: "transfer";
|
|
1265
|
-
readonly ordering: 0;
|
|
1266
|
-
readonly state: 3;
|
|
1267
|
-
readonly version: "ics20-1";
|
|
1268
|
-
};
|
|
1269
|
-
};
|
|
1270
|
-
readonly 'noble-1': {
|
|
1271
|
-
readonly id: "connection-49";
|
|
1272
|
-
readonly client_id: "07-tendermint-51";
|
|
1273
|
-
readonly counterparty: {
|
|
1274
|
-
readonly client_id: "07-tendermint-68";
|
|
1275
|
-
readonly connection_id: "connection-65";
|
|
1276
|
-
readonly prefix: {
|
|
1277
|
-
readonly key_prefix: "FIXME";
|
|
1278
|
-
};
|
|
1279
|
-
};
|
|
1280
|
-
readonly state: 3;
|
|
1281
|
-
readonly transferChannel: {
|
|
1282
|
-
readonly channelId: "channel-44";
|
|
1283
|
-
readonly portId: "transfer";
|
|
1284
|
-
readonly counterPartyChannelId: "channel-38";
|
|
1285
|
-
readonly counterPartyPortId: "transfer";
|
|
1286
|
-
readonly ordering: 0;
|
|
1287
|
-
readonly state: 3;
|
|
1288
|
-
readonly version: "ics20-1";
|
|
1289
|
-
};
|
|
1290
|
-
};
|
|
1291
|
-
readonly 'osmosis-1': {
|
|
1292
|
-
readonly id: "connection-8";
|
|
1293
|
-
readonly client_id: "07-tendermint-8";
|
|
1294
|
-
readonly counterparty: {
|
|
1295
|
-
readonly client_id: "07-tendermint-1829";
|
|
1296
|
-
readonly connection_id: "connection-1431";
|
|
1297
|
-
readonly prefix: {
|
|
1298
|
-
readonly key_prefix: "FIXME";
|
|
1299
|
-
};
|
|
1300
|
-
};
|
|
1301
|
-
readonly state: 3;
|
|
1302
|
-
readonly transferChannel: {
|
|
1303
|
-
readonly channelId: "channel-199";
|
|
1304
|
-
readonly portId: "transfer";
|
|
1305
|
-
readonly counterPartyChannelId: "channel-1";
|
|
1306
|
-
readonly counterPartyPortId: "transfer";
|
|
1307
|
-
readonly ordering: 0;
|
|
1308
|
-
readonly state: 3;
|
|
1309
|
-
readonly version: "ics20-1";
|
|
1310
|
-
};
|
|
1311
|
-
};
|
|
1312
|
-
};
|
|
1313
|
-
};
|
|
1314
|
-
osmosis: {
|
|
1315
|
-
readonly chainId: "osmosis-1";
|
|
1316
|
-
readonly stakingTokens: readonly [{
|
|
1317
|
-
readonly denom: "uosmo";
|
|
1318
|
-
}];
|
|
1319
|
-
readonly icqEnabled: true;
|
|
1320
|
-
readonly connections: {
|
|
1321
|
-
readonly 'agoric-3': {
|
|
1322
|
-
readonly id: "connection-1649";
|
|
1323
|
-
readonly client_id: "07-tendermint-2109";
|
|
1324
|
-
readonly counterparty: {
|
|
1325
|
-
readonly client_id: "07-tendermint-1";
|
|
1326
|
-
readonly connection_id: "connection-1";
|
|
1327
|
-
readonly prefix: {
|
|
1328
|
-
readonly key_prefix: "FIXME";
|
|
1329
|
-
};
|
|
1330
|
-
};
|
|
1331
|
-
readonly state: 3;
|
|
1332
|
-
readonly transferChannel: {
|
|
1333
|
-
readonly channelId: "channel-1";
|
|
1334
|
-
readonly portId: "transfer";
|
|
1335
|
-
readonly counterPartyChannelId: "channel-320";
|
|
1336
|
-
readonly counterPartyPortId: "transfer";
|
|
1337
|
-
readonly ordering: 0;
|
|
1338
|
-
readonly state: 3;
|
|
1339
|
-
readonly version: "ics20-1";
|
|
1340
|
-
};
|
|
1341
|
-
};
|
|
1342
|
-
readonly celestia: {
|
|
1343
|
-
readonly id: "connection-2503";
|
|
1344
|
-
readonly client_id: "07-tendermint-3012";
|
|
1345
|
-
readonly counterparty: {
|
|
1346
|
-
readonly client_id: "07-tendermint-10";
|
|
1347
|
-
readonly connection_id: "connection-2";
|
|
1348
|
-
readonly prefix: {
|
|
1349
|
-
readonly key_prefix: "FIXME";
|
|
1350
|
-
};
|
|
1351
|
-
};
|
|
1352
|
-
readonly state: 3;
|
|
1353
|
-
readonly transferChannel: {
|
|
1354
|
-
readonly channelId: "channel-2";
|
|
1355
|
-
readonly portId: "transfer";
|
|
1356
|
-
readonly counterPartyChannelId: "channel-6994";
|
|
1357
|
-
readonly counterPartyPortId: "transfer";
|
|
1358
|
-
readonly ordering: 0;
|
|
1359
|
-
readonly state: 3;
|
|
1360
|
-
readonly version: "ics20-1";
|
|
1361
|
-
};
|
|
1362
|
-
};
|
|
1363
|
-
readonly 'cosmoshub-4': {
|
|
1364
|
-
readonly id: "connection-1";
|
|
1365
|
-
readonly client_id: "07-tendermint-1";
|
|
1366
|
-
readonly counterparty: {
|
|
1367
|
-
readonly client_id: "07-tendermint-259";
|
|
1368
|
-
readonly connection_id: "connection-257";
|
|
1369
|
-
readonly prefix: {
|
|
1370
|
-
readonly key_prefix: "FIXME";
|
|
1371
|
-
};
|
|
1372
|
-
};
|
|
1373
|
-
readonly state: 3;
|
|
1374
|
-
readonly transferChannel: {
|
|
1375
|
-
readonly channelId: "channel-141";
|
|
1376
|
-
readonly portId: "transfer";
|
|
1377
|
-
readonly counterPartyChannelId: "channel-0";
|
|
1378
|
-
readonly counterPartyPortId: "transfer";
|
|
1379
|
-
readonly ordering: 0;
|
|
1380
|
-
readonly state: 3;
|
|
1381
|
-
readonly version: "ics20-1";
|
|
1382
|
-
};
|
|
1383
|
-
};
|
|
1384
|
-
readonly 'dydx-mainnet-1': {
|
|
1385
|
-
readonly id: "connection-2500";
|
|
1386
|
-
readonly client_id: "07-tendermint-3009";
|
|
1387
|
-
readonly counterparty: {
|
|
1388
|
-
readonly client_id: "07-tendermint-3";
|
|
1389
|
-
readonly connection_id: "connection-7";
|
|
1390
|
-
readonly prefix: {
|
|
1391
|
-
readonly key_prefix: "FIXME";
|
|
1392
|
-
};
|
|
1393
|
-
};
|
|
1394
|
-
readonly state: 3;
|
|
1395
|
-
readonly transferChannel: {
|
|
1396
|
-
readonly channelId: "channel-3";
|
|
1397
|
-
readonly portId: "transfer";
|
|
1398
|
-
readonly counterPartyChannelId: "channel-6787";
|
|
1399
|
-
readonly counterPartyPortId: "transfer";
|
|
1400
|
-
readonly ordering: 0;
|
|
1401
|
-
readonly state: 3;
|
|
1402
|
-
readonly version: "ics20-1";
|
|
1403
|
-
};
|
|
1404
|
-
};
|
|
1405
|
-
readonly 'juno-1': {
|
|
1406
|
-
readonly id: "connection-1142";
|
|
1407
|
-
readonly client_id: "07-tendermint-1457";
|
|
1408
|
-
readonly counterparty: {
|
|
1409
|
-
readonly client_id: "07-tendermint-0";
|
|
1410
|
-
readonly connection_id: "connection-0";
|
|
1411
|
-
readonly prefix: {
|
|
1412
|
-
readonly key_prefix: "FIXME";
|
|
1413
|
-
};
|
|
1414
|
-
};
|
|
1415
|
-
readonly state: 3;
|
|
1416
|
-
readonly transferChannel: {
|
|
1417
|
-
readonly channelId: "channel-0";
|
|
1418
|
-
readonly portId: "transfer";
|
|
1419
|
-
readonly counterPartyChannelId: "channel-42";
|
|
1420
|
-
readonly counterPartyPortId: "transfer";
|
|
1421
|
-
readonly ordering: 0;
|
|
1422
|
-
readonly state: 3;
|
|
1423
|
-
readonly version: "ics20-1";
|
|
1424
|
-
};
|
|
1425
|
-
};
|
|
1426
|
-
readonly 'neutron-1': {
|
|
1427
|
-
readonly id: "connection-2338";
|
|
1428
|
-
readonly client_id: "07-tendermint-2823";
|
|
1429
|
-
readonly counterparty: {
|
|
1430
|
-
readonly client_id: "07-tendermint-19";
|
|
1431
|
-
readonly connection_id: "connection-18";
|
|
1432
|
-
readonly prefix: {
|
|
1433
|
-
readonly key_prefix: "FIXME";
|
|
1434
|
-
};
|
|
1435
|
-
};
|
|
1436
|
-
readonly state: 3;
|
|
1437
|
-
readonly transferChannel: {
|
|
1438
|
-
readonly channelId: "channel-10";
|
|
1439
|
-
readonly portId: "transfer";
|
|
1440
|
-
readonly counterPartyChannelId: "channel-874";
|
|
1441
|
-
readonly counterPartyPortId: "transfer";
|
|
1442
|
-
readonly ordering: 0;
|
|
1443
|
-
readonly state: 3;
|
|
1444
|
-
readonly version: "ics20-1";
|
|
1445
|
-
};
|
|
1446
|
-
};
|
|
1447
|
-
readonly 'noble-1': {
|
|
1448
|
-
readonly id: "connection-2241";
|
|
1449
|
-
readonly client_id: "07-tendermint-2704";
|
|
1450
|
-
readonly counterparty: {
|
|
1451
|
-
readonly client_id: "07-tendermint-0";
|
|
1452
|
-
readonly connection_id: "connection-2";
|
|
1453
|
-
readonly prefix: {
|
|
1454
|
-
readonly key_prefix: "FIXME";
|
|
1455
|
-
};
|
|
1456
|
-
};
|
|
1457
|
-
readonly state: 3;
|
|
1458
|
-
readonly transferChannel: {
|
|
1459
|
-
readonly channelId: "channel-1";
|
|
1460
|
-
readonly portId: "transfer";
|
|
1461
|
-
readonly counterPartyChannelId: "channel-750";
|
|
1462
|
-
readonly counterPartyPortId: "transfer";
|
|
1463
|
-
readonly ordering: 0;
|
|
1464
|
-
readonly state: 3;
|
|
1465
|
-
readonly version: "ics20-1";
|
|
1466
|
-
};
|
|
1467
|
-
};
|
|
1468
|
-
readonly 'omniflixhub-1': {
|
|
1469
|
-
readonly id: "connection-1431";
|
|
1470
|
-
readonly client_id: "07-tendermint-1829";
|
|
1471
|
-
readonly counterparty: {
|
|
1472
|
-
readonly client_id: "07-tendermint-8";
|
|
1473
|
-
readonly connection_id: "connection-8";
|
|
1474
|
-
readonly prefix: {
|
|
1475
|
-
readonly key_prefix: "FIXME";
|
|
1476
|
-
};
|
|
1477
|
-
};
|
|
1478
|
-
readonly state: 3;
|
|
1479
|
-
readonly transferChannel: {
|
|
1480
|
-
readonly channelId: "channel-1";
|
|
1481
|
-
readonly portId: "transfer";
|
|
1482
|
-
readonly counterPartyChannelId: "channel-199";
|
|
1483
|
-
readonly counterPartyPortId: "transfer";
|
|
1484
|
-
readonly ordering: 0;
|
|
1485
|
-
readonly state: 3;
|
|
1486
|
-
readonly version: "ics20-1";
|
|
1487
|
-
};
|
|
1488
|
-
};
|
|
1489
|
-
readonly 'secret-4': {
|
|
1490
|
-
readonly id: "connection-1244";
|
|
1491
|
-
readonly client_id: "07-tendermint-1588";
|
|
1492
|
-
readonly counterparty: {
|
|
1493
|
-
readonly client_id: "07-tendermint-2";
|
|
1494
|
-
readonly connection_id: "connection-1";
|
|
1495
|
-
readonly prefix: {
|
|
1496
|
-
readonly key_prefix: "FIXME";
|
|
1497
|
-
};
|
|
1498
|
-
};
|
|
1499
|
-
readonly state: 3;
|
|
1500
|
-
readonly transferChannel: {
|
|
1501
|
-
readonly channelId: "channel-1";
|
|
1502
|
-
readonly portId: "transfer";
|
|
1503
|
-
readonly counterPartyChannelId: "channel-88";
|
|
1504
|
-
readonly counterPartyPortId: "transfer";
|
|
1505
|
-
readonly ordering: 0;
|
|
1506
|
-
readonly state: 3;
|
|
1507
|
-
readonly version: "ics20-1";
|
|
1508
|
-
};
|
|
1509
|
-
};
|
|
1510
|
-
readonly 'stargaze-1': {
|
|
1511
|
-
readonly id: "connection-1223";
|
|
1512
|
-
readonly client_id: "07-tendermint-1562";
|
|
1513
|
-
readonly counterparty: {
|
|
1514
|
-
readonly client_id: "07-tendermint-0";
|
|
1515
|
-
readonly connection_id: "connection-0";
|
|
1516
|
-
readonly prefix: {
|
|
1517
|
-
readonly key_prefix: "FIXME";
|
|
1518
|
-
};
|
|
1519
|
-
};
|
|
1520
|
-
readonly state: 3;
|
|
1521
|
-
readonly transferChannel: {
|
|
1522
|
-
readonly channelId: "channel-0";
|
|
1523
|
-
readonly portId: "transfer";
|
|
1524
|
-
readonly counterPartyChannelId: "channel-75";
|
|
1525
|
-
readonly counterPartyPortId: "transfer";
|
|
1526
|
-
readonly ordering: 0;
|
|
1527
|
-
readonly state: 3;
|
|
1528
|
-
readonly version: "ics20-1";
|
|
1529
|
-
};
|
|
1530
|
-
};
|
|
1531
|
-
readonly 'stride-1': {
|
|
1532
|
-
readonly id: "connection-1657";
|
|
1533
|
-
readonly client_id: "07-tendermint-2119";
|
|
1534
|
-
readonly counterparty: {
|
|
1535
|
-
readonly client_id: "07-tendermint-1";
|
|
1536
|
-
readonly connection_id: "connection-2";
|
|
1537
|
-
readonly prefix: {
|
|
1538
|
-
readonly key_prefix: "FIXME";
|
|
1539
|
-
};
|
|
1540
|
-
};
|
|
1541
|
-
readonly state: 3;
|
|
1542
|
-
readonly transferChannel: {
|
|
1543
|
-
readonly channelId: "channel-5";
|
|
1544
|
-
readonly portId: "transfer";
|
|
1545
|
-
readonly counterPartyChannelId: "channel-326";
|
|
1546
|
-
readonly counterPartyPortId: "transfer";
|
|
1547
|
-
readonly ordering: 0;
|
|
1548
|
-
readonly state: 3;
|
|
1549
|
-
readonly version: "ics20-1";
|
|
1550
|
-
};
|
|
1551
|
-
};
|
|
1552
|
-
readonly 'umee-1': {
|
|
1553
|
-
readonly id: "connection-1410";
|
|
1554
|
-
readonly client_id: "07-tendermint-1805";
|
|
1555
|
-
readonly counterparty: {
|
|
1556
|
-
readonly client_id: "07-tendermint-6";
|
|
1557
|
-
readonly connection_id: "connection-0";
|
|
1558
|
-
readonly prefix: {
|
|
1559
|
-
readonly key_prefix: "FIXME";
|
|
1560
|
-
};
|
|
1561
|
-
};
|
|
1562
|
-
readonly state: 3;
|
|
1563
|
-
readonly transferChannel: {
|
|
1564
|
-
readonly channelId: "channel-0";
|
|
1565
|
-
readonly portId: "transfer";
|
|
1566
|
-
readonly counterPartyChannelId: "channel-184";
|
|
1567
|
-
readonly counterPartyPortId: "transfer";
|
|
1568
|
-
readonly ordering: 0;
|
|
1569
|
-
readonly state: 3;
|
|
1570
|
-
readonly version: "ics20-1";
|
|
1571
|
-
};
|
|
1572
|
-
};
|
|
1573
|
-
};
|
|
1574
|
-
};
|
|
1575
|
-
secretnetwork: {
|
|
1576
|
-
readonly chainId: "secret-4";
|
|
1577
|
-
readonly stakingTokens: readonly [{
|
|
1578
|
-
readonly denom: "uscrt";
|
|
1579
|
-
}];
|
|
1580
|
-
readonly icqEnabled: false;
|
|
1581
|
-
readonly connections: {
|
|
1582
|
-
readonly 'agoric-3': {
|
|
1583
|
-
readonly id: "connection-80";
|
|
1584
|
-
readonly client_id: "07-tendermint-111";
|
|
1585
|
-
readonly counterparty: {
|
|
1586
|
-
readonly client_id: "07-tendermint-17";
|
|
1587
|
-
readonly connection_id: "connection-17";
|
|
1588
|
-
readonly prefix: {
|
|
1589
|
-
readonly key_prefix: "FIXME";
|
|
1590
|
-
};
|
|
1591
|
-
};
|
|
1592
|
-
readonly state: 3;
|
|
1593
|
-
readonly transferChannel: {
|
|
1594
|
-
readonly channelId: "channel-10";
|
|
1595
|
-
readonly portId: "transfer";
|
|
1596
|
-
readonly counterPartyChannelId: "channel-51";
|
|
1597
|
-
readonly counterPartyPortId: "transfer";
|
|
1598
|
-
readonly ordering: 0;
|
|
1599
|
-
readonly state: 3;
|
|
1600
|
-
readonly version: "ics20-1";
|
|
1601
|
-
};
|
|
1602
|
-
};
|
|
1603
|
-
readonly celestia: {
|
|
1604
|
-
readonly id: "connection-131";
|
|
1605
|
-
readonly client_id: "07-tendermint-174";
|
|
1606
|
-
readonly counterparty: {
|
|
1607
|
-
readonly client_id: "07-tendermint-52";
|
|
1608
|
-
readonly connection_id: "connection-15";
|
|
1609
|
-
readonly prefix: {
|
|
1610
|
-
readonly key_prefix: "FIXME";
|
|
1611
|
-
};
|
|
1612
|
-
};
|
|
1613
|
-
readonly state: 3;
|
|
1614
|
-
readonly transferChannel: {
|
|
1615
|
-
readonly channelId: "channel-14";
|
|
1616
|
-
readonly portId: "transfer";
|
|
1617
|
-
readonly counterPartyChannelId: "channel-91";
|
|
1618
|
-
readonly counterPartyPortId: "transfer";
|
|
1619
|
-
readonly ordering: 0;
|
|
1620
|
-
readonly state: 3;
|
|
1621
|
-
readonly version: "ics20-1";
|
|
1622
|
-
};
|
|
1623
|
-
};
|
|
1624
|
-
readonly 'cosmoshub-4': {
|
|
1625
|
-
readonly id: "connection-0";
|
|
1626
|
-
readonly client_id: "07-tendermint-1";
|
|
1627
|
-
readonly counterparty: {
|
|
1628
|
-
readonly client_id: "07-tendermint-492";
|
|
1629
|
-
readonly connection_id: "connection-401";
|
|
1630
|
-
readonly prefix: {
|
|
1631
|
-
readonly key_prefix: "FIXME";
|
|
1632
|
-
};
|
|
1633
|
-
};
|
|
1634
|
-
readonly state: 3;
|
|
1635
|
-
readonly transferChannel: {
|
|
1636
|
-
readonly channelId: "channel-235";
|
|
1637
|
-
readonly portId: "transfer";
|
|
1638
|
-
readonly counterPartyChannelId: "channel-0";
|
|
1639
|
-
readonly counterPartyPortId: "transfer";
|
|
1640
|
-
readonly ordering: 0;
|
|
1641
|
-
readonly state: 3;
|
|
1642
|
-
readonly version: "ics20-1";
|
|
1643
|
-
};
|
|
1644
|
-
};
|
|
1645
|
-
readonly 'juno-1': {
|
|
1646
|
-
readonly id: "connection-9";
|
|
1647
|
-
readonly client_id: "07-tendermint-23";
|
|
1648
|
-
readonly counterparty: {
|
|
1649
|
-
readonly client_id: "07-tendermint-108";
|
|
1650
|
-
readonly connection_id: "connection-68";
|
|
1651
|
-
readonly prefix: {
|
|
1652
|
-
readonly key_prefix: "FIXME";
|
|
1653
|
-
};
|
|
1654
|
-
};
|
|
1655
|
-
readonly state: 3;
|
|
1656
|
-
readonly transferChannel: {
|
|
1657
|
-
readonly channelId: "channel-48";
|
|
1658
|
-
readonly portId: "transfer";
|
|
1659
|
-
readonly counterPartyChannelId: "channel-8";
|
|
1660
|
-
readonly counterPartyPortId: "transfer";
|
|
1661
|
-
readonly ordering: 0;
|
|
1662
|
-
readonly state: 3;
|
|
1663
|
-
readonly version: "ics20-1";
|
|
1664
|
-
};
|
|
1665
|
-
};
|
|
1666
|
-
readonly 'neutron-1': {
|
|
1667
|
-
readonly id: "connection-192";
|
|
1668
|
-
readonly client_id: "07-tendermint-199";
|
|
1669
|
-
readonly counterparty: {
|
|
1670
|
-
readonly client_id: "07-tendermint-85";
|
|
1671
|
-
readonly connection_id: "connection-63";
|
|
1672
|
-
readonly prefix: {
|
|
1673
|
-
readonly key_prefix: "FIXME";
|
|
1674
|
-
};
|
|
1675
|
-
};
|
|
1676
|
-
readonly state: 3;
|
|
1677
|
-
readonly transferChannel: {
|
|
1678
|
-
readonly channelId: "channel-1551";
|
|
1679
|
-
readonly portId: "transfer";
|
|
1680
|
-
readonly counterPartyChannelId: "channel-144";
|
|
1681
|
-
readonly counterPartyPortId: "transfer";
|
|
1682
|
-
readonly ordering: 0;
|
|
1683
|
-
readonly state: 3;
|
|
1684
|
-
readonly version: "ics20-1";
|
|
1685
|
-
};
|
|
1686
|
-
};
|
|
1687
|
-
readonly 'noble-1': {
|
|
1688
|
-
readonly id: "connection-127";
|
|
1689
|
-
readonly client_id: "07-tendermint-170";
|
|
1690
|
-
readonly counterparty: {
|
|
1691
|
-
readonly client_id: "07-tendermint-24";
|
|
1692
|
-
readonly connection_id: "connection-33";
|
|
1693
|
-
readonly prefix: {
|
|
1694
|
-
readonly key_prefix: "FIXME";
|
|
1695
|
-
};
|
|
1696
|
-
};
|
|
1697
|
-
readonly state: 3;
|
|
1698
|
-
readonly transferChannel: {
|
|
1699
|
-
readonly channelId: "channel-17";
|
|
1700
|
-
readonly portId: "transfer";
|
|
1701
|
-
readonly counterPartyChannelId: "channel-88";
|
|
1702
|
-
readonly counterPartyPortId: "transfer";
|
|
1703
|
-
readonly ordering: 0;
|
|
1704
|
-
readonly state: 3;
|
|
1705
|
-
readonly version: "ics20-1";
|
|
1706
|
-
};
|
|
1707
|
-
};
|
|
1708
|
-
readonly 'osmosis-1': {
|
|
1709
|
-
readonly id: "connection-1";
|
|
1710
|
-
readonly client_id: "07-tendermint-2";
|
|
1711
|
-
readonly counterparty: {
|
|
1712
|
-
readonly client_id: "07-tendermint-1588";
|
|
1713
|
-
readonly connection_id: "connection-1244";
|
|
1714
|
-
readonly prefix: {
|
|
1715
|
-
readonly key_prefix: "FIXME";
|
|
1716
|
-
};
|
|
1717
|
-
};
|
|
1718
|
-
readonly state: 3;
|
|
1719
|
-
readonly transferChannel: {
|
|
1720
|
-
readonly channelId: "channel-88";
|
|
1721
|
-
readonly portId: "transfer";
|
|
1722
|
-
readonly counterPartyChannelId: "channel-1";
|
|
1723
|
-
readonly counterPartyPortId: "transfer";
|
|
1724
|
-
readonly ordering: 0;
|
|
1725
|
-
readonly state: 3;
|
|
1726
|
-
readonly version: "ics20-1";
|
|
1727
|
-
};
|
|
1728
|
-
};
|
|
1729
|
-
readonly 'stargaze-1': {
|
|
1730
|
-
readonly id: "connection-25";
|
|
1731
|
-
readonly client_id: "07-tendermint-43";
|
|
1732
|
-
readonly counterparty: {
|
|
1733
|
-
readonly client_id: "07-tendermint-177";
|
|
1734
|
-
readonly connection_id: "connection-110";
|
|
1735
|
-
readonly prefix: {
|
|
1736
|
-
readonly key_prefix: "FIXME";
|
|
1737
|
-
};
|
|
1738
|
-
};
|
|
1739
|
-
readonly state: 3;
|
|
1740
|
-
readonly transferChannel: {
|
|
1741
|
-
readonly channelId: "channel-48";
|
|
1742
|
-
readonly portId: "transfer";
|
|
1743
|
-
readonly counterPartyChannelId: "channel-19";
|
|
1744
|
-
readonly counterPartyPortId: "transfer";
|
|
1745
|
-
readonly ordering: 0;
|
|
1746
|
-
readonly state: 3;
|
|
1747
|
-
readonly version: "ics20-1";
|
|
1748
|
-
};
|
|
1749
|
-
};
|
|
1750
|
-
readonly 'stride-1': {
|
|
1751
|
-
readonly id: "connection-40";
|
|
1752
|
-
readonly client_id: "07-tendermint-75";
|
|
1753
|
-
readonly counterparty: {
|
|
1754
|
-
readonly client_id: "07-tendermint-37";
|
|
1755
|
-
readonly connection_id: "connection-25";
|
|
1756
|
-
readonly prefix: {
|
|
1757
|
-
readonly key_prefix: "FIXME";
|
|
1758
|
-
};
|
|
1759
|
-
};
|
|
1760
|
-
readonly state: 3;
|
|
1761
|
-
readonly transferChannel: {
|
|
1762
|
-
readonly channelId: "channel-40";
|
|
1763
|
-
readonly portId: "transfer";
|
|
1764
|
-
readonly counterPartyChannelId: "channel-37";
|
|
1765
|
-
readonly counterPartyPortId: "transfer";
|
|
1766
|
-
readonly ordering: 0;
|
|
1767
|
-
readonly state: 3;
|
|
1768
|
-
readonly version: "ics20-1";
|
|
1769
|
-
};
|
|
1770
|
-
};
|
|
1771
|
-
readonly 'umee-1': {
|
|
1772
|
-
readonly id: "connection-188";
|
|
1773
|
-
readonly client_id: "07-tendermint-193";
|
|
1774
|
-
readonly counterparty: {
|
|
1775
|
-
readonly client_id: "07-tendermint-249";
|
|
1776
|
-
readonly connection_id: "connection-213";
|
|
1777
|
-
readonly prefix: {
|
|
1778
|
-
readonly key_prefix: "FIXME";
|
|
1779
|
-
};
|
|
1780
|
-
};
|
|
1781
|
-
readonly state: 3;
|
|
1782
|
-
readonly transferChannel: {
|
|
1783
|
-
readonly channelId: "channel-123";
|
|
1784
|
-
readonly portId: "transfer";
|
|
1785
|
-
readonly counterPartyChannelId: "channel-126";
|
|
1786
|
-
readonly counterPartyPortId: "transfer";
|
|
1787
|
-
readonly ordering: 0;
|
|
1788
|
-
readonly state: 3;
|
|
1789
|
-
readonly version: "ics20-1";
|
|
1790
|
-
};
|
|
1791
|
-
};
|
|
1792
|
-
};
|
|
1793
|
-
};
|
|
1794
|
-
stargaze: {
|
|
1795
|
-
readonly chainId: "stargaze-1";
|
|
1796
|
-
readonly stakingTokens: readonly [{
|
|
1797
|
-
readonly denom: "ustars";
|
|
1798
|
-
}];
|
|
1799
|
-
readonly icqEnabled: false;
|
|
1800
|
-
readonly connections: {
|
|
1801
|
-
readonly celestia: {
|
|
1802
|
-
readonly id: "connection-296";
|
|
1803
|
-
readonly client_id: "07-tendermint-359";
|
|
1804
|
-
readonly counterparty: {
|
|
1805
|
-
readonly client_id: "07-tendermint-86";
|
|
1806
|
-
readonly connection_id: "connection-56";
|
|
1807
|
-
readonly prefix: {
|
|
1808
|
-
readonly key_prefix: "FIXME";
|
|
1809
|
-
};
|
|
1810
|
-
};
|
|
1811
|
-
readonly state: 3;
|
|
1812
|
-
readonly transferChannel: {
|
|
1813
|
-
readonly channelId: "channel-33";
|
|
1814
|
-
readonly portId: "transfer";
|
|
1815
|
-
readonly counterPartyChannelId: "channel-291";
|
|
1816
|
-
readonly counterPartyPortId: "transfer";
|
|
1817
|
-
readonly ordering: 0;
|
|
1818
|
-
readonly state: 3;
|
|
1819
|
-
readonly version: "ics20-1";
|
|
1820
|
-
};
|
|
1821
|
-
};
|
|
1822
|
-
readonly 'cosmoshub-4': {
|
|
1823
|
-
readonly id: "connection-256";
|
|
1824
|
-
readonly client_id: "07-tendermint-320";
|
|
1825
|
-
readonly counterparty: {
|
|
1826
|
-
readonly client_id: "07-tendermint-1188";
|
|
1827
|
-
readonly connection_id: "connection-918";
|
|
1828
|
-
readonly prefix: {
|
|
1829
|
-
readonly key_prefix: "FIXME";
|
|
1830
|
-
};
|
|
1831
|
-
};
|
|
1832
|
-
readonly state: 3;
|
|
1833
|
-
readonly transferChannel: {
|
|
1834
|
-
readonly channelId: "channel-730";
|
|
1835
|
-
readonly portId: "transfer";
|
|
1836
|
-
readonly counterPartyChannelId: "channel-239";
|
|
1837
|
-
readonly counterPartyPortId: "transfer";
|
|
1838
|
-
readonly ordering: 0;
|
|
1839
|
-
readonly state: 3;
|
|
1840
|
-
readonly version: "ics20-1";
|
|
1841
|
-
};
|
|
1842
|
-
};
|
|
1843
|
-
readonly 'juno-1': {
|
|
1844
|
-
readonly id: "connection-11";
|
|
1845
|
-
readonly client_id: "07-tendermint-13";
|
|
1846
|
-
readonly counterparty: {
|
|
1847
|
-
readonly client_id: "07-tendermint-44";
|
|
1848
|
-
readonly connection_id: "connection-30";
|
|
1849
|
-
readonly prefix: {
|
|
1850
|
-
readonly key_prefix: "FIXME";
|
|
1851
|
-
};
|
|
1852
|
-
};
|
|
1853
|
-
readonly state: 3;
|
|
1854
|
-
readonly transferChannel: {
|
|
1855
|
-
readonly channelId: "channel-20";
|
|
1856
|
-
readonly portId: "transfer";
|
|
1857
|
-
readonly counterPartyChannelId: "channel-5";
|
|
1858
|
-
readonly counterPartyPortId: "transfer";
|
|
1859
|
-
readonly ordering: 0;
|
|
1860
|
-
readonly state: 3;
|
|
1861
|
-
readonly version: "ics20-1";
|
|
1862
|
-
};
|
|
1863
|
-
};
|
|
1864
|
-
readonly 'neutron-1': {
|
|
1865
|
-
readonly id: "connection-211";
|
|
1866
|
-
readonly client_id: "07-tendermint-283";
|
|
1867
|
-
readonly counterparty: {
|
|
1868
|
-
readonly client_id: "07-tendermint-31";
|
|
1869
|
-
readonly connection_id: "connection-23";
|
|
1870
|
-
readonly prefix: {
|
|
1871
|
-
readonly key_prefix: "FIXME";
|
|
1872
|
-
};
|
|
1873
|
-
};
|
|
1874
|
-
readonly state: 3;
|
|
1875
|
-
readonly transferChannel: {
|
|
1876
|
-
readonly channelId: "channel-18";
|
|
1877
|
-
readonly portId: "transfer";
|
|
1878
|
-
readonly counterPartyChannelId: "channel-191";
|
|
1879
|
-
readonly counterPartyPortId: "transfer";
|
|
1880
|
-
readonly ordering: 0;
|
|
1881
|
-
readonly state: 3;
|
|
1882
|
-
readonly version: "ics20-1";
|
|
1883
|
-
};
|
|
1884
|
-
};
|
|
1885
|
-
readonly 'noble-1': {
|
|
1886
|
-
readonly id: "connection-214";
|
|
1887
|
-
readonly client_id: "07-tendermint-287";
|
|
1888
|
-
readonly counterparty: {
|
|
1889
|
-
readonly client_id: "07-tendermint-16";
|
|
1890
|
-
readonly connection_id: "connection-25";
|
|
1891
|
-
readonly prefix: {
|
|
1892
|
-
readonly key_prefix: "FIXME";
|
|
1893
|
-
};
|
|
1894
|
-
};
|
|
1895
|
-
readonly state: 3;
|
|
1896
|
-
readonly transferChannel: {
|
|
1897
|
-
readonly channelId: "channel-11";
|
|
1898
|
-
readonly portId: "transfer";
|
|
1899
|
-
readonly counterPartyChannelId: "channel-204";
|
|
1900
|
-
readonly counterPartyPortId: "transfer";
|
|
1901
|
-
readonly ordering: 0;
|
|
1902
|
-
readonly state: 3;
|
|
1903
|
-
readonly version: "ics20-1";
|
|
1904
|
-
};
|
|
1905
|
-
};
|
|
1906
|
-
readonly 'osmosis-1': {
|
|
1907
|
-
readonly id: "connection-0";
|
|
1908
|
-
readonly client_id: "07-tendermint-0";
|
|
1909
|
-
readonly counterparty: {
|
|
1910
|
-
readonly client_id: "07-tendermint-1562";
|
|
1911
|
-
readonly connection_id: "connection-1223";
|
|
1912
|
-
readonly prefix: {
|
|
1913
|
-
readonly key_prefix: "FIXME";
|
|
1914
|
-
};
|
|
1915
|
-
};
|
|
1916
|
-
readonly state: 3;
|
|
1917
|
-
readonly transferChannel: {
|
|
1918
|
-
readonly channelId: "channel-75";
|
|
1919
|
-
readonly portId: "transfer";
|
|
1920
|
-
readonly counterPartyChannelId: "channel-0";
|
|
1921
|
-
readonly counterPartyPortId: "transfer";
|
|
1922
|
-
readonly ordering: 0;
|
|
1923
|
-
readonly state: 3;
|
|
1924
|
-
readonly version: "ics20-1";
|
|
1925
|
-
};
|
|
1926
|
-
};
|
|
1927
|
-
readonly 'secret-4': {
|
|
1928
|
-
readonly id: "connection-110";
|
|
1929
|
-
readonly client_id: "07-tendermint-177";
|
|
1930
|
-
readonly counterparty: {
|
|
1931
|
-
readonly client_id: "07-tendermint-43";
|
|
1932
|
-
readonly connection_id: "connection-25";
|
|
1933
|
-
readonly prefix: {
|
|
1934
|
-
readonly key_prefix: "FIXME";
|
|
1935
|
-
};
|
|
1936
|
-
};
|
|
1937
|
-
readonly state: 3;
|
|
1938
|
-
readonly transferChannel: {
|
|
1939
|
-
readonly channelId: "channel-19";
|
|
1940
|
-
readonly portId: "transfer";
|
|
1941
|
-
readonly counterPartyChannelId: "channel-48";
|
|
1942
|
-
readonly counterPartyPortId: "transfer";
|
|
1943
|
-
readonly ordering: 0;
|
|
1944
|
-
readonly state: 3;
|
|
1945
|
-
readonly version: "ics20-1";
|
|
1946
|
-
};
|
|
1947
|
-
};
|
|
1948
|
-
readonly 'stride-1': {
|
|
1949
|
-
readonly id: "connection-128";
|
|
1950
|
-
readonly client_id: "07-tendermint-195";
|
|
1951
|
-
readonly counterparty: {
|
|
1952
|
-
readonly client_id: "07-tendermint-30";
|
|
1953
|
-
readonly connection_id: "connection-18";
|
|
1954
|
-
readonly prefix: {
|
|
1955
|
-
readonly key_prefix: "FIXME";
|
|
1956
|
-
};
|
|
1957
|
-
};
|
|
1958
|
-
readonly state: 3;
|
|
1959
|
-
readonly transferChannel: {
|
|
1960
|
-
readonly channelId: "channel-19";
|
|
1961
|
-
readonly portId: "transfer";
|
|
1962
|
-
readonly counterPartyChannelId: "channel-106";
|
|
1963
|
-
readonly counterPartyPortId: "transfer";
|
|
1964
|
-
readonly ordering: 0;
|
|
1965
|
-
readonly state: 3;
|
|
1966
|
-
readonly version: "ics20-1";
|
|
1967
|
-
};
|
|
1968
|
-
};
|
|
1969
|
-
};
|
|
1970
|
-
};
|
|
1971
|
-
stride: {
|
|
1972
|
-
readonly chainId: "stride-1";
|
|
1973
|
-
readonly stakingTokens: readonly [{
|
|
1974
|
-
readonly denom: "ustrd";
|
|
1975
|
-
}];
|
|
1976
|
-
readonly icqEnabled: false;
|
|
1977
|
-
readonly connections: {
|
|
1978
|
-
readonly 'agoric-3': {
|
|
1979
|
-
readonly id: "connection-118";
|
|
1980
|
-
readonly client_id: "07-tendermint-129";
|
|
1981
|
-
readonly counterparty: {
|
|
1982
|
-
readonly client_id: "07-tendermint-74";
|
|
1983
|
-
readonly connection_id: "connection-68";
|
|
1984
|
-
readonly prefix: {
|
|
1985
|
-
readonly key_prefix: "FIXME";
|
|
1986
|
-
};
|
|
1987
|
-
};
|
|
1988
|
-
readonly state: 3;
|
|
1989
|
-
readonly transferChannel: {
|
|
1990
|
-
readonly channelId: "channel-59";
|
|
1991
|
-
readonly portId: "transfer";
|
|
1992
|
-
readonly counterPartyChannelId: "channel-148";
|
|
1993
|
-
readonly counterPartyPortId: "transfer";
|
|
1994
|
-
readonly ordering: 0;
|
|
1995
|
-
readonly state: 3;
|
|
1996
|
-
readonly version: "ics20-1";
|
|
1997
|
-
};
|
|
1998
|
-
};
|
|
1999
|
-
readonly celestia: {
|
|
2000
|
-
readonly id: "connection-125";
|
|
2001
|
-
readonly client_id: "07-tendermint-137";
|
|
2002
|
-
readonly counterparty: {
|
|
2003
|
-
readonly client_id: "07-tendermint-0";
|
|
2004
|
-
readonly connection_id: "connection-4";
|
|
2005
|
-
readonly prefix: {
|
|
2006
|
-
readonly key_prefix: "FIXME";
|
|
2007
|
-
};
|
|
2008
|
-
};
|
|
2009
|
-
readonly state: 3;
|
|
2010
|
-
readonly transferChannel: {
|
|
2011
|
-
readonly channelId: "channel-4";
|
|
2012
|
-
readonly portId: "transfer";
|
|
2013
|
-
readonly counterPartyChannelId: "channel-162";
|
|
2014
|
-
readonly counterPartyPortId: "transfer";
|
|
2015
|
-
readonly ordering: 0;
|
|
2016
|
-
readonly state: 3;
|
|
2017
|
-
readonly version: "ics20-1";
|
|
2018
|
-
};
|
|
2019
|
-
};
|
|
2020
|
-
readonly 'cosmoshub-4': {
|
|
2021
|
-
readonly id: "connection-0";
|
|
2022
|
-
readonly client_id: "07-tendermint-0";
|
|
2023
|
-
readonly counterparty: {
|
|
2024
|
-
readonly client_id: "07-tendermint-913";
|
|
2025
|
-
readonly connection_id: "connection-635";
|
|
2026
|
-
readonly prefix: {
|
|
2027
|
-
readonly key_prefix: "FIXME";
|
|
2028
|
-
};
|
|
2029
|
-
};
|
|
2030
|
-
readonly state: 3;
|
|
2031
|
-
readonly transferChannel: {
|
|
2032
|
-
readonly channelId: "channel-391";
|
|
2033
|
-
readonly portId: "transfer";
|
|
2034
|
-
readonly counterPartyChannelId: "channel-0";
|
|
2035
|
-
readonly counterPartyPortId: "transfer";
|
|
2036
|
-
readonly ordering: 0;
|
|
2037
|
-
readonly state: 3;
|
|
2038
|
-
readonly version: "ics20-1";
|
|
2039
|
-
};
|
|
2040
|
-
};
|
|
2041
|
-
readonly 'dydx-mainnet-1': {
|
|
2042
|
-
readonly id: "connection-123";
|
|
2043
|
-
readonly client_id: "07-tendermint-133";
|
|
2044
|
-
readonly counterparty: {
|
|
2045
|
-
readonly client_id: "07-tendermint-1";
|
|
2046
|
-
readonly connection_id: "connection-1";
|
|
2047
|
-
readonly prefix: {
|
|
2048
|
-
readonly key_prefix: "FIXME";
|
|
2049
|
-
};
|
|
2050
|
-
};
|
|
2051
|
-
readonly state: 3;
|
|
2052
|
-
readonly transferChannel: {
|
|
2053
|
-
readonly channelId: "channel-1";
|
|
2054
|
-
readonly portId: "transfer";
|
|
2055
|
-
readonly counterPartyChannelId: "channel-160";
|
|
2056
|
-
readonly counterPartyPortId: "transfer";
|
|
2057
|
-
readonly ordering: 0;
|
|
2058
|
-
readonly state: 3;
|
|
2059
|
-
readonly version: "ics20-1";
|
|
2060
|
-
};
|
|
2061
|
-
};
|
|
2062
|
-
readonly 'juno-1': {
|
|
2063
|
-
readonly id: "connection-19";
|
|
2064
|
-
readonly client_id: "07-tendermint-31";
|
|
2065
|
-
readonly counterparty: {
|
|
2066
|
-
readonly client_id: "07-tendermint-263";
|
|
2067
|
-
readonly connection_id: "connection-205";
|
|
2068
|
-
readonly prefix: {
|
|
2069
|
-
readonly key_prefix: "FIXME";
|
|
2070
|
-
};
|
|
2071
|
-
};
|
|
2072
|
-
readonly state: 3;
|
|
2073
|
-
readonly transferChannel: {
|
|
2074
|
-
readonly channelId: "channel-139";
|
|
2075
|
-
readonly portId: "transfer";
|
|
2076
|
-
readonly counterPartyChannelId: "channel-24";
|
|
2077
|
-
readonly counterPartyPortId: "transfer";
|
|
2078
|
-
readonly ordering: 0;
|
|
2079
|
-
readonly state: 3;
|
|
2080
|
-
readonly version: "ics20-1";
|
|
2081
|
-
};
|
|
2082
|
-
};
|
|
2083
|
-
readonly 'neutron-1': {
|
|
2084
|
-
readonly id: "connection-113";
|
|
2085
|
-
readonly client_id: "07-tendermint-125";
|
|
2086
|
-
readonly counterparty: {
|
|
2087
|
-
readonly client_id: "07-tendermint-18";
|
|
2088
|
-
readonly connection_id: "connection-15";
|
|
2089
|
-
readonly prefix: {
|
|
2090
|
-
readonly key_prefix: "FIXME";
|
|
2091
|
-
};
|
|
2092
|
-
};
|
|
2093
|
-
readonly state: 3;
|
|
2094
|
-
readonly transferChannel: {
|
|
2095
|
-
readonly channelId: "channel-8";
|
|
2096
|
-
readonly portId: "transfer";
|
|
2097
|
-
readonly counterPartyChannelId: "channel-123";
|
|
2098
|
-
readonly counterPartyPortId: "transfer";
|
|
2099
|
-
readonly ordering: 0;
|
|
2100
|
-
readonly state: 3;
|
|
2101
|
-
readonly version: "ics20-1";
|
|
2102
|
-
};
|
|
2103
|
-
};
|
|
2104
|
-
readonly 'osmosis-1': {
|
|
2105
|
-
readonly id: "connection-2";
|
|
2106
|
-
readonly client_id: "07-tendermint-1";
|
|
2107
|
-
readonly counterparty: {
|
|
2108
|
-
readonly client_id: "07-tendermint-2119";
|
|
2109
|
-
readonly connection_id: "connection-1657";
|
|
2110
|
-
readonly prefix: {
|
|
2111
|
-
readonly key_prefix: "FIXME";
|
|
2112
|
-
};
|
|
2113
|
-
};
|
|
2114
|
-
readonly state: 3;
|
|
2115
|
-
readonly transferChannel: {
|
|
2116
|
-
readonly channelId: "channel-326";
|
|
2117
|
-
readonly portId: "transfer";
|
|
2118
|
-
readonly counterPartyChannelId: "channel-5";
|
|
2119
|
-
readonly counterPartyPortId: "transfer";
|
|
2120
|
-
readonly ordering: 0;
|
|
2121
|
-
readonly state: 3;
|
|
2122
|
-
readonly version: "ics20-1";
|
|
2123
|
-
};
|
|
2124
|
-
};
|
|
2125
|
-
readonly 'secret-4': {
|
|
2126
|
-
readonly id: "connection-25";
|
|
2127
|
-
readonly client_id: "07-tendermint-37";
|
|
2128
|
-
readonly counterparty: {
|
|
2129
|
-
readonly client_id: "07-tendermint-75";
|
|
2130
|
-
readonly connection_id: "connection-40";
|
|
2131
|
-
readonly prefix: {
|
|
2132
|
-
readonly key_prefix: "FIXME";
|
|
2133
|
-
};
|
|
2134
|
-
};
|
|
2135
|
-
readonly state: 3;
|
|
2136
|
-
readonly transferChannel: {
|
|
2137
|
-
readonly channelId: "channel-37";
|
|
2138
|
-
readonly portId: "transfer";
|
|
2139
|
-
readonly counterPartyChannelId: "channel-40";
|
|
2140
|
-
readonly counterPartyPortId: "transfer";
|
|
2141
|
-
readonly ordering: 0;
|
|
2142
|
-
readonly state: 3;
|
|
2143
|
-
readonly version: "ics20-1";
|
|
2144
|
-
};
|
|
2145
|
-
};
|
|
2146
|
-
readonly 'stargaze-1': {
|
|
2147
|
-
readonly id: "connection-18";
|
|
2148
|
-
readonly client_id: "07-tendermint-30";
|
|
2149
|
-
readonly counterparty: {
|
|
2150
|
-
readonly client_id: "07-tendermint-195";
|
|
2151
|
-
readonly connection_id: "connection-128";
|
|
2152
|
-
readonly prefix: {
|
|
2153
|
-
readonly key_prefix: "FIXME";
|
|
2154
|
-
};
|
|
2155
|
-
};
|
|
2156
|
-
readonly state: 3;
|
|
2157
|
-
readonly transferChannel: {
|
|
2158
|
-
readonly channelId: "channel-106";
|
|
2159
|
-
readonly portId: "transfer";
|
|
2160
|
-
readonly counterPartyChannelId: "channel-19";
|
|
2161
|
-
readonly counterPartyPortId: "transfer";
|
|
2162
|
-
readonly ordering: 0;
|
|
2163
|
-
readonly state: 3;
|
|
2164
|
-
readonly version: "ics20-1";
|
|
2165
|
-
};
|
|
2166
|
-
};
|
|
2167
|
-
readonly 'umee-1': {
|
|
2168
|
-
readonly id: "connection-20";
|
|
2169
|
-
readonly client_id: "07-tendermint-32";
|
|
2170
|
-
readonly counterparty: {
|
|
2171
|
-
readonly client_id: "07-tendermint-64";
|
|
2172
|
-
readonly connection_id: "connection-45";
|
|
2173
|
-
readonly prefix: {
|
|
2174
|
-
readonly key_prefix: "FIXME";
|
|
2175
|
-
};
|
|
2176
|
-
};
|
|
2177
|
-
readonly state: 3;
|
|
2178
|
-
readonly transferChannel: {
|
|
2179
|
-
readonly channelId: "channel-34";
|
|
2180
|
-
readonly portId: "transfer";
|
|
2181
|
-
readonly counterPartyChannelId: "channel-29";
|
|
2182
|
-
readonly counterPartyPortId: "transfer";
|
|
2183
|
-
readonly ordering: 0;
|
|
2184
|
-
readonly state: 3;
|
|
2185
|
-
readonly version: "ics20-1";
|
|
2186
|
-
};
|
|
2187
|
-
};
|
|
2188
|
-
};
|
|
2189
|
-
};
|
|
2190
|
-
umee: {
|
|
2191
|
-
readonly chainId: "umee-1";
|
|
2192
|
-
readonly stakingTokens: readonly [{
|
|
2193
|
-
readonly denom: "uumee";
|
|
2194
|
-
}];
|
|
2195
|
-
readonly icqEnabled: false;
|
|
2196
|
-
readonly connections: {
|
|
2197
|
-
readonly 'agoric-3': {
|
|
2198
|
-
readonly id: "connection-101";
|
|
2199
|
-
readonly client_id: "07-tendermint-152";
|
|
2200
|
-
readonly counterparty: {
|
|
2201
|
-
readonly client_id: "07-tendermint-18";
|
|
2202
|
-
readonly connection_id: "connection-18";
|
|
2203
|
-
readonly prefix: {
|
|
2204
|
-
readonly key_prefix: "FIXME";
|
|
2205
|
-
};
|
|
2206
|
-
};
|
|
2207
|
-
readonly state: 3;
|
|
2208
|
-
readonly transferChannel: {
|
|
2209
|
-
readonly channelId: "channel-11";
|
|
2210
|
-
readonly portId: "transfer";
|
|
2211
|
-
readonly counterPartyChannelId: "channel-42";
|
|
2212
|
-
readonly counterPartyPortId: "transfer";
|
|
2213
|
-
readonly ordering: 0;
|
|
2214
|
-
readonly state: 3;
|
|
2215
|
-
readonly version: "ics20-1";
|
|
2216
|
-
};
|
|
2217
|
-
};
|
|
2218
|
-
readonly 'dydx-mainnet-1': {
|
|
2219
|
-
readonly id: "connection-208";
|
|
2220
|
-
readonly client_id: "07-tendermint-244";
|
|
2221
|
-
readonly counterparty: {
|
|
2222
|
-
readonly client_id: "07-tendermint-8";
|
|
2223
|
-
readonly connection_id: "connection-13";
|
|
2224
|
-
readonly prefix: {
|
|
2225
|
-
readonly key_prefix: "FIXME";
|
|
2226
|
-
};
|
|
2227
|
-
};
|
|
2228
|
-
readonly state: 3;
|
|
2229
|
-
readonly transferChannel: {
|
|
2230
|
-
readonly channelId: "channel-8";
|
|
2231
|
-
readonly portId: "transfer";
|
|
2232
|
-
readonly counterPartyChannelId: "channel-118";
|
|
2233
|
-
readonly counterPartyPortId: "transfer";
|
|
2234
|
-
readonly ordering: 0;
|
|
2235
|
-
readonly state: 3;
|
|
2236
|
-
readonly version: "ics20-1";
|
|
2237
|
-
};
|
|
2238
|
-
};
|
|
2239
|
-
readonly 'noble-1': {
|
|
2240
|
-
readonly id: "connection-210";
|
|
2241
|
-
readonly client_id: "07-tendermint-248";
|
|
2242
|
-
readonly counterparty: {
|
|
2243
|
-
readonly client_id: "07-tendermint-73";
|
|
2244
|
-
readonly connection_id: "connection-74";
|
|
2245
|
-
readonly prefix: {
|
|
2246
|
-
readonly key_prefix: "FIXME";
|
|
2247
|
-
};
|
|
2248
|
-
};
|
|
2249
|
-
readonly state: 3;
|
|
2250
|
-
readonly transferChannel: {
|
|
2251
|
-
readonly channelId: "channel-51";
|
|
2252
|
-
readonly portId: "transfer";
|
|
2253
|
-
readonly counterPartyChannelId: "channel-120";
|
|
2254
|
-
readonly counterPartyPortId: "transfer";
|
|
2255
|
-
readonly ordering: 0;
|
|
2256
|
-
readonly state: 3;
|
|
2257
|
-
readonly version: "ics20-1";
|
|
2258
|
-
};
|
|
2259
|
-
};
|
|
2260
|
-
readonly 'osmosis-1': {
|
|
2261
|
-
readonly id: "connection-0";
|
|
2262
|
-
readonly client_id: "07-tendermint-6";
|
|
2263
|
-
readonly counterparty: {
|
|
2264
|
-
readonly client_id: "07-tendermint-1805";
|
|
2265
|
-
readonly connection_id: "connection-1410";
|
|
2266
|
-
readonly prefix: {
|
|
2267
|
-
readonly key_prefix: "FIXME";
|
|
2268
|
-
};
|
|
2269
|
-
};
|
|
2270
|
-
readonly state: 3;
|
|
2271
|
-
readonly transferChannel: {
|
|
2272
|
-
readonly channelId: "channel-184";
|
|
2273
|
-
readonly portId: "transfer";
|
|
2274
|
-
readonly counterPartyChannelId: "channel-0";
|
|
2275
|
-
readonly counterPartyPortId: "transfer";
|
|
2276
|
-
readonly ordering: 0;
|
|
2277
|
-
readonly state: 3;
|
|
2278
|
-
readonly version: "ics20-1";
|
|
2279
|
-
};
|
|
2280
|
-
};
|
|
2281
|
-
readonly 'secret-4': {
|
|
2282
|
-
readonly id: "connection-213";
|
|
2283
|
-
readonly client_id: "07-tendermint-249";
|
|
2284
|
-
readonly counterparty: {
|
|
2285
|
-
readonly client_id: "07-tendermint-193";
|
|
2286
|
-
readonly connection_id: "connection-188";
|
|
2287
|
-
readonly prefix: {
|
|
2288
|
-
readonly key_prefix: "FIXME";
|
|
2289
|
-
};
|
|
2290
|
-
};
|
|
2291
|
-
readonly state: 3;
|
|
2292
|
-
readonly transferChannel: {
|
|
2293
|
-
readonly channelId: "channel-126";
|
|
2294
|
-
readonly portId: "transfer";
|
|
2295
|
-
readonly counterPartyChannelId: "channel-123";
|
|
2296
|
-
readonly counterPartyPortId: "transfer";
|
|
2297
|
-
readonly ordering: 0;
|
|
2298
|
-
readonly state: 3;
|
|
2299
|
-
readonly version: "ics20-1";
|
|
2300
|
-
};
|
|
2301
|
-
};
|
|
2302
|
-
readonly 'stride-1': {
|
|
2303
|
-
readonly id: "connection-45";
|
|
2304
|
-
readonly client_id: "07-tendermint-64";
|
|
2305
|
-
readonly counterparty: {
|
|
2306
|
-
readonly client_id: "07-tendermint-32";
|
|
2307
|
-
readonly connection_id: "connection-20";
|
|
2308
|
-
readonly prefix: {
|
|
2309
|
-
readonly key_prefix: "FIXME";
|
|
2310
|
-
};
|
|
2311
|
-
};
|
|
2312
|
-
readonly state: 3;
|
|
2313
|
-
readonly transferChannel: {
|
|
2314
|
-
readonly channelId: "channel-29";
|
|
2315
|
-
readonly portId: "transfer";
|
|
2316
|
-
readonly counterPartyChannelId: "channel-34";
|
|
2317
|
-
readonly counterPartyPortId: "transfer";
|
|
2318
|
-
readonly ordering: 0;
|
|
2319
|
-
readonly state: 3;
|
|
2320
|
-
readonly version: "ics20-1";
|
|
2321
|
-
};
|
|
2322
|
-
};
|
|
2323
|
-
};
|
|
2324
|
-
};
|
|
2325
|
-
}[K], "connections"> : import("@agoric/orchestration").ChainInfo>;
|
|
2326
|
-
registerConnection(chainId1: string, chainId2: string, connectionInfo: import("@agoric/orchestration").IBCConnectionInfo): void;
|
|
2327
|
-
getConnectionInfo(chainId1: string, chainId2: string): Promise<import("@agoric/orchestration").IBCConnectionInfo>;
|
|
2328
|
-
}): (args_0: {
|
|
15
|
+
getChainInfo<K extends string>(chainName: K): Promise<import("./chain-hub.js").ActualChainInfo<K>>;
|
|
16
|
+
registerConnection(chainId1: string, chainId2: string, connectionInfo: IBCConnectionInfo): void;
|
|
17
|
+
getConnectionInfo(chain1: string | {
|
|
18
|
+
chainId: string;
|
|
19
|
+
}, chain2: string | {
|
|
20
|
+
chainId: string;
|
|
21
|
+
}): Promise<IBCConnectionInfo>;
|
|
22
|
+
}>): (args_0: {
|
|
2329
23
|
account: import("@endo/exo").Guarded<{
|
|
2330
24
|
getAddress(): string;
|
|
2331
|
-
getBalance(brand: Brand<"nat">):
|
|
2332
|
-
deposit(payment: Payment<"nat">, optAmountShape?: Pattern):
|
|
2333
|
-
withdraw(amount: Amount<"nat">):
|
|
25
|
+
getBalance(brand: Brand<"nat">): PromiseVow<import("@agoric/ertp/src/types.js").NatAmount>;
|
|
26
|
+
deposit(payment: Payment<"nat">, optAmountShape?: Pattern): PromiseVow<import("@agoric/ertp/src/types.js").NatAmount>;
|
|
27
|
+
withdraw(amount: Amount<"nat">): PromiseVow<globalThis.Payment<"nat">>;
|
|
2334
28
|
executeTx<MT extends {
|
|
2335
29
|
'@type': string;
|
|
2336
|
-
}[]>(messages: MT): import("@agoric/vats/src/localchain.js").PromiseVowOfTupleMappedToGenerics<{ [K_1 in keyof MT]: import("@agoric/cosmic-proto").JsonSafe<import("@agoric/cosmic-proto
|
|
2337
|
-
monitorTransfers(tap: import("@agoric/vats/src/bridge-target.js").TargetApp):
|
|
30
|
+
}[]>(messages: MT): import("@agoric/vats/src/localchain.js").PromiseVowOfTupleMappedToGenerics<{ [K_1 in keyof MT]: import("@agoric/cosmic-proto").JsonSafe<import("@agoric/cosmic-proto").ResponseTo<MT[K_1]>>; }>;
|
|
31
|
+
monitorTransfers(tap: import("@agoric/vats/src/bridge-target.js").TargetApp): PromiseVow<import("@agoric/vats/src/bridge-target.js").TargetRegistration>;
|
|
2338
32
|
}>;
|
|
2339
33
|
address: ChainAddress;
|
|
2340
34
|
storageNode: Remote<globalThis.StorageNode>;
|
|
@@ -2344,16 +38,92 @@ export function prepareLocalOrchestrationAccountKit(zone: Zone, makeRecorderKit:
|
|
|
2344
38
|
* @param {string} validatorAddress
|
|
2345
39
|
* @param {Amount<'nat'>} ertpAmount
|
|
2346
40
|
*/
|
|
2347
|
-
Delegate(validatorAddress: string, ertpAmount: Amount<"nat">): Promise<Invitation<
|
|
2348
|
-
'@type': "/cosmos.staking.v1beta1.MsgDelegateResponse";
|
|
2349
|
-
}>, undefined>>;
|
|
41
|
+
Delegate(validatorAddress: string, ertpAmount: Amount<"nat">): Promise<Invitation<Record<unknown, unknown>, undefined>>;
|
|
2350
42
|
/**
|
|
2351
43
|
* @param {string} validatorAddress
|
|
2352
44
|
* @param {Amount<'nat'>} ertpAmount
|
|
2353
45
|
*/
|
|
2354
|
-
Undelegate(validatorAddress: string, ertpAmount: Amount<"nat">): Promise<Invitation<void
|
|
46
|
+
Undelegate(validatorAddress: string, ertpAmount: Amount<"nat">): Promise<Invitation<void | TimestampRecord | import("@agoric/vow").Vow<void | TimestampRecord>, undefined>>;
|
|
2355
47
|
CloseAccount(): never;
|
|
2356
48
|
};
|
|
49
|
+
undelegateWatcher: {
|
|
50
|
+
/**
|
|
51
|
+
* @param {[
|
|
52
|
+
* TypedJson<'/cosmos.staking.v1beta1.MsgUndelegateResponse'>,
|
|
53
|
+
* ]} response
|
|
54
|
+
*/
|
|
55
|
+
onFulfilled(response: [import("@agoric/cosmic-proto/cosmos/staking/v1beta1/tx.js").MsgUndelegateResponse & {
|
|
56
|
+
'@type': "/cosmos.staking.v1beta1.MsgUndelegateResponse";
|
|
57
|
+
}]): Promise<TimestampRecord>;
|
|
58
|
+
};
|
|
59
|
+
getChainInfoWatcher: {
|
|
60
|
+
/**
|
|
61
|
+
* @param {ChainInfo} agoricChainInfo
|
|
62
|
+
* @param {{ destination: ChainAddress }} ctx
|
|
63
|
+
*/
|
|
64
|
+
onFulfilled(agoricChainInfo: ChainInfo, { destination }: {
|
|
65
|
+
destination: ChainAddress;
|
|
66
|
+
}): Promise<IBCConnectionInfo>;
|
|
67
|
+
};
|
|
68
|
+
getTimeoutTimestampWatcher: {
|
|
69
|
+
/**
|
|
70
|
+
* @param {bigint} timeoutTimestamp
|
|
71
|
+
* @param {{ opts: IBCMsgTransferOptions }} ctx
|
|
72
|
+
*/
|
|
73
|
+
onFulfilled(timeoutTimestamp: bigint, { opts }: {
|
|
74
|
+
opts: IBCMsgTransferOptions;
|
|
75
|
+
}): bigint;
|
|
76
|
+
};
|
|
77
|
+
transferWatcher: {
|
|
78
|
+
/**
|
|
79
|
+
* @param {[
|
|
80
|
+
* { transferChannel: IBCConnectionInfo['transferChannel'] },
|
|
81
|
+
* bigint,
|
|
82
|
+
* ]} params
|
|
83
|
+
* @param {{
|
|
84
|
+
* destination: ChainAddress;
|
|
85
|
+
* opts: IBCMsgTransferOptions;
|
|
86
|
+
* amount: DenomAmount;
|
|
87
|
+
* }} ctx
|
|
88
|
+
*/
|
|
89
|
+
onFulfilled([{ transferChannel }, timeoutTimestamp]: [{
|
|
90
|
+
transferChannel: {
|
|
91
|
+
portId: string;
|
|
92
|
+
channelId: `channel-${number}`;
|
|
93
|
+
counterPartyPortId: string;
|
|
94
|
+
counterPartyChannelId: `channel-${number}`;
|
|
95
|
+
ordering: import("@agoric/cosmic-proto/ibc/core/channel/v1/channel.js").Order;
|
|
96
|
+
state: import("@agoric/cosmic-proto/ibc/core/channel/v1/channel.js").State;
|
|
97
|
+
version: string;
|
|
98
|
+
};
|
|
99
|
+
}, bigint], { opts, amount, destination }: {
|
|
100
|
+
destination: ChainAddress;
|
|
101
|
+
opts: IBCMsgTransferOptions;
|
|
102
|
+
amount: DenomAmount;
|
|
103
|
+
}): import("@agoric/vats/src/localchain.js").PromiseVowOfTupleMappedToGenerics<import("@agoric/cosmic-proto").JsonSafe<import("@agoric/cosmic-proto/ibc/applications/transfer/v1/tx.js").MsgTransferResponse & {
|
|
104
|
+
'@type': "/ibc.applications.transfer.v1.MsgTransferResponse";
|
|
105
|
+
}>[]>;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* takes an array of results (from `executeEncodedTx`) and returns the
|
|
109
|
+
* first result
|
|
110
|
+
*/
|
|
111
|
+
extractFirstResultWatcher: {
|
|
112
|
+
/**
|
|
113
|
+
* @param {Record<unknown, unknown>[]} results
|
|
114
|
+
*/
|
|
115
|
+
onFulfilled(results: Record<unknown, unknown>[]): Record<unknown, unknown>;
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* takes an array of results (from `executeEncodedTx`) and returns void
|
|
119
|
+
* since we are not interested in the result
|
|
120
|
+
*/
|
|
121
|
+
returnVoidWatcher: {
|
|
122
|
+
/**
|
|
123
|
+
* @param {Record<unknown, unknown>[]} results
|
|
124
|
+
*/
|
|
125
|
+
onFulfilled(results: Record<unknown, unknown>[]): undefined;
|
|
126
|
+
};
|
|
2357
127
|
holder: {
|
|
2358
128
|
/** @type {OrchestrationAccount<any>['getBalance']} */
|
|
2359
129
|
getBalance(denom: DenomArg): Promise<DenomAmount>;
|
|
@@ -2369,15 +139,13 @@ export function prepareLocalOrchestrationAccountKit(zone: Zone, makeRecorderKit:
|
|
|
2369
139
|
* @param {string} validatorAddress
|
|
2370
140
|
* @param {Amount<'nat'>} ertpAmount
|
|
2371
141
|
*/
|
|
2372
|
-
delegate(validatorAddress: string, ertpAmount: Amount<"nat">): Promise<
|
|
2373
|
-
'@type': "/cosmos.staking.v1beta1.MsgDelegateResponse";
|
|
2374
|
-
}>>;
|
|
142
|
+
delegate(validatorAddress: string, ertpAmount: Amount<"nat">): Promise<Record<unknown, unknown>>;
|
|
2375
143
|
/**
|
|
2376
144
|
* @param {string} validatorAddress
|
|
2377
145
|
* @param {Amount<'nat'>} ertpAmount
|
|
2378
|
-
* @returns {
|
|
146
|
+
* @returns {PromiseVow<void | TimestampRecord>}
|
|
2379
147
|
*/
|
|
2380
|
-
undelegate(validatorAddress: string, ertpAmount: Amount<"nat">):
|
|
148
|
+
undelegate(validatorAddress: string, ertpAmount: Amount<"nat">): PromiseVow<void | TimestampRecord>;
|
|
2381
149
|
/**
|
|
2382
150
|
* Starting a transfer revokes the account holder. The associated
|
|
2383
151
|
* updater will get a special notification that the account is being
|
|
@@ -2386,11 +154,11 @@ export function prepareLocalOrchestrationAccountKit(zone: Zone, makeRecorderKit:
|
|
|
2386
154
|
/** @type {OrchestrationAccount<any>['deposit']} */
|
|
2387
155
|
deposit(payment: globalThis.Payment<"nat">): Promise<void>;
|
|
2388
156
|
/** @type {LocalChainAccount['withdraw']} */
|
|
2389
|
-
withdraw(amount: Amount<"nat">):
|
|
157
|
+
withdraw(amount: Amount<"nat">): PromiseVow<globalThis.Payment<"nat">>;
|
|
2390
158
|
/** @type {LocalChainAccount['executeTx']} */
|
|
2391
159
|
executeTx<MT extends {
|
|
2392
160
|
'@type': string;
|
|
2393
|
-
}[]>(messages: MT): import("@agoric/vats/src/localchain.js").PromiseVowOfTupleMappedToGenerics<{ [K_1 in keyof MT]: import("@agoric/cosmic-proto").JsonSafe<import("@agoric/cosmic-proto
|
|
161
|
+
}[]>(messages: MT): import("@agoric/vats/src/localchain.js").PromiseVowOfTupleMappedToGenerics<{ [K_1 in keyof MT]: import("@agoric/cosmic-proto").JsonSafe<import("@agoric/cosmic-proto").ResponseTo<MT[K_1]>>; }>;
|
|
2394
162
|
/** @returns {ChainAddress} */
|
|
2395
163
|
getAddress(): ChainAddress;
|
|
2396
164
|
send(toAccount: any, amount: any): Promise<void>;
|
|
@@ -2415,13 +183,13 @@ export type State = {
|
|
|
2415
183
|
topicKit: RecorderKit<LocalChainAccountNotification>;
|
|
2416
184
|
account: import("@endo/exo").Guarded<{
|
|
2417
185
|
getAddress(): string;
|
|
2418
|
-
getBalance(brand: Brand<"nat">):
|
|
2419
|
-
deposit(payment: Payment<"nat">, optAmountShape?: Pattern):
|
|
2420
|
-
withdraw(amount: Amount<"nat">):
|
|
186
|
+
getBalance(brand: Brand<"nat">): PromiseVow<import("@agoric/ertp/src/types.js").NatAmount>;
|
|
187
|
+
deposit(payment: Payment<"nat">, optAmountShape?: Pattern): PromiseVow<import("@agoric/ertp/src/types.js").NatAmount>;
|
|
188
|
+
withdraw(amount: Amount<"nat">): PromiseVow<globalThis.Payment<"nat">>;
|
|
2421
189
|
executeTx<MT extends {
|
|
2422
190
|
'@type': string;
|
|
2423
|
-
}[]>(messages: MT): import("@agoric/vats/src/localchain.js").PromiseVowOfTupleMappedToGenerics<{ [K in keyof MT]: import("@agoric/cosmic-proto").JsonSafe<import("@agoric/cosmic-proto
|
|
2424
|
-
monitorTransfers(tap: import("@agoric/vats/src/bridge-target.js").TargetApp):
|
|
191
|
+
}[]>(messages: MT): import("@agoric/vats/src/localchain.js").PromiseVowOfTupleMappedToGenerics<{ [K in keyof MT]: import("@agoric/cosmic-proto").JsonSafe<import("@agoric/cosmic-proto").ResponseTo<MT[K]>>; }>;
|
|
192
|
+
monitorTransfers(tap: import("@agoric/vats/src/bridge-target.js").TargetApp): PromiseVow<import("@agoric/vats/src/bridge-target.js").TargetRegistration>;
|
|
2425
193
|
}>;
|
|
2426
194
|
address: ChainAddress;
|
|
2427
195
|
};
|
|
@@ -2431,8 +199,12 @@ import type { Zone } from '@agoric/zone';
|
|
|
2431
199
|
import type { RecorderKit } from '@agoric/zoe/src/contractSupport/recorder.js';
|
|
2432
200
|
import type { TimerService } from '@agoric/time';
|
|
2433
201
|
import type { Remote } from '@agoric/internal';
|
|
202
|
+
import type { IBCConnectionInfo } from '@agoric/orchestration';
|
|
203
|
+
import type { PromiseVow } from '@agoric/vow';
|
|
2434
204
|
import type { ChainAddress } from '@agoric/orchestration';
|
|
205
|
+
import type { TimestampRecord } from '@agoric/time';
|
|
206
|
+
import type { ChainInfo } from '@agoric/orchestration';
|
|
207
|
+
import type { IBCMsgTransferOptions } from '@agoric/orchestration';
|
|
2435
208
|
import type { DenomAmount } from '@agoric/orchestration';
|
|
2436
209
|
import type { AmountArg } from '@agoric/orchestration';
|
|
2437
|
-
import type { IBCMsgTransferOptions } from '@agoric/orchestration';
|
|
2438
210
|
//# sourceMappingURL=local-orchestration-account.d.ts.map
|