chain-registry 1.69.106 → 1.69.108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -12
- package/esm/mainnet/agoric/ibc.js +29 -0
- package/esm/mainnet/archway/ibc.js +2 -1
- package/esm/mainnet/axelar/ibc.js +6 -6
- package/esm/mainnet/celestia/ibc.js +29 -0
- package/esm/mainnet/cosmoshub/ibc.js +5 -1
- package/esm/mainnet/dydx/ibc.js +29 -0
- package/esm/mainnet/fetchhub/chain.js +12 -0
- package/esm/mainnet/injective/assets.js +113 -0
- package/esm/mainnet/injective/ibc.js +29 -0
- package/esm/mainnet/int3face/ibc.js +28 -0
- package/esm/mainnet/jackal/ibc.js +6 -6
- package/esm/mainnet/juno/ibc.js +5 -1
- package/esm/mainnet/kopi/assets.js +12 -12
- package/esm/mainnet/milkyway/assets.js +74 -0
- package/esm/mainnet/milkyway/chain.js +24 -17
- package/esm/mainnet/neutron/ibc.js +29 -0
- package/esm/mainnet/omniflixhub/ibc.js +29 -0
- package/esm/mainnet/osmosis/assets.js +599 -8
- package/esm/mainnet/quicksilver/assets.js +224 -8
- package/esm/mainnet/quicksilver/chain.js +31 -163
- package/esm/mainnet/quicksilver/ibc.js +293 -7
- package/esm/mainnet/regen/ibc.js +5 -1
- package/esm/mainnet/saga/ibc.js +29 -0
- package/esm/mainnet/secretnetwork/ibc.js +5 -1
- package/esm/mainnet/sommelier/ibc.js +29 -0
- package/esm/mainnet/stargaze/ibc.js +5 -1
- package/esm/mainnet/terra2/assets.js +19 -0
- package/esm/mainnet/terra2/ibc.js +29 -0
- package/esm/mainnet/umee/ibc.js +5 -1
- package/esm/mainnet/xion/ibc.js +29 -0
- package/esm/testnet/axelartestnet/assets.js +39 -0
- package/esm/testnet/axelartestnet/ibc.js +28 -0
- package/esm/testnet/manifesttestnet/ibc.js +27 -0
- package/mainnet/agoric/ibc.js +29 -0
- package/mainnet/archway/ibc.js +2 -1
- package/mainnet/axelar/ibc.js +6 -6
- package/mainnet/celestia/ibc.js +29 -0
- package/mainnet/cosmoshub/ibc.js +5 -1
- package/mainnet/dydx/ibc.js +29 -0
- package/mainnet/fetchhub/chain.js +12 -0
- package/mainnet/injective/assets.js +113 -0
- package/mainnet/injective/ibc.js +29 -0
- package/mainnet/int3face/ibc.js +28 -0
- package/mainnet/jackal/ibc.js +6 -6
- package/mainnet/juno/ibc.js +5 -1
- package/mainnet/kopi/assets.js +12 -12
- package/mainnet/milkyway/assets.js +74 -0
- package/mainnet/milkyway/chain.js +24 -17
- package/mainnet/neutron/ibc.js +29 -0
- package/mainnet/omniflixhub/ibc.js +29 -0
- package/mainnet/osmosis/assets.js +599 -8
- package/mainnet/quicksilver/assets.js +224 -8
- package/mainnet/quicksilver/chain.js +31 -163
- package/mainnet/quicksilver/ibc.js +293 -7
- package/mainnet/regen/ibc.js +5 -1
- package/mainnet/saga/ibc.js +29 -0
- package/mainnet/secretnetwork/ibc.js +5 -1
- package/mainnet/sommelier/ibc.js +29 -0
- package/mainnet/stargaze/ibc.js +5 -1
- package/mainnet/terra2/assets.js +19 -0
- package/mainnet/terra2/ibc.js +29 -0
- package/mainnet/umee/ibc.js +5 -1
- package/mainnet/xion/ibc.js +29 -0
- package/package.json +4 -4
- package/testnet/axelartestnet/assets.js +39 -0
- package/testnet/axelartestnet/ibc.js +28 -0
- package/testnet/manifesttestnet/ibc.js +27 -0
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain_1: {
|
|
7
|
+
chain_name: 'agoric',
|
|
8
|
+
client_id: '07-tendermint-85',
|
|
9
|
+
connection_id: 'connection-85'
|
|
10
|
+
},
|
|
11
|
+
chain_2: {
|
|
12
|
+
chain_name: 'quicksilver',
|
|
13
|
+
client_id: '07-tendermint-84',
|
|
14
|
+
connection_id: 'connection-60'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain_1: {
|
|
18
|
+
channel_id: 'channel-68',
|
|
19
|
+
port_id: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain_2: {
|
|
22
|
+
channel_id: 'channel-125',
|
|
23
|
+
port_id: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
status: 'live',
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
4
33
|
{
|
|
5
34
|
$schema: '../ibc_data.schema.json',
|
|
6
35
|
chain_1: {
|
|
@@ -25,7 +54,37 @@ const info = [
|
|
|
25
54
|
ordering: 'unordered',
|
|
26
55
|
version: 'ics20-1',
|
|
27
56
|
tags: {
|
|
28
|
-
status: 'live'
|
|
57
|
+
status: 'live',
|
|
58
|
+
preferred: true
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
$schema: '../ibc_data.schema.json',
|
|
64
|
+
chain_1: {
|
|
65
|
+
chain_name: 'celestia',
|
|
66
|
+
client_id: '07-tendermint-92',
|
|
67
|
+
connection_id: 'connection-60'
|
|
68
|
+
},
|
|
69
|
+
chain_2: {
|
|
70
|
+
chain_name: 'quicksilver',
|
|
71
|
+
client_id: '07-tendermint-97',
|
|
72
|
+
connection_id: 'connection-65'
|
|
73
|
+
},
|
|
74
|
+
channels: [{
|
|
75
|
+
chain_1: {
|
|
76
|
+
channel_id: 'channel-36',
|
|
77
|
+
port_id: 'transfer'
|
|
78
|
+
},
|
|
79
|
+
chain_2: {
|
|
80
|
+
channel_id: 'channel-207',
|
|
81
|
+
port_id: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
ordering: 'unordered',
|
|
84
|
+
version: 'ics20-1',
|
|
85
|
+
tags: {
|
|
86
|
+
status: 'live',
|
|
87
|
+
preferred: true
|
|
29
88
|
}
|
|
30
89
|
}]
|
|
31
90
|
},
|
|
@@ -80,7 +139,69 @@ const info = [
|
|
|
80
139
|
port_id: 'transfer'
|
|
81
140
|
},
|
|
82
141
|
ordering: 'unordered',
|
|
83
|
-
version: 'ics20-1'
|
|
142
|
+
version: 'ics20-1',
|
|
143
|
+
tags: {
|
|
144
|
+
status: 'live',
|
|
145
|
+
preferred: true
|
|
146
|
+
}
|
|
147
|
+
}]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
$schema: '../ibc_data.schema.json',
|
|
151
|
+
chain_1: {
|
|
152
|
+
chain_name: 'dydx',
|
|
153
|
+
client_id: '07-tendermint-20',
|
|
154
|
+
connection_id: 'connection-25'
|
|
155
|
+
},
|
|
156
|
+
chain_2: {
|
|
157
|
+
chain_name: 'quicksilver',
|
|
158
|
+
client_id: '07-tendermint-90',
|
|
159
|
+
connection_id: 'connection-62'
|
|
160
|
+
},
|
|
161
|
+
channels: [{
|
|
162
|
+
chain_1: {
|
|
163
|
+
channel_id: 'channel-32',
|
|
164
|
+
port_id: 'transfer'
|
|
165
|
+
},
|
|
166
|
+
chain_2: {
|
|
167
|
+
channel_id: 'channel-164',
|
|
168
|
+
port_id: 'transfer'
|
|
169
|
+
},
|
|
170
|
+
ordering: 'unordered',
|
|
171
|
+
version: 'ics20-1',
|
|
172
|
+
tags: {
|
|
173
|
+
status: 'live',
|
|
174
|
+
preferred: true
|
|
175
|
+
}
|
|
176
|
+
}]
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
$schema: '../ibc_data.schema.json',
|
|
180
|
+
chain_1: {
|
|
181
|
+
chain_name: 'injective',
|
|
182
|
+
client_id: '07-tendermint-282',
|
|
183
|
+
connection_id: 'connection-286'
|
|
184
|
+
},
|
|
185
|
+
chain_2: {
|
|
186
|
+
chain_name: 'quicksilver',
|
|
187
|
+
client_id: '07-tendermint-105',
|
|
188
|
+
connection_id: 'connection-68'
|
|
189
|
+
},
|
|
190
|
+
channels: [{
|
|
191
|
+
chain_1: {
|
|
192
|
+
channel_id: 'channel-394',
|
|
193
|
+
port_id: 'transfer'
|
|
194
|
+
},
|
|
195
|
+
chain_2: {
|
|
196
|
+
channel_id: 'channel-234',
|
|
197
|
+
port_id: 'transfer'
|
|
198
|
+
},
|
|
199
|
+
ordering: 'unordered',
|
|
200
|
+
version: 'ics20-1',
|
|
201
|
+
tags: {
|
|
202
|
+
status: 'live',
|
|
203
|
+
preferred: true
|
|
204
|
+
}
|
|
84
205
|
}]
|
|
85
206
|
},
|
|
86
207
|
{
|
|
@@ -105,7 +226,40 @@ const info = [
|
|
|
105
226
|
port_id: 'transfer'
|
|
106
227
|
},
|
|
107
228
|
ordering: 'unordered',
|
|
108
|
-
version: 'ics20-1'
|
|
229
|
+
version: 'ics20-1',
|
|
230
|
+
tags: {
|
|
231
|
+
status: 'live',
|
|
232
|
+
preferred: true
|
|
233
|
+
}
|
|
234
|
+
}]
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
$schema: '../ibc_data.schema.json',
|
|
238
|
+
chain_1: {
|
|
239
|
+
chain_name: 'omniflixhub',
|
|
240
|
+
client_id: '07-tendermint-76',
|
|
241
|
+
connection_id: 'connection-57'
|
|
242
|
+
},
|
|
243
|
+
chain_2: {
|
|
244
|
+
chain_name: 'quicksilver',
|
|
245
|
+
client_id: '07-tendermint-101',
|
|
246
|
+
connection_id: 'connection-66'
|
|
247
|
+
},
|
|
248
|
+
channels: [{
|
|
249
|
+
chain_1: {
|
|
250
|
+
channel_id: 'channel-51',
|
|
251
|
+
port_id: 'transfer'
|
|
252
|
+
},
|
|
253
|
+
chain_2: {
|
|
254
|
+
channel_id: 'channel-228',
|
|
255
|
+
port_id: 'transfer'
|
|
256
|
+
},
|
|
257
|
+
ordering: 'unordered',
|
|
258
|
+
version: 'ics20-1',
|
|
259
|
+
tags: {
|
|
260
|
+
status: 'live',
|
|
261
|
+
preferred: true
|
|
262
|
+
}
|
|
109
263
|
}]
|
|
110
264
|
},
|
|
111
265
|
{
|
|
@@ -186,7 +340,40 @@ const info = [
|
|
|
186
340
|
port_id: 'transfer'
|
|
187
341
|
},
|
|
188
342
|
ordering: 'unordered',
|
|
189
|
-
version: 'ics20-1'
|
|
343
|
+
version: 'ics20-1',
|
|
344
|
+
tags: {
|
|
345
|
+
status: 'live',
|
|
346
|
+
preferred: true
|
|
347
|
+
}
|
|
348
|
+
}]
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
$schema: '../ibc_data.schema.json',
|
|
352
|
+
chain_1: {
|
|
353
|
+
chain_name: 'quicksilver',
|
|
354
|
+
client_id: '07-tendermint-91',
|
|
355
|
+
connection_id: 'connection-63'
|
|
356
|
+
},
|
|
357
|
+
chain_2: {
|
|
358
|
+
chain_name: 'saga',
|
|
359
|
+
client_id: '07-tendermint-8',
|
|
360
|
+
connection_id: 'connection-8'
|
|
361
|
+
},
|
|
362
|
+
channels: [{
|
|
363
|
+
chain_1: {
|
|
364
|
+
channel_id: 'channel-170',
|
|
365
|
+
port_id: 'transfer'
|
|
366
|
+
},
|
|
367
|
+
chain_2: {
|
|
368
|
+
channel_id: 'channel-18',
|
|
369
|
+
port_id: 'transfer'
|
|
370
|
+
},
|
|
371
|
+
ordering: 'unordered',
|
|
372
|
+
version: 'ics20-1',
|
|
373
|
+
tags: {
|
|
374
|
+
status: 'live',
|
|
375
|
+
preferred: true
|
|
376
|
+
}
|
|
190
377
|
}]
|
|
191
378
|
},
|
|
192
379
|
{
|
|
@@ -211,7 +398,40 @@ const info = [
|
|
|
211
398
|
port_id: 'transfer'
|
|
212
399
|
},
|
|
213
400
|
ordering: 'unordered',
|
|
214
|
-
version: 'ics20-1'
|
|
401
|
+
version: 'ics20-1',
|
|
402
|
+
tags: {
|
|
403
|
+
status: 'live',
|
|
404
|
+
preferred: true
|
|
405
|
+
}
|
|
406
|
+
}]
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
$schema: '../ibc_data.schema.json',
|
|
410
|
+
chain_1: {
|
|
411
|
+
chain_name: 'quicksilver',
|
|
412
|
+
client_id: '07-tendermint-79',
|
|
413
|
+
connection_id: 'connection-54'
|
|
414
|
+
},
|
|
415
|
+
chain_2: {
|
|
416
|
+
chain_name: 'sommelier',
|
|
417
|
+
client_id: '07-tendermint-57',
|
|
418
|
+
connection_id: 'connection-59'
|
|
419
|
+
},
|
|
420
|
+
channels: [{
|
|
421
|
+
chain_1: {
|
|
422
|
+
channel_id: 'channel-101',
|
|
423
|
+
port_id: 'transfer'
|
|
424
|
+
},
|
|
425
|
+
chain_2: {
|
|
426
|
+
channel_id: 'channel-59',
|
|
427
|
+
port_id: 'transfer'
|
|
428
|
+
},
|
|
429
|
+
ordering: 'unordered',
|
|
430
|
+
version: 'ics20-1',
|
|
431
|
+
tags: {
|
|
432
|
+
status: 'live',
|
|
433
|
+
preferred: true
|
|
434
|
+
}
|
|
215
435
|
}]
|
|
216
436
|
},
|
|
217
437
|
{
|
|
@@ -236,7 +456,40 @@ const info = [
|
|
|
236
456
|
port_id: 'transfer'
|
|
237
457
|
},
|
|
238
458
|
ordering: 'unordered',
|
|
239
|
-
version: 'ics20-1'
|
|
459
|
+
version: 'ics20-1',
|
|
460
|
+
tags: {
|
|
461
|
+
status: 'live',
|
|
462
|
+
preferred: true
|
|
463
|
+
}
|
|
464
|
+
}]
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
$schema: '../ibc_data.schema.json',
|
|
468
|
+
chain_1: {
|
|
469
|
+
chain_name: 'quicksilver',
|
|
470
|
+
client_id: '07-tendermint-108',
|
|
471
|
+
connection_id: 'connection-69'
|
|
472
|
+
},
|
|
473
|
+
chain_2: {
|
|
474
|
+
chain_name: 'terra2',
|
|
475
|
+
client_id: '07-tendermint-430',
|
|
476
|
+
connection_id: 'connection-442'
|
|
477
|
+
},
|
|
478
|
+
channels: [{
|
|
479
|
+
chain_1: {
|
|
480
|
+
channel_id: 'channel-244',
|
|
481
|
+
port_id: 'transfer'
|
|
482
|
+
},
|
|
483
|
+
chain_2: {
|
|
484
|
+
channel_id: 'channel-604',
|
|
485
|
+
port_id: 'transfer'
|
|
486
|
+
},
|
|
487
|
+
ordering: 'unordered',
|
|
488
|
+
version: 'ics20-1',
|
|
489
|
+
tags: {
|
|
490
|
+
status: 'live',
|
|
491
|
+
preferred: true
|
|
492
|
+
}
|
|
240
493
|
}]
|
|
241
494
|
},
|
|
242
495
|
{
|
|
@@ -261,7 +514,40 @@ const info = [
|
|
|
261
514
|
port_id: 'transfer'
|
|
262
515
|
},
|
|
263
516
|
ordering: 'unordered',
|
|
264
|
-
version: 'ics20-1'
|
|
517
|
+
version: 'ics20-1',
|
|
518
|
+
tags: {
|
|
519
|
+
status: 'live',
|
|
520
|
+
preferred: true
|
|
521
|
+
}
|
|
522
|
+
}]
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
$schema: '../ibc_data.schema.json',
|
|
526
|
+
chain_1: {
|
|
527
|
+
chain_name: 'quicksilver',
|
|
528
|
+
client_id: '07-tendermint-102',
|
|
529
|
+
connection_id: 'connection-67'
|
|
530
|
+
},
|
|
531
|
+
chain_2: {
|
|
532
|
+
chain_name: 'xion',
|
|
533
|
+
client_id: '07-tendermint-6',
|
|
534
|
+
connection_id: 'connection-7'
|
|
535
|
+
},
|
|
536
|
+
channels: [{
|
|
537
|
+
chain_1: {
|
|
538
|
+
channel_id: 'channel-229',
|
|
539
|
+
port_id: 'transfer'
|
|
540
|
+
},
|
|
541
|
+
chain_2: {
|
|
542
|
+
channel_id: 'channel-8',
|
|
543
|
+
port_id: 'transfer'
|
|
544
|
+
},
|
|
545
|
+
ordering: 'unordered',
|
|
546
|
+
version: 'ics20-1',
|
|
547
|
+
tags: {
|
|
548
|
+
status: 'live',
|
|
549
|
+
preferred: true
|
|
550
|
+
}
|
|
265
551
|
}]
|
|
266
552
|
}
|
|
267
553
|
];
|
package/mainnet/regen/ibc.js
CHANGED
package/mainnet/saga/ibc.js
CHANGED
|
@@ -117,6 +117,35 @@ const info = [
|
|
|
117
117
|
}
|
|
118
118
|
}]
|
|
119
119
|
},
|
|
120
|
+
{
|
|
121
|
+
$schema: '../ibc_data.schema.json',
|
|
122
|
+
chain_1: {
|
|
123
|
+
chain_name: 'quicksilver',
|
|
124
|
+
client_id: '07-tendermint-91',
|
|
125
|
+
connection_id: 'connection-63'
|
|
126
|
+
},
|
|
127
|
+
chain_2: {
|
|
128
|
+
chain_name: 'saga',
|
|
129
|
+
client_id: '07-tendermint-8',
|
|
130
|
+
connection_id: 'connection-8'
|
|
131
|
+
},
|
|
132
|
+
channels: [{
|
|
133
|
+
chain_1: {
|
|
134
|
+
channel_id: 'channel-170',
|
|
135
|
+
port_id: 'transfer'
|
|
136
|
+
},
|
|
137
|
+
chain_2: {
|
|
138
|
+
channel_id: 'channel-18',
|
|
139
|
+
port_id: 'transfer'
|
|
140
|
+
},
|
|
141
|
+
ordering: 'unordered',
|
|
142
|
+
version: 'ics20-1',
|
|
143
|
+
tags: {
|
|
144
|
+
status: 'live',
|
|
145
|
+
preferred: true
|
|
146
|
+
}
|
|
147
|
+
}]
|
|
148
|
+
},
|
|
120
149
|
{
|
|
121
150
|
$schema: '../ibc_data.schema.json',
|
|
122
151
|
chain_1: {
|
package/mainnet/sommelier/ibc.js
CHANGED
|
@@ -144,6 +144,35 @@ const info = [
|
|
|
144
144
|
}
|
|
145
145
|
}]
|
|
146
146
|
},
|
|
147
|
+
{
|
|
148
|
+
$schema: '../ibc_data.schema.json',
|
|
149
|
+
chain_1: {
|
|
150
|
+
chain_name: 'quicksilver',
|
|
151
|
+
client_id: '07-tendermint-79',
|
|
152
|
+
connection_id: 'connection-54'
|
|
153
|
+
},
|
|
154
|
+
chain_2: {
|
|
155
|
+
chain_name: 'sommelier',
|
|
156
|
+
client_id: '07-tendermint-57',
|
|
157
|
+
connection_id: 'connection-59'
|
|
158
|
+
},
|
|
159
|
+
channels: [{
|
|
160
|
+
chain_1: {
|
|
161
|
+
channel_id: 'channel-101',
|
|
162
|
+
port_id: 'transfer'
|
|
163
|
+
},
|
|
164
|
+
chain_2: {
|
|
165
|
+
channel_id: 'channel-59',
|
|
166
|
+
port_id: 'transfer'
|
|
167
|
+
},
|
|
168
|
+
ordering: 'unordered',
|
|
169
|
+
version: 'ics20-1',
|
|
170
|
+
tags: {
|
|
171
|
+
status: 'live',
|
|
172
|
+
preferred: true
|
|
173
|
+
}
|
|
174
|
+
}]
|
|
175
|
+
},
|
|
147
176
|
{
|
|
148
177
|
$schema: '../ibc_data.schema.json',
|
|
149
178
|
chain_1: {
|
package/mainnet/stargaze/ibc.js
CHANGED
package/mainnet/terra2/assets.js
CHANGED
|
@@ -1515,6 +1515,25 @@ const info = {
|
|
|
1515
1515
|
name: 'Eris Protocol bWHALE/WHALE ampLP',
|
|
1516
1516
|
display: 'amplp',
|
|
1517
1517
|
symbol: 'bWHALE-ampLP'
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
base: 'factory/terra1dvvduq0uegn9juch9v0fc97fff3c85nu9f9gveu83dldej07jxysyrrg7m/rise',
|
|
1521
|
+
name: 'Rise',
|
|
1522
|
+
symbol: 'RISE',
|
|
1523
|
+
display: 'rise',
|
|
1524
|
+
description: 'PhoenixRiseMeme',
|
|
1525
|
+
type_asset: 'sdk.coin',
|
|
1526
|
+
address: 'terra1dvvduq0uegn9juch9v0fc97fff3c85nu9f9gveu83dldej07jxysyrrg7m',
|
|
1527
|
+
denom_units: [{
|
|
1528
|
+
denom: 'factory/terra1dvvduq0uegn9juch9v0fc97fff3c85nu9f9gveu83dldej07jxysyrrg7m/rise',
|
|
1529
|
+
exponent: 0
|
|
1530
|
+
}, {
|
|
1531
|
+
denom: 'rise',
|
|
1532
|
+
exponent: 6
|
|
1533
|
+
}],
|
|
1534
|
+
logo_URIs: {
|
|
1535
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/RISE.png'
|
|
1536
|
+
}
|
|
1518
1537
|
}
|
|
1519
1538
|
]
|
|
1520
1539
|
};
|
package/mainnet/terra2/ibc.js
CHANGED
|
@@ -971,6 +971,35 @@ const info = [
|
|
|
971
971
|
}
|
|
972
972
|
]
|
|
973
973
|
},
|
|
974
|
+
{
|
|
975
|
+
$schema: '../ibc_data.schema.json',
|
|
976
|
+
chain_1: {
|
|
977
|
+
chain_name: 'quicksilver',
|
|
978
|
+
client_id: '07-tendermint-108',
|
|
979
|
+
connection_id: 'connection-69'
|
|
980
|
+
},
|
|
981
|
+
chain_2: {
|
|
982
|
+
chain_name: 'terra2',
|
|
983
|
+
client_id: '07-tendermint-430',
|
|
984
|
+
connection_id: 'connection-442'
|
|
985
|
+
},
|
|
986
|
+
channels: [{
|
|
987
|
+
chain_1: {
|
|
988
|
+
channel_id: 'channel-244',
|
|
989
|
+
port_id: 'transfer'
|
|
990
|
+
},
|
|
991
|
+
chain_2: {
|
|
992
|
+
channel_id: 'channel-604',
|
|
993
|
+
port_id: 'transfer'
|
|
994
|
+
},
|
|
995
|
+
ordering: 'unordered',
|
|
996
|
+
version: 'ics20-1',
|
|
997
|
+
tags: {
|
|
998
|
+
status: 'live',
|
|
999
|
+
preferred: true
|
|
1000
|
+
}
|
|
1001
|
+
}]
|
|
1002
|
+
},
|
|
974
1003
|
{
|
|
975
1004
|
$schema: '../ibc_data.schema.json',
|
|
976
1005
|
chain_1: {
|
package/mainnet/umee/ibc.js
CHANGED
package/mainnet/xion/ibc.js
CHANGED
|
@@ -145,6 +145,35 @@ const info = [
|
|
|
145
145
|
preferred: true
|
|
146
146
|
}
|
|
147
147
|
}]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
$schema: '../ibc_data.schema.json',
|
|
151
|
+
chain_1: {
|
|
152
|
+
chain_name: 'quicksilver',
|
|
153
|
+
client_id: '07-tendermint-102',
|
|
154
|
+
connection_id: 'connection-67'
|
|
155
|
+
},
|
|
156
|
+
chain_2: {
|
|
157
|
+
chain_name: 'xion',
|
|
158
|
+
client_id: '07-tendermint-6',
|
|
159
|
+
connection_id: 'connection-7'
|
|
160
|
+
},
|
|
161
|
+
channels: [{
|
|
162
|
+
chain_1: {
|
|
163
|
+
channel_id: 'channel-229',
|
|
164
|
+
port_id: 'transfer'
|
|
165
|
+
},
|
|
166
|
+
chain_2: {
|
|
167
|
+
channel_id: 'channel-8',
|
|
168
|
+
port_id: 'transfer'
|
|
169
|
+
},
|
|
170
|
+
ordering: 'unordered',
|
|
171
|
+
version: 'ics20-1',
|
|
172
|
+
tags: {
|
|
173
|
+
status: 'live',
|
|
174
|
+
preferred: true
|
|
175
|
+
}
|
|
176
|
+
}]
|
|
148
177
|
}
|
|
149
178
|
];
|
|
150
179
|
exports.default = info;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.108",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.51.
|
|
32
|
+
"@chain-registry/utils": "^1.51.58",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.58"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "875d166e41b678d20c6a4d9559eed8313b164c96"
|
|
47
47
|
}
|
|
@@ -260,6 +260,45 @@ const info = {
|
|
|
260
260
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png'
|
|
261
261
|
},
|
|
262
262
|
type_asset: 'sdk.coin'
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
description: 'The native token of Manifest Ledger',
|
|
266
|
+
denom_units: [{
|
|
267
|
+
denom: 'ibc/EAC654CC560CC03D82AE4BAA808BD0B6E06E9F29F62194B46C0502D967349E24',
|
|
268
|
+
exponent: 0
|
|
269
|
+
}, {
|
|
270
|
+
denom: 'mfx',
|
|
271
|
+
exponent: 6
|
|
272
|
+
}],
|
|
273
|
+
type_asset: 'ics20',
|
|
274
|
+
base: 'ibc/EAC654CC560CC03D82AE4BAA808BD0B6E06E9F29F62194B46C0502D967349E24',
|
|
275
|
+
name: 'Manifest',
|
|
276
|
+
display: 'mfx',
|
|
277
|
+
symbol: 'MFX',
|
|
278
|
+
traces: [{
|
|
279
|
+
type: 'ibc',
|
|
280
|
+
counterparty: {
|
|
281
|
+
chain_name: 'manifesttestnet',
|
|
282
|
+
base_denom: 'umfx',
|
|
283
|
+
channel_id: 'channel-3'
|
|
284
|
+
},
|
|
285
|
+
chain: {
|
|
286
|
+
channel_id: 'channel-590',
|
|
287
|
+
path: 'transfer/channel-590/umfx'
|
|
288
|
+
}
|
|
289
|
+
}],
|
|
290
|
+
images: [{
|
|
291
|
+
image_sync: {
|
|
292
|
+
chain_name: 'manifesttestnet',
|
|
293
|
+
base_denom: 'umfx'
|
|
294
|
+
},
|
|
295
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.png',
|
|
296
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg'
|
|
297
|
+
}],
|
|
298
|
+
logo_URIs: {
|
|
299
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.png',
|
|
300
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifest/images/manifest.svg'
|
|
301
|
+
}
|
|
263
302
|
}
|
|
264
303
|
]
|
|
265
304
|
};
|
|
@@ -87,6 +87,34 @@ const info = [
|
|
|
87
87
|
}
|
|
88
88
|
}]
|
|
89
89
|
},
|
|
90
|
+
{
|
|
91
|
+
$schema: '../../ibc_data.schema.json',
|
|
92
|
+
chain_1: {
|
|
93
|
+
chain_name: 'axelartestnet',
|
|
94
|
+
client_id: '07-tendermint-1083',
|
|
95
|
+
connection_id: 'connection-843'
|
|
96
|
+
},
|
|
97
|
+
chain_2: {
|
|
98
|
+
chain_name: 'manifesttestnet',
|
|
99
|
+
client_id: '07-tendermint-7',
|
|
100
|
+
connection_id: 'connection-8'
|
|
101
|
+
},
|
|
102
|
+
channels: [{
|
|
103
|
+
chain_1: {
|
|
104
|
+
channel_id: 'channel-590',
|
|
105
|
+
port_id: 'transfer'
|
|
106
|
+
},
|
|
107
|
+
chain_2: {
|
|
108
|
+
channel_id: 'channel-3',
|
|
109
|
+
port_id: 'transfer'
|
|
110
|
+
},
|
|
111
|
+
ordering: 'unordered',
|
|
112
|
+
version: 'ics20-1',
|
|
113
|
+
tags: {
|
|
114
|
+
status: 'live'
|
|
115
|
+
}
|
|
116
|
+
}]
|
|
117
|
+
},
|
|
90
118
|
{
|
|
91
119
|
$schema: '../../ibc_data.schema.json',
|
|
92
120
|
chain_1: {
|