@agoric/orchestration 0.1.1-dev-4687f0d.0 → 0.1.1-dev-0282e58.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 +15 -15
- package/src/chain-info.d.ts +334 -74
- package/src/chain-info.d.ts.map +1 -1
- package/src/chain-info.js +3 -1
- package/src/examples/sendAnywhere.contract.d.ts +1 -1
- package/src/examples/stakeIca.contract.d.ts +3 -1
- package/src/examples/stakeIca.contract.d.ts.map +1 -1
- package/src/examples/stakeIca.contract.js +4 -2
- package/src/examples/swapExample.contract.d.ts +1 -1
- package/src/examples/swapExample.contract.d.ts.map +1 -1
- package/src/examples/swapExample.contract.js +7 -7
- package/src/examples/unbondExample.contract.d.ts +2 -3
- package/src/examples/unbondExample.contract.d.ts.map +1 -1
- package/src/examples/unbondExample.contract.js +3 -3
- package/src/exos/chainAccountKit.d.ts +2 -1
- package/src/exos/chainAccountKit.d.ts.map +1 -1
- package/src/exos/chainAccountKit.js +5 -4
- package/src/exos/local-chain-account-kit.d.ts +346 -85
- package/src/exos/local-chain-account-kit.d.ts.map +1 -1
- package/src/facade.d.ts +1 -1
- package/src/facade.d.ts.map +1 -1
- package/src/facade.js +20 -14
- package/src/fetched-chain-info.d.ts +1935 -2984
- package/src/fetched-chain-info.js +335 -73
- package/src/proposals/orchestration-proposal.d.ts +10 -6
- package/src/proposals/orchestration-proposal.d.ts.map +1 -1
- package/src/proposals/orchestration-proposal.js +43 -24
- package/src/proposals/start-stakeAtom.d.ts +1 -1
- package/src/proposals/start-stakeAtom.d.ts.map +1 -1
- package/src/proposals/start-stakeAtom.js +4 -2
- package/src/service.d.ts +2 -1
- package/src/service.d.ts.map +1 -1
- package/src/service.js +8 -3
- package/src/utils/chainHub.d.ts +378 -88
- package/src/utils/chainHub.d.ts.map +1 -1
- package/src/utils/chainHub.js +47 -19
- package/src/vat-orchestration.d.ts +2 -2
package/src/chain-info.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import type { EthChainInfo } from './types.js';
|
|
|
6
6
|
/** @import {CosmosChainInfo, EthChainInfo} from './types.js'; */
|
|
7
7
|
/** @typedef {CosmosChainInfo | EthChainInfo} ChainInfo */
|
|
8
8
|
declare const knownChains: {
|
|
9
|
-
|
|
9
|
+
agoriclocal: {
|
|
10
10
|
chainId: string;
|
|
11
11
|
connections: {
|
|
12
12
|
'cosmoshub-4': {
|
|
@@ -53,13 +53,147 @@ declare const knownChains: {
|
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
|
+
agoric: {
|
|
57
|
+
chainId: string;
|
|
58
|
+
stakingTokens: {
|
|
59
|
+
denom: string;
|
|
60
|
+
}[];
|
|
61
|
+
connections: {
|
|
62
|
+
'cosmoshub-4': {
|
|
63
|
+
id: string;
|
|
64
|
+
client_id: string;
|
|
65
|
+
counterparty: {
|
|
66
|
+
client_id: string;
|
|
67
|
+
connection_id: string;
|
|
68
|
+
prefix: {
|
|
69
|
+
key_prefix: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
state: number;
|
|
73
|
+
transferChannel: {
|
|
74
|
+
channelId: string;
|
|
75
|
+
portId: string;
|
|
76
|
+
counterPartyChannelId: string;
|
|
77
|
+
counterPartyPortId: string;
|
|
78
|
+
ordering: number;
|
|
79
|
+
state: number;
|
|
80
|
+
version: string;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
'noble-1': {
|
|
84
|
+
id: string;
|
|
85
|
+
client_id: string;
|
|
86
|
+
counterparty: {
|
|
87
|
+
client_id: string;
|
|
88
|
+
connection_id: string;
|
|
89
|
+
prefix: {
|
|
90
|
+
key_prefix: string;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
state: number;
|
|
94
|
+
transferChannel: {
|
|
95
|
+
channelId: string;
|
|
96
|
+
portId: string;
|
|
97
|
+
counterPartyChannelId: string;
|
|
98
|
+
counterPartyPortId: string;
|
|
99
|
+
ordering: number;
|
|
100
|
+
state: number;
|
|
101
|
+
version: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
'omniflixhub-1': {
|
|
105
|
+
id: string;
|
|
106
|
+
client_id: string;
|
|
107
|
+
counterparty: {
|
|
108
|
+
client_id: string;
|
|
109
|
+
connection_id: string;
|
|
110
|
+
prefix: {
|
|
111
|
+
key_prefix: string;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
state: number;
|
|
115
|
+
transferChannel: {
|
|
116
|
+
channelId: string;
|
|
117
|
+
portId: string;
|
|
118
|
+
counterPartyChannelId: string;
|
|
119
|
+
counterPartyPortId: string;
|
|
120
|
+
ordering: number;
|
|
121
|
+
state: number;
|
|
122
|
+
version: string;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
'osmosis-1': {
|
|
126
|
+
id: string;
|
|
127
|
+
client_id: string;
|
|
128
|
+
counterparty: {
|
|
129
|
+
client_id: string;
|
|
130
|
+
connection_id: string;
|
|
131
|
+
prefix: {
|
|
132
|
+
key_prefix: string;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
state: number;
|
|
136
|
+
transferChannel: {
|
|
137
|
+
channelId: string;
|
|
138
|
+
portId: string;
|
|
139
|
+
counterPartyChannelId: string;
|
|
140
|
+
counterPartyPortId: string;
|
|
141
|
+
ordering: number;
|
|
142
|
+
state: number;
|
|
143
|
+
version: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
'secret-4': {
|
|
147
|
+
id: string;
|
|
148
|
+
client_id: string;
|
|
149
|
+
counterparty: {
|
|
150
|
+
client_id: string;
|
|
151
|
+
connection_id: string;
|
|
152
|
+
prefix: {
|
|
153
|
+
key_prefix: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
state: number;
|
|
157
|
+
transferChannel: {
|
|
158
|
+
channelId: string;
|
|
159
|
+
portId: string;
|
|
160
|
+
counterPartyChannelId: string;
|
|
161
|
+
counterPartyPortId: string;
|
|
162
|
+
ordering: number;
|
|
163
|
+
state: number;
|
|
164
|
+
version: string;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
'stride-1': {
|
|
168
|
+
id: string;
|
|
169
|
+
client_id: string;
|
|
170
|
+
counterparty: {
|
|
171
|
+
client_id: string;
|
|
172
|
+
connection_id: string;
|
|
173
|
+
prefix: {
|
|
174
|
+
key_prefix: string;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
state: number;
|
|
178
|
+
transferChannel: {
|
|
179
|
+
channelId: string;
|
|
180
|
+
portId: string;
|
|
181
|
+
counterPartyChannelId: string;
|
|
182
|
+
counterPartyPortId: string;
|
|
183
|
+
ordering: number;
|
|
184
|
+
state: number;
|
|
185
|
+
version: string;
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
};
|
|
56
190
|
celestia: {
|
|
57
191
|
chainId: string;
|
|
58
192
|
stakingTokens: {
|
|
59
193
|
denom: string;
|
|
60
194
|
}[];
|
|
61
195
|
connections: {
|
|
62
|
-
neutron: {
|
|
196
|
+
'neutron-1': {
|
|
63
197
|
id: string;
|
|
64
198
|
client_id: string;
|
|
65
199
|
counterparty: {
|
|
@@ -80,7 +214,7 @@ declare const knownChains: {
|
|
|
80
214
|
version: string;
|
|
81
215
|
};
|
|
82
216
|
};
|
|
83
|
-
osmosis: {
|
|
217
|
+
'osmosis-1': {
|
|
84
218
|
id: string;
|
|
85
219
|
client_id: string;
|
|
86
220
|
counterparty: {
|
|
@@ -101,7 +235,7 @@ declare const knownChains: {
|
|
|
101
235
|
version: string;
|
|
102
236
|
};
|
|
103
237
|
};
|
|
104
|
-
|
|
238
|
+
'secret-4': {
|
|
105
239
|
id: string;
|
|
106
240
|
client_id: string;
|
|
107
241
|
counterparty: {
|
|
@@ -122,7 +256,7 @@ declare const knownChains: {
|
|
|
122
256
|
version: string;
|
|
123
257
|
};
|
|
124
258
|
};
|
|
125
|
-
stargaze: {
|
|
259
|
+
'stargaze-1': {
|
|
126
260
|
id: string;
|
|
127
261
|
client_id: string;
|
|
128
262
|
counterparty: {
|
|
@@ -143,7 +277,7 @@ declare const knownChains: {
|
|
|
143
277
|
version: string;
|
|
144
278
|
};
|
|
145
279
|
};
|
|
146
|
-
stride: {
|
|
280
|
+
'stride-1': {
|
|
147
281
|
id: string;
|
|
148
282
|
client_id: string;
|
|
149
283
|
counterparty: {
|
|
@@ -172,7 +306,7 @@ declare const knownChains: {
|
|
|
172
306
|
denom: string;
|
|
173
307
|
}[];
|
|
174
308
|
connections: {
|
|
175
|
-
|
|
309
|
+
'agoric-3': {
|
|
176
310
|
id: string;
|
|
177
311
|
client_id: string;
|
|
178
312
|
counterparty: {
|
|
@@ -193,7 +327,7 @@ declare const knownChains: {
|
|
|
193
327
|
version: string;
|
|
194
328
|
};
|
|
195
329
|
};
|
|
196
|
-
|
|
330
|
+
'juno-1': {
|
|
197
331
|
id: string;
|
|
198
332
|
client_id: string;
|
|
199
333
|
counterparty: {
|
|
@@ -214,7 +348,7 @@ declare const knownChains: {
|
|
|
214
348
|
version: string;
|
|
215
349
|
};
|
|
216
350
|
};
|
|
217
|
-
|
|
351
|
+
'neutron-1': {
|
|
218
352
|
id: string;
|
|
219
353
|
client_id: string;
|
|
220
354
|
counterparty: {
|
|
@@ -235,7 +369,7 @@ declare const knownChains: {
|
|
|
235
369
|
version: string;
|
|
236
370
|
};
|
|
237
371
|
};
|
|
238
|
-
|
|
372
|
+
'noble-1': {
|
|
239
373
|
id: string;
|
|
240
374
|
client_id: string;
|
|
241
375
|
counterparty: {
|
|
@@ -256,7 +390,7 @@ declare const knownChains: {
|
|
|
256
390
|
version: string;
|
|
257
391
|
};
|
|
258
392
|
};
|
|
259
|
-
|
|
393
|
+
'omniflixhub-1': {
|
|
260
394
|
id: string;
|
|
261
395
|
client_id: string;
|
|
262
396
|
counterparty: {
|
|
@@ -277,7 +411,7 @@ declare const knownChains: {
|
|
|
277
411
|
version: string;
|
|
278
412
|
};
|
|
279
413
|
};
|
|
280
|
-
|
|
414
|
+
'osmosis-1': {
|
|
281
415
|
id: string;
|
|
282
416
|
client_id: string;
|
|
283
417
|
counterparty: {
|
|
@@ -298,7 +432,7 @@ declare const knownChains: {
|
|
|
298
432
|
version: string;
|
|
299
433
|
};
|
|
300
434
|
};
|
|
301
|
-
|
|
435
|
+
'secret-4': {
|
|
302
436
|
id: string;
|
|
303
437
|
client_id: string;
|
|
304
438
|
counterparty: {
|
|
@@ -319,7 +453,28 @@ declare const knownChains: {
|
|
|
319
453
|
version: string;
|
|
320
454
|
};
|
|
321
455
|
};
|
|
322
|
-
|
|
456
|
+
'stargaze-1': {
|
|
457
|
+
id: string;
|
|
458
|
+
client_id: string;
|
|
459
|
+
counterparty: {
|
|
460
|
+
client_id: string;
|
|
461
|
+
connection_id: string;
|
|
462
|
+
prefix: {
|
|
463
|
+
key_prefix: string;
|
|
464
|
+
};
|
|
465
|
+
};
|
|
466
|
+
state: number;
|
|
467
|
+
transferChannel: {
|
|
468
|
+
channelId: string;
|
|
469
|
+
portId: string;
|
|
470
|
+
counterPartyChannelId: string;
|
|
471
|
+
counterPartyPortId: string;
|
|
472
|
+
ordering: number;
|
|
473
|
+
state: number;
|
|
474
|
+
version: string;
|
|
475
|
+
};
|
|
476
|
+
};
|
|
477
|
+
'stride-1': {
|
|
323
478
|
id: string;
|
|
324
479
|
client_id: string;
|
|
325
480
|
counterparty: {
|
|
@@ -348,7 +503,7 @@ declare const knownChains: {
|
|
|
348
503
|
denom: string;
|
|
349
504
|
}[];
|
|
350
505
|
connections: {
|
|
351
|
-
neutron: {
|
|
506
|
+
'neutron-1': {
|
|
352
507
|
id: string;
|
|
353
508
|
client_id: string;
|
|
354
509
|
counterparty: {
|
|
@@ -369,7 +524,7 @@ declare const knownChains: {
|
|
|
369
524
|
version: string;
|
|
370
525
|
};
|
|
371
526
|
};
|
|
372
|
-
noble: {
|
|
527
|
+
'noble-1': {
|
|
373
528
|
id: string;
|
|
374
529
|
client_id: string;
|
|
375
530
|
counterparty: {
|
|
@@ -390,7 +545,7 @@ declare const knownChains: {
|
|
|
390
545
|
version: string;
|
|
391
546
|
};
|
|
392
547
|
};
|
|
393
|
-
osmosis: {
|
|
548
|
+
'osmosis-1': {
|
|
394
549
|
id: string;
|
|
395
550
|
client_id: string;
|
|
396
551
|
counterparty: {
|
|
@@ -411,7 +566,7 @@ declare const knownChains: {
|
|
|
411
566
|
version: string;
|
|
412
567
|
};
|
|
413
568
|
};
|
|
414
|
-
stride: {
|
|
569
|
+
'stride-1': {
|
|
415
570
|
id: string;
|
|
416
571
|
client_id: string;
|
|
417
572
|
counterparty: {
|
|
@@ -440,7 +595,7 @@ declare const knownChains: {
|
|
|
440
595
|
denom: string;
|
|
441
596
|
}[];
|
|
442
597
|
connections: {
|
|
443
|
-
cosmoshub: {
|
|
598
|
+
'cosmoshub-4': {
|
|
444
599
|
id: string;
|
|
445
600
|
client_id: string;
|
|
446
601
|
counterparty: {
|
|
@@ -461,7 +616,7 @@ declare const knownChains: {
|
|
|
461
616
|
version: string;
|
|
462
617
|
};
|
|
463
618
|
};
|
|
464
|
-
neutron: {
|
|
619
|
+
'neutron-1': {
|
|
465
620
|
id: string;
|
|
466
621
|
client_id: string;
|
|
467
622
|
counterparty: {
|
|
@@ -482,7 +637,7 @@ declare const knownChains: {
|
|
|
482
637
|
version: string;
|
|
483
638
|
};
|
|
484
639
|
};
|
|
485
|
-
noble: {
|
|
640
|
+
'noble-1': {
|
|
486
641
|
id: string;
|
|
487
642
|
client_id: string;
|
|
488
643
|
counterparty: {
|
|
@@ -503,7 +658,7 @@ declare const knownChains: {
|
|
|
503
658
|
version: string;
|
|
504
659
|
};
|
|
505
660
|
};
|
|
506
|
-
osmosis: {
|
|
661
|
+
'osmosis-1': {
|
|
507
662
|
id: string;
|
|
508
663
|
client_id: string;
|
|
509
664
|
counterparty: {
|
|
@@ -524,7 +679,7 @@ declare const knownChains: {
|
|
|
524
679
|
version: string;
|
|
525
680
|
};
|
|
526
681
|
};
|
|
527
|
-
|
|
682
|
+
'secret-4': {
|
|
528
683
|
id: string;
|
|
529
684
|
client_id: string;
|
|
530
685
|
counterparty: {
|
|
@@ -545,7 +700,7 @@ declare const knownChains: {
|
|
|
545
700
|
version: string;
|
|
546
701
|
};
|
|
547
702
|
};
|
|
548
|
-
stargaze: {
|
|
703
|
+
'stargaze-1': {
|
|
549
704
|
id: string;
|
|
550
705
|
client_id: string;
|
|
551
706
|
counterparty: {
|
|
@@ -566,7 +721,7 @@ declare const knownChains: {
|
|
|
566
721
|
version: string;
|
|
567
722
|
};
|
|
568
723
|
};
|
|
569
|
-
stride: {
|
|
724
|
+
'stride-1': {
|
|
570
725
|
id: string;
|
|
571
726
|
client_id: string;
|
|
572
727
|
counterparty: {
|
|
@@ -616,7 +771,7 @@ declare const knownChains: {
|
|
|
616
771
|
version: string;
|
|
617
772
|
};
|
|
618
773
|
};
|
|
619
|
-
cosmoshub: {
|
|
774
|
+
'cosmoshub-4': {
|
|
620
775
|
id: string;
|
|
621
776
|
client_id: string;
|
|
622
777
|
counterparty: {
|
|
@@ -637,7 +792,7 @@ declare const knownChains: {
|
|
|
637
792
|
version: string;
|
|
638
793
|
};
|
|
639
794
|
};
|
|
640
|
-
dydx: {
|
|
795
|
+
'dydx-mainnet-1': {
|
|
641
796
|
id: string;
|
|
642
797
|
client_id: string;
|
|
643
798
|
counterparty: {
|
|
@@ -658,7 +813,7 @@ declare const knownChains: {
|
|
|
658
813
|
version: string;
|
|
659
814
|
};
|
|
660
815
|
};
|
|
661
|
-
juno: {
|
|
816
|
+
'juno-1': {
|
|
662
817
|
id: string;
|
|
663
818
|
client_id: string;
|
|
664
819
|
counterparty: {
|
|
@@ -679,7 +834,7 @@ declare const knownChains: {
|
|
|
679
834
|
version: string;
|
|
680
835
|
};
|
|
681
836
|
};
|
|
682
|
-
noble: {
|
|
837
|
+
'noble-1': {
|
|
683
838
|
id: string;
|
|
684
839
|
client_id: string;
|
|
685
840
|
counterparty: {
|
|
@@ -700,7 +855,7 @@ declare const knownChains: {
|
|
|
700
855
|
version: string;
|
|
701
856
|
};
|
|
702
857
|
};
|
|
703
|
-
osmosis: {
|
|
858
|
+
'osmosis-1': {
|
|
704
859
|
id: string;
|
|
705
860
|
client_id: string;
|
|
706
861
|
counterparty: {
|
|
@@ -721,7 +876,7 @@ declare const knownChains: {
|
|
|
721
876
|
version: string;
|
|
722
877
|
};
|
|
723
878
|
};
|
|
724
|
-
|
|
879
|
+
'secret-4': {
|
|
725
880
|
id: string;
|
|
726
881
|
client_id: string;
|
|
727
882
|
counterparty: {
|
|
@@ -742,7 +897,7 @@ declare const knownChains: {
|
|
|
742
897
|
version: string;
|
|
743
898
|
};
|
|
744
899
|
};
|
|
745
|
-
stargaze: {
|
|
900
|
+
'stargaze-1': {
|
|
746
901
|
id: string;
|
|
747
902
|
client_id: string;
|
|
748
903
|
counterparty: {
|
|
@@ -763,7 +918,7 @@ declare const knownChains: {
|
|
|
763
918
|
version: string;
|
|
764
919
|
};
|
|
765
920
|
};
|
|
766
|
-
stride: {
|
|
921
|
+
'stride-1': {
|
|
767
922
|
id: string;
|
|
768
923
|
client_id: string;
|
|
769
924
|
counterparty: {
|
|
@@ -792,7 +947,7 @@ declare const knownChains: {
|
|
|
792
947
|
denom: string;
|
|
793
948
|
}[];
|
|
794
949
|
connections: {
|
|
795
|
-
|
|
950
|
+
'agoric-3': {
|
|
796
951
|
id: string;
|
|
797
952
|
client_id: string;
|
|
798
953
|
counterparty: {
|
|
@@ -813,7 +968,7 @@ declare const knownChains: {
|
|
|
813
968
|
version: string;
|
|
814
969
|
};
|
|
815
970
|
};
|
|
816
|
-
|
|
971
|
+
'cosmoshub-4': {
|
|
817
972
|
id: string;
|
|
818
973
|
client_id: string;
|
|
819
974
|
counterparty: {
|
|
@@ -834,7 +989,7 @@ declare const knownChains: {
|
|
|
834
989
|
version: string;
|
|
835
990
|
};
|
|
836
991
|
};
|
|
837
|
-
|
|
992
|
+
'dydx-mainnet-1': {
|
|
838
993
|
id: string;
|
|
839
994
|
client_id: string;
|
|
840
995
|
counterparty: {
|
|
@@ -855,7 +1010,7 @@ declare const knownChains: {
|
|
|
855
1010
|
version: string;
|
|
856
1011
|
};
|
|
857
1012
|
};
|
|
858
|
-
|
|
1013
|
+
'juno-1': {
|
|
859
1014
|
id: string;
|
|
860
1015
|
client_id: string;
|
|
861
1016
|
counterparty: {
|
|
@@ -876,7 +1031,7 @@ declare const knownChains: {
|
|
|
876
1031
|
version: string;
|
|
877
1032
|
};
|
|
878
1033
|
};
|
|
879
|
-
|
|
1034
|
+
'neutron-1': {
|
|
880
1035
|
id: string;
|
|
881
1036
|
client_id: string;
|
|
882
1037
|
counterparty: {
|
|
@@ -897,7 +1052,7 @@ declare const knownChains: {
|
|
|
897
1052
|
version: string;
|
|
898
1053
|
};
|
|
899
1054
|
};
|
|
900
|
-
|
|
1055
|
+
'omniflixhub-1': {
|
|
901
1056
|
id: string;
|
|
902
1057
|
client_id: string;
|
|
903
1058
|
counterparty: {
|
|
@@ -918,7 +1073,7 @@ declare const knownChains: {
|
|
|
918
1073
|
version: string;
|
|
919
1074
|
};
|
|
920
1075
|
};
|
|
921
|
-
|
|
1076
|
+
'osmosis-1': {
|
|
922
1077
|
id: string;
|
|
923
1078
|
client_id: string;
|
|
924
1079
|
counterparty: {
|
|
@@ -939,7 +1094,28 @@ declare const knownChains: {
|
|
|
939
1094
|
version: string;
|
|
940
1095
|
};
|
|
941
1096
|
};
|
|
942
|
-
|
|
1097
|
+
'secret-4': {
|
|
1098
|
+
id: string;
|
|
1099
|
+
client_id: string;
|
|
1100
|
+
counterparty: {
|
|
1101
|
+
client_id: string;
|
|
1102
|
+
connection_id: string;
|
|
1103
|
+
prefix: {
|
|
1104
|
+
key_prefix: string;
|
|
1105
|
+
};
|
|
1106
|
+
};
|
|
1107
|
+
state: number;
|
|
1108
|
+
transferChannel: {
|
|
1109
|
+
channelId: string;
|
|
1110
|
+
portId: string;
|
|
1111
|
+
counterPartyChannelId: string;
|
|
1112
|
+
counterPartyPortId: string;
|
|
1113
|
+
ordering: number;
|
|
1114
|
+
state: number;
|
|
1115
|
+
version: string;
|
|
1116
|
+
};
|
|
1117
|
+
};
|
|
1118
|
+
'stargaze-1': {
|
|
943
1119
|
id: string;
|
|
944
1120
|
client_id: string;
|
|
945
1121
|
counterparty: {
|
|
@@ -968,7 +1144,28 @@ declare const knownChains: {
|
|
|
968
1144
|
denom: string;
|
|
969
1145
|
}[];
|
|
970
1146
|
connections: {
|
|
971
|
-
|
|
1147
|
+
'agoric-3': {
|
|
1148
|
+
id: string;
|
|
1149
|
+
client_id: string;
|
|
1150
|
+
counterparty: {
|
|
1151
|
+
client_id: string;
|
|
1152
|
+
connection_id: string;
|
|
1153
|
+
prefix: {
|
|
1154
|
+
key_prefix: string;
|
|
1155
|
+
};
|
|
1156
|
+
};
|
|
1157
|
+
state: number;
|
|
1158
|
+
transferChannel: {
|
|
1159
|
+
channelId: string;
|
|
1160
|
+
portId: string;
|
|
1161
|
+
counterPartyChannelId: string;
|
|
1162
|
+
counterPartyPortId: string;
|
|
1163
|
+
ordering: number;
|
|
1164
|
+
state: number;
|
|
1165
|
+
version: string;
|
|
1166
|
+
};
|
|
1167
|
+
};
|
|
1168
|
+
'cosmoshub-4': {
|
|
972
1169
|
id: string;
|
|
973
1170
|
client_id: string;
|
|
974
1171
|
counterparty: {
|
|
@@ -989,7 +1186,7 @@ declare const knownChains: {
|
|
|
989
1186
|
version: string;
|
|
990
1187
|
};
|
|
991
1188
|
};
|
|
992
|
-
noble: {
|
|
1189
|
+
'noble-1': {
|
|
993
1190
|
id: string;
|
|
994
1191
|
client_id: string;
|
|
995
1192
|
counterparty: {
|
|
@@ -1010,7 +1207,7 @@ declare const knownChains: {
|
|
|
1010
1207
|
version: string;
|
|
1011
1208
|
};
|
|
1012
1209
|
};
|
|
1013
|
-
osmosis: {
|
|
1210
|
+
'osmosis-1': {
|
|
1014
1211
|
id: string;
|
|
1015
1212
|
client_id: string;
|
|
1016
1213
|
counterparty: {
|
|
@@ -1040,6 +1237,27 @@ declare const knownChains: {
|
|
|
1040
1237
|
}[];
|
|
1041
1238
|
icqEnabled: boolean;
|
|
1042
1239
|
connections: {
|
|
1240
|
+
'agoric-3': {
|
|
1241
|
+
id: string;
|
|
1242
|
+
client_id: string;
|
|
1243
|
+
counterparty: {
|
|
1244
|
+
client_id: string;
|
|
1245
|
+
connection_id: string;
|
|
1246
|
+
prefix: {
|
|
1247
|
+
key_prefix: string;
|
|
1248
|
+
};
|
|
1249
|
+
};
|
|
1250
|
+
state: number;
|
|
1251
|
+
transferChannel: {
|
|
1252
|
+
channelId: string;
|
|
1253
|
+
portId: string;
|
|
1254
|
+
counterPartyChannelId: string;
|
|
1255
|
+
counterPartyPortId: string;
|
|
1256
|
+
ordering: number;
|
|
1257
|
+
state: number;
|
|
1258
|
+
version: string;
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
1043
1261
|
celestia: {
|
|
1044
1262
|
id: string;
|
|
1045
1263
|
client_id: string;
|
|
@@ -1061,7 +1279,7 @@ declare const knownChains: {
|
|
|
1061
1279
|
version: string;
|
|
1062
1280
|
};
|
|
1063
1281
|
};
|
|
1064
|
-
cosmoshub: {
|
|
1282
|
+
'cosmoshub-4': {
|
|
1065
1283
|
id: string;
|
|
1066
1284
|
client_id: string;
|
|
1067
1285
|
counterparty: {
|
|
@@ -1082,7 +1300,7 @@ declare const knownChains: {
|
|
|
1082
1300
|
version: string;
|
|
1083
1301
|
};
|
|
1084
1302
|
};
|
|
1085
|
-
dydx: {
|
|
1303
|
+
'dydx-mainnet-1': {
|
|
1086
1304
|
id: string;
|
|
1087
1305
|
client_id: string;
|
|
1088
1306
|
counterparty: {
|
|
@@ -1103,7 +1321,7 @@ declare const knownChains: {
|
|
|
1103
1321
|
version: string;
|
|
1104
1322
|
};
|
|
1105
1323
|
};
|
|
1106
|
-
juno: {
|
|
1324
|
+
'juno-1': {
|
|
1107
1325
|
id: string;
|
|
1108
1326
|
client_id: string;
|
|
1109
1327
|
counterparty: {
|
|
@@ -1124,7 +1342,7 @@ declare const knownChains: {
|
|
|
1124
1342
|
version: string;
|
|
1125
1343
|
};
|
|
1126
1344
|
};
|
|
1127
|
-
neutron: {
|
|
1345
|
+
'neutron-1': {
|
|
1128
1346
|
id: string;
|
|
1129
1347
|
client_id: string;
|
|
1130
1348
|
counterparty: {
|
|
@@ -1145,7 +1363,7 @@ declare const knownChains: {
|
|
|
1145
1363
|
version: string;
|
|
1146
1364
|
};
|
|
1147
1365
|
};
|
|
1148
|
-
noble: {
|
|
1366
|
+
'noble-1': {
|
|
1149
1367
|
id: string;
|
|
1150
1368
|
client_id: string;
|
|
1151
1369
|
counterparty: {
|
|
@@ -1166,7 +1384,7 @@ declare const knownChains: {
|
|
|
1166
1384
|
version: string;
|
|
1167
1385
|
};
|
|
1168
1386
|
};
|
|
1169
|
-
omniflixhub: {
|
|
1387
|
+
'omniflixhub-1': {
|
|
1170
1388
|
id: string;
|
|
1171
1389
|
client_id: string;
|
|
1172
1390
|
counterparty: {
|
|
@@ -1187,7 +1405,7 @@ declare const knownChains: {
|
|
|
1187
1405
|
version: string;
|
|
1188
1406
|
};
|
|
1189
1407
|
};
|
|
1190
|
-
|
|
1408
|
+
'secret-4': {
|
|
1191
1409
|
id: string;
|
|
1192
1410
|
client_id: string;
|
|
1193
1411
|
counterparty: {
|
|
@@ -1208,7 +1426,7 @@ declare const knownChains: {
|
|
|
1208
1426
|
version: string;
|
|
1209
1427
|
};
|
|
1210
1428
|
};
|
|
1211
|
-
stargaze: {
|
|
1429
|
+
'stargaze-1': {
|
|
1212
1430
|
id: string;
|
|
1213
1431
|
client_id: string;
|
|
1214
1432
|
counterparty: {
|
|
@@ -1229,7 +1447,7 @@ declare const knownChains: {
|
|
|
1229
1447
|
version: string;
|
|
1230
1448
|
};
|
|
1231
1449
|
};
|
|
1232
|
-
stride: {
|
|
1450
|
+
'stride-1': {
|
|
1233
1451
|
id: string;
|
|
1234
1452
|
client_id: string;
|
|
1235
1453
|
counterparty: {
|
|
@@ -1258,6 +1476,27 @@ declare const knownChains: {
|
|
|
1258
1476
|
denom: string;
|
|
1259
1477
|
}[];
|
|
1260
1478
|
connections: {
|
|
1479
|
+
'agoric-3': {
|
|
1480
|
+
id: string;
|
|
1481
|
+
client_id: string;
|
|
1482
|
+
counterparty: {
|
|
1483
|
+
client_id: string;
|
|
1484
|
+
connection_id: string;
|
|
1485
|
+
prefix: {
|
|
1486
|
+
key_prefix: string;
|
|
1487
|
+
};
|
|
1488
|
+
};
|
|
1489
|
+
state: number;
|
|
1490
|
+
transferChannel: {
|
|
1491
|
+
channelId: string;
|
|
1492
|
+
portId: string;
|
|
1493
|
+
counterPartyChannelId: string;
|
|
1494
|
+
counterPartyPortId: string;
|
|
1495
|
+
ordering: number;
|
|
1496
|
+
state: number;
|
|
1497
|
+
version: string;
|
|
1498
|
+
};
|
|
1499
|
+
};
|
|
1261
1500
|
celestia: {
|
|
1262
1501
|
id: string;
|
|
1263
1502
|
client_id: string;
|
|
@@ -1279,7 +1518,7 @@ declare const knownChains: {
|
|
|
1279
1518
|
version: string;
|
|
1280
1519
|
};
|
|
1281
1520
|
};
|
|
1282
|
-
cosmoshub: {
|
|
1521
|
+
'cosmoshub-4': {
|
|
1283
1522
|
id: string;
|
|
1284
1523
|
client_id: string;
|
|
1285
1524
|
counterparty: {
|
|
@@ -1300,7 +1539,7 @@ declare const knownChains: {
|
|
|
1300
1539
|
version: string;
|
|
1301
1540
|
};
|
|
1302
1541
|
};
|
|
1303
|
-
juno: {
|
|
1542
|
+
'juno-1': {
|
|
1304
1543
|
id: string;
|
|
1305
1544
|
client_id: string;
|
|
1306
1545
|
counterparty: {
|
|
@@ -1321,7 +1560,7 @@ declare const knownChains: {
|
|
|
1321
1560
|
version: string;
|
|
1322
1561
|
};
|
|
1323
1562
|
};
|
|
1324
|
-
neutron: {
|
|
1563
|
+
'neutron-1': {
|
|
1325
1564
|
id: string;
|
|
1326
1565
|
client_id: string;
|
|
1327
1566
|
counterparty: {
|
|
@@ -1342,7 +1581,7 @@ declare const knownChains: {
|
|
|
1342
1581
|
version: string;
|
|
1343
1582
|
};
|
|
1344
1583
|
};
|
|
1345
|
-
noble: {
|
|
1584
|
+
'noble-1': {
|
|
1346
1585
|
id: string;
|
|
1347
1586
|
client_id: string;
|
|
1348
1587
|
counterparty: {
|
|
@@ -1363,7 +1602,7 @@ declare const knownChains: {
|
|
|
1363
1602
|
version: string;
|
|
1364
1603
|
};
|
|
1365
1604
|
};
|
|
1366
|
-
osmosis: {
|
|
1605
|
+
'osmosis-1': {
|
|
1367
1606
|
id: string;
|
|
1368
1607
|
client_id: string;
|
|
1369
1608
|
counterparty: {
|
|
@@ -1384,7 +1623,7 @@ declare const knownChains: {
|
|
|
1384
1623
|
version: string;
|
|
1385
1624
|
};
|
|
1386
1625
|
};
|
|
1387
|
-
stargaze: {
|
|
1626
|
+
'stargaze-1': {
|
|
1388
1627
|
id: string;
|
|
1389
1628
|
client_id: string;
|
|
1390
1629
|
counterparty: {
|
|
@@ -1405,7 +1644,7 @@ declare const knownChains: {
|
|
|
1405
1644
|
version: string;
|
|
1406
1645
|
};
|
|
1407
1646
|
};
|
|
1408
|
-
stride: {
|
|
1647
|
+
'stride-1': {
|
|
1409
1648
|
id: string;
|
|
1410
1649
|
client_id: string;
|
|
1411
1650
|
counterparty: {
|
|
@@ -1455,7 +1694,7 @@ declare const knownChains: {
|
|
|
1455
1694
|
version: string;
|
|
1456
1695
|
};
|
|
1457
1696
|
};
|
|
1458
|
-
cosmoshub: {
|
|
1697
|
+
'cosmoshub-4': {
|
|
1459
1698
|
id: string;
|
|
1460
1699
|
client_id: string;
|
|
1461
1700
|
counterparty: {
|
|
@@ -1476,7 +1715,7 @@ declare const knownChains: {
|
|
|
1476
1715
|
version: string;
|
|
1477
1716
|
};
|
|
1478
1717
|
};
|
|
1479
|
-
juno: {
|
|
1718
|
+
'juno-1': {
|
|
1480
1719
|
id: string;
|
|
1481
1720
|
client_id: string;
|
|
1482
1721
|
counterparty: {
|
|
@@ -1497,7 +1736,7 @@ declare const knownChains: {
|
|
|
1497
1736
|
version: string;
|
|
1498
1737
|
};
|
|
1499
1738
|
};
|
|
1500
|
-
neutron: {
|
|
1739
|
+
'neutron-1': {
|
|
1501
1740
|
id: string;
|
|
1502
1741
|
client_id: string;
|
|
1503
1742
|
counterparty: {
|
|
@@ -1518,7 +1757,7 @@ declare const knownChains: {
|
|
|
1518
1757
|
version: string;
|
|
1519
1758
|
};
|
|
1520
1759
|
};
|
|
1521
|
-
noble: {
|
|
1760
|
+
'noble-1': {
|
|
1522
1761
|
id: string;
|
|
1523
1762
|
client_id: string;
|
|
1524
1763
|
counterparty: {
|
|
@@ -1539,7 +1778,7 @@ declare const knownChains: {
|
|
|
1539
1778
|
version: string;
|
|
1540
1779
|
};
|
|
1541
1780
|
};
|
|
1542
|
-
osmosis: {
|
|
1781
|
+
'osmosis-1': {
|
|
1543
1782
|
id: string;
|
|
1544
1783
|
client_id: string;
|
|
1545
1784
|
counterparty: {
|
|
@@ -1560,7 +1799,7 @@ declare const knownChains: {
|
|
|
1560
1799
|
version: string;
|
|
1561
1800
|
};
|
|
1562
1801
|
};
|
|
1563
|
-
|
|
1802
|
+
'secret-4': {
|
|
1564
1803
|
id: string;
|
|
1565
1804
|
client_id: string;
|
|
1566
1805
|
counterparty: {
|
|
@@ -1581,7 +1820,7 @@ declare const knownChains: {
|
|
|
1581
1820
|
version: string;
|
|
1582
1821
|
};
|
|
1583
1822
|
};
|
|
1584
|
-
stride: {
|
|
1823
|
+
'stride-1': {
|
|
1585
1824
|
id: string;
|
|
1586
1825
|
client_id: string;
|
|
1587
1826
|
counterparty: {
|
|
@@ -1610,6 +1849,27 @@ declare const knownChains: {
|
|
|
1610
1849
|
denom: string;
|
|
1611
1850
|
}[];
|
|
1612
1851
|
connections: {
|
|
1852
|
+
'agoric-3': {
|
|
1853
|
+
id: string;
|
|
1854
|
+
client_id: string;
|
|
1855
|
+
counterparty: {
|
|
1856
|
+
client_id: string;
|
|
1857
|
+
connection_id: string;
|
|
1858
|
+
prefix: {
|
|
1859
|
+
key_prefix: string;
|
|
1860
|
+
};
|
|
1861
|
+
};
|
|
1862
|
+
state: number;
|
|
1863
|
+
transferChannel: {
|
|
1864
|
+
channelId: string;
|
|
1865
|
+
portId: string;
|
|
1866
|
+
counterPartyChannelId: string;
|
|
1867
|
+
counterPartyPortId: string;
|
|
1868
|
+
ordering: number;
|
|
1869
|
+
state: number;
|
|
1870
|
+
version: string;
|
|
1871
|
+
};
|
|
1872
|
+
};
|
|
1613
1873
|
celestia: {
|
|
1614
1874
|
id: string;
|
|
1615
1875
|
client_id: string;
|
|
@@ -1631,7 +1891,7 @@ declare const knownChains: {
|
|
|
1631
1891
|
version: string;
|
|
1632
1892
|
};
|
|
1633
1893
|
};
|
|
1634
|
-
cosmoshub: {
|
|
1894
|
+
'cosmoshub-4': {
|
|
1635
1895
|
id: string;
|
|
1636
1896
|
client_id: string;
|
|
1637
1897
|
counterparty: {
|
|
@@ -1652,7 +1912,7 @@ declare const knownChains: {
|
|
|
1652
1912
|
version: string;
|
|
1653
1913
|
};
|
|
1654
1914
|
};
|
|
1655
|
-
dydx: {
|
|
1915
|
+
'dydx-mainnet-1': {
|
|
1656
1916
|
id: string;
|
|
1657
1917
|
client_id: string;
|
|
1658
1918
|
counterparty: {
|
|
@@ -1673,7 +1933,7 @@ declare const knownChains: {
|
|
|
1673
1933
|
version: string;
|
|
1674
1934
|
};
|
|
1675
1935
|
};
|
|
1676
|
-
juno: {
|
|
1936
|
+
'juno-1': {
|
|
1677
1937
|
id: string;
|
|
1678
1938
|
client_id: string;
|
|
1679
1939
|
counterparty: {
|
|
@@ -1694,7 +1954,7 @@ declare const knownChains: {
|
|
|
1694
1954
|
version: string;
|
|
1695
1955
|
};
|
|
1696
1956
|
};
|
|
1697
|
-
neutron: {
|
|
1957
|
+
'neutron-1': {
|
|
1698
1958
|
id: string;
|
|
1699
1959
|
client_id: string;
|
|
1700
1960
|
counterparty: {
|
|
@@ -1715,7 +1975,7 @@ declare const knownChains: {
|
|
|
1715
1975
|
version: string;
|
|
1716
1976
|
};
|
|
1717
1977
|
};
|
|
1718
|
-
osmosis: {
|
|
1978
|
+
'osmosis-1': {
|
|
1719
1979
|
id: string;
|
|
1720
1980
|
client_id: string;
|
|
1721
1981
|
counterparty: {
|
|
@@ -1736,7 +1996,7 @@ declare const knownChains: {
|
|
|
1736
1996
|
version: string;
|
|
1737
1997
|
};
|
|
1738
1998
|
};
|
|
1739
|
-
|
|
1999
|
+
'secret-4': {
|
|
1740
2000
|
id: string;
|
|
1741
2001
|
client_id: string;
|
|
1742
2002
|
counterparty: {
|
|
@@ -1757,7 +2017,7 @@ declare const knownChains: {
|
|
|
1757
2017
|
version: string;
|
|
1758
2018
|
};
|
|
1759
2019
|
};
|
|
1760
|
-
stargaze: {
|
|
2020
|
+
'stargaze-1': {
|
|
1761
2021
|
id: string;
|
|
1762
2022
|
client_id: string;
|
|
1763
2023
|
counterparty: {
|