chain-registry 2.0.34 → 2.0.36
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/esm/mainnet/atomone/chain.js +12 -0
- package/esm/mainnet/bitbadges/ibc-data.js +35 -3
- package/esm/mainnet/cosmoshub/ibc-data.js +29 -0
- package/esm/mainnet/elys/chain.js +5 -5
- package/esm/mainnet/ibc-data.js +4 -0
- package/esm/mainnet/injective/asset-list.js +27 -0
- package/esm/mainnet/int3face/asset-list.js +64 -0
- package/esm/mainnet/mtgbp/ibc-data.js +31 -0
- package/esm/mainnet/mtgbp/index.js +2 -0
- package/esm/mainnet/osmosis/asset-list.js +182 -0
- package/esm/mainnet/osmosis/ibc-data.js +60 -0
- package/esm/mainnet/qfs/ibc-data.js +31 -0
- package/esm/mainnet/qfs/index.js +2 -0
- package/esm/mainnet/solana/asset-list.js +46 -0
- package/esm/mainnet/sunrise/chain.js +26 -14
- package/esm/testnet/sunrisetestnet/chain.js +14 -9
- package/mainnet/atomone/chain.js +12 -0
- package/mainnet/bitbadges/ibc-data.js +35 -3
- package/mainnet/cosmoshub/ibc-data.js +29 -0
- package/mainnet/elys/chain.js +5 -5
- package/mainnet/ibc-data.js +4 -0
- package/mainnet/injective/asset-list.js +27 -0
- package/mainnet/int3face/asset-list.js +64 -0
- package/mainnet/mtgbp/ibc-data.d.ts +3 -0
- package/mainnet/mtgbp/ibc-data.js +33 -0
- package/mainnet/mtgbp/index.d.ts +1 -0
- package/mainnet/mtgbp/index.js +3 -1
- package/mainnet/osmosis/asset-list.js +182 -0
- package/mainnet/osmosis/ibc-data.js +60 -0
- package/mainnet/qfs/ibc-data.d.ts +3 -0
- package/mainnet/qfs/ibc-data.js +33 -0
- package/mainnet/qfs/index.d.ts +1 -0
- package/mainnet/qfs/index.js +3 -1
- package/mainnet/solana/asset-list.js +46 -0
- package/mainnet/sunrise/chain.js +26 -14
- package/package.json +3 -3
- package/testnet/sunrisetestnet/chain.js +14 -9
|
@@ -146,6 +146,10 @@ const info = {
|
|
|
146
146
|
{
|
|
147
147
|
address: 'https://atomone-mainnet-rpc.shazoes.xyz',
|
|
148
148
|
provider: 'Shazoes'
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
address: 'https://rpc-atomone.22node.xyz',
|
|
152
|
+
provider: '22node'
|
|
149
153
|
}
|
|
150
154
|
],
|
|
151
155
|
rest: [
|
|
@@ -232,6 +236,10 @@ const info = {
|
|
|
232
236
|
{
|
|
233
237
|
address: 'https://atomone-mainnet-api.shazoes.xyz',
|
|
234
238
|
provider: 'Shazoes'
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
address: 'https://rest-atomone.22node.xyz',
|
|
242
|
+
provider: '22node'
|
|
235
243
|
}
|
|
236
244
|
],
|
|
237
245
|
grpc: [
|
|
@@ -290,6 +298,10 @@ const info = {
|
|
|
290
298
|
{
|
|
291
299
|
address: 'atomone-mainnet-grpc.shazoes.xyz:12090',
|
|
292
300
|
provider: 'Shazoes'
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
address: 'grpc-atomone.22node.xyz',
|
|
304
|
+
provider: 'Shazoes'
|
|
293
305
|
}
|
|
294
306
|
]
|
|
295
307
|
},
|
|
@@ -1,4 +1,34 @@
|
|
|
1
|
-
const info = [
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'bitbadges',
|
|
6
|
+
clientId: '07-tendermint-16',
|
|
7
|
+
connectionId: 'connection-8'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'cosmoshub',
|
|
11
|
+
clientId: '07-tendermint-1428',
|
|
12
|
+
connectionId: 'connection-1147'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain1: {
|
|
16
|
+
channelId: 'channel-3',
|
|
17
|
+
portId: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain2: {
|
|
20
|
+
channelId: 'channel-1420',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
status: 'live',
|
|
27
|
+
preferred: true
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
2
32
|
$schema: '../ibc_data.schema.json',
|
|
3
33
|
chain1: {
|
|
4
34
|
chainName: 'bitbadges',
|
|
@@ -26,7 +56,8 @@ const info = [{
|
|
|
26
56
|
preferred: true
|
|
27
57
|
}
|
|
28
58
|
}]
|
|
29
|
-
},
|
|
59
|
+
},
|
|
60
|
+
{
|
|
30
61
|
$schema: '../ibc_data.schema.json',
|
|
31
62
|
chain1: {
|
|
32
63
|
chainName: 'bitbadges',
|
|
@@ -55,5 +86,6 @@ const info = [{
|
|
|
55
86
|
dex: 'osmosis'
|
|
56
87
|
}
|
|
57
88
|
}]
|
|
58
|
-
}
|
|
89
|
+
}
|
|
90
|
+
];
|
|
59
91
|
export default info;
|
|
@@ -253,6 +253,35 @@ const info = [
|
|
|
253
253
|
}
|
|
254
254
|
}]
|
|
255
255
|
},
|
|
256
|
+
{
|
|
257
|
+
$schema: '../ibc_data.schema.json',
|
|
258
|
+
chain1: {
|
|
259
|
+
chainName: 'bitbadges',
|
|
260
|
+
clientId: '07-tendermint-16',
|
|
261
|
+
connectionId: 'connection-8'
|
|
262
|
+
},
|
|
263
|
+
chain2: {
|
|
264
|
+
chainName: 'cosmoshub',
|
|
265
|
+
clientId: '07-tendermint-1428',
|
|
266
|
+
connectionId: 'connection-1147'
|
|
267
|
+
},
|
|
268
|
+
channels: [{
|
|
269
|
+
chain1: {
|
|
270
|
+
channelId: 'channel-3',
|
|
271
|
+
portId: 'transfer'
|
|
272
|
+
},
|
|
273
|
+
chain2: {
|
|
274
|
+
channelId: 'channel-1420',
|
|
275
|
+
portId: 'transfer'
|
|
276
|
+
},
|
|
277
|
+
ordering: 'unordered',
|
|
278
|
+
version: 'ics20-1',
|
|
279
|
+
tags: {
|
|
280
|
+
status: 'live',
|
|
281
|
+
preferred: true
|
|
282
|
+
}
|
|
283
|
+
}]
|
|
284
|
+
},
|
|
256
285
|
{
|
|
257
286
|
$schema: '../ibc_data.schema.json',
|
|
258
287
|
chain1: {
|
|
@@ -153,8 +153,8 @@ const info = {
|
|
|
153
153
|
provider: 'Node39'
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
|
-
address: 'https://elys.
|
|
157
|
-
provider: 'vNodes[V]
|
|
156
|
+
address: 'https://rpc.elys.srvs.vnodesv.net',
|
|
157
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
address: 'https://elys-rpc.kleomedes.network/',
|
|
@@ -239,8 +239,8 @@ const info = {
|
|
|
239
239
|
provider: 'Node39'
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
|
-
address: 'https://elys.
|
|
243
|
-
provider: 'vNodes[V]
|
|
242
|
+
address: 'https://rest.elys.srvs.vnodesv.net:443',
|
|
243
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
address: 'https://elys-api.kleomedes.network/',
|
|
@@ -309,7 +309,7 @@ const info = {
|
|
|
309
309
|
provider: 'Pro-Nodes75'
|
|
310
310
|
},
|
|
311
311
|
{
|
|
312
|
-
address: 'https://elys.
|
|
312
|
+
address: 'https://grpc.elys.srvs.vnodesv.net:443',
|
|
313
313
|
provider: 'vNodes[V] Ser[V]ices'
|
|
314
314
|
}
|
|
315
315
|
]
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -92,6 +92,7 @@ import * as _medasdigital from './medasdigital';
|
|
|
92
92
|
import * as _meme from './meme';
|
|
93
93
|
import * as _migaloo from './migaloo';
|
|
94
94
|
import * as _milkyway from './milkyway';
|
|
95
|
+
import * as _mtgbp from './mtgbp';
|
|
95
96
|
import * as _neutaro from './neutaro';
|
|
96
97
|
import * as _neutron from './neutron';
|
|
97
98
|
import * as _nibiru from './nibiru';
|
|
@@ -117,6 +118,7 @@ import * as _provenance from './provenance';
|
|
|
117
118
|
import * as _pryzm from './pryzm';
|
|
118
119
|
import * as _pundix from './pundix';
|
|
119
120
|
import * as _pylons from './pylons';
|
|
121
|
+
import * as _qfs from './qfs';
|
|
120
122
|
import * as _quasar from './quasar';
|
|
121
123
|
import * as _quicksilver from './quicksilver';
|
|
122
124
|
import * as _qwoyn from './qwoyn';
|
|
@@ -255,6 +257,7 @@ const ibcData = [
|
|
|
255
257
|
..._meme.ibcData,
|
|
256
258
|
..._migaloo.ibcData,
|
|
257
259
|
..._milkyway.ibcData,
|
|
260
|
+
..._mtgbp.ibcData,
|
|
258
261
|
..._neutaro.ibcData,
|
|
259
262
|
..._neutron.ibcData,
|
|
260
263
|
..._nibiru.ibcData,
|
|
@@ -280,6 +283,7 @@ const ibcData = [
|
|
|
280
283
|
..._pryzm.ibcData,
|
|
281
284
|
..._pundix.ibcData,
|
|
282
285
|
..._pylons.ibcData,
|
|
286
|
+
..._qfs.ibcData,
|
|
283
287
|
..._quasar.ibcData,
|
|
284
288
|
..._quicksilver.ibcData,
|
|
285
289
|
..._qwoyn.ibcData,
|
|
@@ -1315,6 +1315,33 @@ const info = {
|
|
|
1315
1315
|
primaryColorHex: '#f39444'
|
|
1316
1316
|
}
|
|
1317
1317
|
}]
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
description: 'Agora USD Coin',
|
|
1321
|
+
denomUnits: [{
|
|
1322
|
+
denom: 'factory/inj1n636d9gzrqggdk66n2f97th0x8yuhfrtx520e7/ausd',
|
|
1323
|
+
exponent: 0
|
|
1324
|
+
}, {
|
|
1325
|
+
denom: 'AUSD',
|
|
1326
|
+
exponent: 6
|
|
1327
|
+
}],
|
|
1328
|
+
base: 'factory/inj1n636d9gzrqggdk66n2f97th0x8yuhfrtx520e7/ausd',
|
|
1329
|
+
name: 'Agora USD',
|
|
1330
|
+
display: 'AUSD',
|
|
1331
|
+
symbol: 'AUSD',
|
|
1332
|
+
logoURIs: {
|
|
1333
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ausd.png'
|
|
1334
|
+
},
|
|
1335
|
+
images: [{
|
|
1336
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ausd.png',
|
|
1337
|
+
theme: {
|
|
1338
|
+
primaryColorHex: '#9A934F'
|
|
1339
|
+
}
|
|
1340
|
+
}],
|
|
1341
|
+
socials: {
|
|
1342
|
+
website: 'https://agora.finance'
|
|
1343
|
+
},
|
|
1344
|
+
typeAsset: 'sdk.coin'
|
|
1318
1345
|
}
|
|
1319
1346
|
]
|
|
1320
1347
|
};
|
|
@@ -272,6 +272,70 @@ const info = {
|
|
|
272
272
|
}
|
|
273
273
|
}],
|
|
274
274
|
typeAsset: 'sdk.coin'
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
description: 'Official Trump coin (TRUMP) on Int3face',
|
|
278
|
+
denomUnits: [{
|
|
279
|
+
denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-trump',
|
|
280
|
+
exponent: 0
|
|
281
|
+
}, {
|
|
282
|
+
denom: 'trump',
|
|
283
|
+
exponent: 6
|
|
284
|
+
}],
|
|
285
|
+
base: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-trump',
|
|
286
|
+
name: 'Official Trump',
|
|
287
|
+
display: 'trump',
|
|
288
|
+
symbol: 'TRUMP',
|
|
289
|
+
traces: [{
|
|
290
|
+
type: 'bridge',
|
|
291
|
+
counterparty: {
|
|
292
|
+
chainName: 'solana',
|
|
293
|
+
baseDenom: '6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN'
|
|
294
|
+
},
|
|
295
|
+
provider: 'Int3face'
|
|
296
|
+
}],
|
|
297
|
+
logoURIs: {
|
|
298
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/trump.int3.png'
|
|
299
|
+
},
|
|
300
|
+
images: [{
|
|
301
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/trump.int3.png',
|
|
302
|
+
theme: {
|
|
303
|
+
primaryColorHex: '#3d3d3d'
|
|
304
|
+
}
|
|
305
|
+
}],
|
|
306
|
+
typeAsset: 'sdk.coin'
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
description: 'Pudgy Penguins coin (PENGU) on Int3face',
|
|
310
|
+
denomUnits: [{
|
|
311
|
+
denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-pengu',
|
|
312
|
+
exponent: 0
|
|
313
|
+
}, {
|
|
314
|
+
denom: 'pengu',
|
|
315
|
+
exponent: 6
|
|
316
|
+
}],
|
|
317
|
+
base: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-pengu',
|
|
318
|
+
name: 'Pudgy Penguins',
|
|
319
|
+
display: 'pengu',
|
|
320
|
+
symbol: 'PENGU',
|
|
321
|
+
traces: [{
|
|
322
|
+
type: 'bridge',
|
|
323
|
+
counterparty: {
|
|
324
|
+
chainName: 'solana',
|
|
325
|
+
baseDenom: '2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv'
|
|
326
|
+
},
|
|
327
|
+
provider: 'Int3face'
|
|
328
|
+
}],
|
|
329
|
+
logoURIs: {
|
|
330
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/pengu.int3.png'
|
|
331
|
+
},
|
|
332
|
+
images: [{
|
|
333
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/pengu.int3.png',
|
|
334
|
+
theme: {
|
|
335
|
+
primaryColorHex: '#3d3d3d'
|
|
336
|
+
}
|
|
337
|
+
}],
|
|
338
|
+
typeAsset: 'sdk.coin'
|
|
275
339
|
}
|
|
276
340
|
]
|
|
277
341
|
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'mtgbp',
|
|
5
|
+
clientId: '07-tendermint-0',
|
|
6
|
+
connectionId: 'connection-0'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'osmosis',
|
|
10
|
+
clientId: '07-tendermint-3531',
|
|
11
|
+
connectionId: 'connection-10772'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-0',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-105394',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true,
|
|
27
|
+
dex: 'osmosis'
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
}];
|
|
31
|
+
export default info;
|
|
@@ -24731,6 +24731,188 @@ const info = {
|
|
|
24731
24731
|
images: [{
|
|
24732
24732
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/FOST.png'
|
|
24733
24733
|
}]
|
|
24734
|
+
},
|
|
24735
|
+
{
|
|
24736
|
+
description: 'Official Trump (TRUMP) coin bridged via Int3face bridge',
|
|
24737
|
+
denomUnits: [{
|
|
24738
|
+
denom: 'ibc/51BFF64A432CBBA08A1ED95609BF0255EC4BBF699BFCDFF267F66CCD664CA350',
|
|
24739
|
+
exponent: 0,
|
|
24740
|
+
aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-trump']
|
|
24741
|
+
}, {
|
|
24742
|
+
denom: 'trump',
|
|
24743
|
+
exponent: 6
|
|
24744
|
+
}],
|
|
24745
|
+
typeAsset: 'ics20',
|
|
24746
|
+
base: 'ibc/51BFF64A432CBBA08A1ED95609BF0255EC4BBF699BFCDFF267F66CCD664CA350',
|
|
24747
|
+
name: 'Official Trump (Int3)',
|
|
24748
|
+
display: 'trump',
|
|
24749
|
+
symbol: 'TRUMP.int3',
|
|
24750
|
+
traces: [{
|
|
24751
|
+
type: 'bridge',
|
|
24752
|
+
counterparty: {
|
|
24753
|
+
chainName: 'solana',
|
|
24754
|
+
baseDenom: '6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN'
|
|
24755
|
+
},
|
|
24756
|
+
provider: 'Int3face'
|
|
24757
|
+
}, {
|
|
24758
|
+
type: 'ibc',
|
|
24759
|
+
counterparty: {
|
|
24760
|
+
chainName: 'int3face',
|
|
24761
|
+
baseDenom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-trump',
|
|
24762
|
+
channelId: 'channel-0'
|
|
24763
|
+
},
|
|
24764
|
+
chain: {
|
|
24765
|
+
channelId: 'channel-82819',
|
|
24766
|
+
path: 'transfer/channel-82819/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-trump'
|
|
24767
|
+
}
|
|
24768
|
+
}],
|
|
24769
|
+
logoURIs: {
|
|
24770
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/trump.int3.png'
|
|
24771
|
+
},
|
|
24772
|
+
images: [{
|
|
24773
|
+
imageSync: {
|
|
24774
|
+
chainName: 'int3face',
|
|
24775
|
+
baseDenom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-trump'
|
|
24776
|
+
},
|
|
24777
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/trump.int3.png',
|
|
24778
|
+
theme: {
|
|
24779
|
+
primaryColorHex: '#3d3d3d'
|
|
24780
|
+
}
|
|
24781
|
+
}]
|
|
24782
|
+
},
|
|
24783
|
+
{
|
|
24784
|
+
description: 'Pudgy Penguins (PENGU) coin bridged via Int3face bridge',
|
|
24785
|
+
denomUnits: [{
|
|
24786
|
+
denom: 'ibc/2C5CB5DB3D86F64FDE6155A3A94D7543A126DA55490309EEDF59A0765873DA1C',
|
|
24787
|
+
exponent: 0,
|
|
24788
|
+
aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-pengu']
|
|
24789
|
+
}, {
|
|
24790
|
+
denom: 'pengu',
|
|
24791
|
+
exponent: 6
|
|
24792
|
+
}],
|
|
24793
|
+
typeAsset: 'ics20',
|
|
24794
|
+
base: 'ibc/2C5CB5DB3D86F64FDE6155A3A94D7543A126DA55490309EEDF59A0765873DA1C',
|
|
24795
|
+
name: 'Pudgy Penguins (Int3)',
|
|
24796
|
+
display: 'pengu',
|
|
24797
|
+
symbol: 'PENGU.int3',
|
|
24798
|
+
traces: [{
|
|
24799
|
+
type: 'bridge',
|
|
24800
|
+
counterparty: {
|
|
24801
|
+
chainName: 'solana',
|
|
24802
|
+
baseDenom: '2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv'
|
|
24803
|
+
},
|
|
24804
|
+
provider: 'Int3face'
|
|
24805
|
+
}, {
|
|
24806
|
+
type: 'ibc',
|
|
24807
|
+
counterparty: {
|
|
24808
|
+
chainName: 'int3face',
|
|
24809
|
+
baseDenom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-pengu',
|
|
24810
|
+
channelId: 'channel-0'
|
|
24811
|
+
},
|
|
24812
|
+
chain: {
|
|
24813
|
+
channelId: 'channel-82819',
|
|
24814
|
+
path: 'transfer/channel-82819/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-pengu'
|
|
24815
|
+
}
|
|
24816
|
+
}],
|
|
24817
|
+
logoURIs: {
|
|
24818
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/pengu.int3.png'
|
|
24819
|
+
},
|
|
24820
|
+
images: [{
|
|
24821
|
+
imageSync: {
|
|
24822
|
+
chainName: 'int3face',
|
|
24823
|
+
baseDenom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/solana-pengu'
|
|
24824
|
+
},
|
|
24825
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/pengu.int3.png',
|
|
24826
|
+
theme: {
|
|
24827
|
+
primaryColorHex: '#3d3d3d'
|
|
24828
|
+
}
|
|
24829
|
+
}]
|
|
24830
|
+
},
|
|
24831
|
+
{
|
|
24832
|
+
denomUnits: [{
|
|
24833
|
+
denom: 'ibc/83A99F99AF326090B74CD5D17EE61776C7791B537EE6808F4951A184EDCCA0D9',
|
|
24834
|
+
exponent: 0,
|
|
24835
|
+
aliases: ['uqfs']
|
|
24836
|
+
}, {
|
|
24837
|
+
denom: 'qfs',
|
|
24838
|
+
exponent: 6,
|
|
24839
|
+
aliases: []
|
|
24840
|
+
}],
|
|
24841
|
+
typeAsset: 'ics20',
|
|
24842
|
+
base: 'ibc/83A99F99AF326090B74CD5D17EE61776C7791B537EE6808F4951A184EDCCA0D9',
|
|
24843
|
+
name: 'QFS',
|
|
24844
|
+
display: 'qfs',
|
|
24845
|
+
symbol: 'QFS',
|
|
24846
|
+
traces: [{
|
|
24847
|
+
type: 'ibc',
|
|
24848
|
+
counterparty: {
|
|
24849
|
+
chainName: 'qfs',
|
|
24850
|
+
baseDenom: 'uqfs',
|
|
24851
|
+
channelId: 'channel-0'
|
|
24852
|
+
},
|
|
24853
|
+
chain: {
|
|
24854
|
+
channelId: 'channel-105393',
|
|
24855
|
+
path: 'transfer/channel-105393/uqfs'
|
|
24856
|
+
}
|
|
24857
|
+
}],
|
|
24858
|
+
logoURIs: {
|
|
24859
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.png',
|
|
24860
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.svg'
|
|
24861
|
+
},
|
|
24862
|
+
images: [{
|
|
24863
|
+
imageSync: {
|
|
24864
|
+
chainName: 'qfs',
|
|
24865
|
+
baseDenom: 'uqfs'
|
|
24866
|
+
},
|
|
24867
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.png',
|
|
24868
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qfs/images/qfs.svg',
|
|
24869
|
+
theme: {
|
|
24870
|
+
primaryColorHex: '#41918c'
|
|
24871
|
+
}
|
|
24872
|
+
}]
|
|
24873
|
+
},
|
|
24874
|
+
{
|
|
24875
|
+
denomUnits: [{
|
|
24876
|
+
denom: 'ibc/698687E700D8B255FAB6B8145CE25B12591C99296965DB5C2C5DD5FE0AB685BF',
|
|
24877
|
+
exponent: 0,
|
|
24878
|
+
aliases: ['umtgbp']
|
|
24879
|
+
}, {
|
|
24880
|
+
denom: 'mtgbp',
|
|
24881
|
+
exponent: 6,
|
|
24882
|
+
aliases: []
|
|
24883
|
+
}],
|
|
24884
|
+
typeAsset: 'ics20',
|
|
24885
|
+
base: 'ibc/698687E700D8B255FAB6B8145CE25B12591C99296965DB5C2C5DD5FE0AB685BF',
|
|
24886
|
+
name: 'MTGBP',
|
|
24887
|
+
display: 'mtgbp',
|
|
24888
|
+
symbol: 'MTGBP',
|
|
24889
|
+
traces: [{
|
|
24890
|
+
type: 'ibc',
|
|
24891
|
+
counterparty: {
|
|
24892
|
+
chainName: 'mtgbp',
|
|
24893
|
+
baseDenom: 'umtgbp',
|
|
24894
|
+
channelId: 'channel-0'
|
|
24895
|
+
},
|
|
24896
|
+
chain: {
|
|
24897
|
+
channelId: 'channel-105394',
|
|
24898
|
+
path: 'transfer/channel-105394/umtgbp'
|
|
24899
|
+
}
|
|
24900
|
+
}],
|
|
24901
|
+
logoURIs: {
|
|
24902
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.png',
|
|
24903
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.svg'
|
|
24904
|
+
},
|
|
24905
|
+
images: [{
|
|
24906
|
+
imageSync: {
|
|
24907
|
+
chainName: 'mtgbp',
|
|
24908
|
+
baseDenom: 'umtgbp'
|
|
24909
|
+
},
|
|
24910
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.png',
|
|
24911
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mtgbp/images/mtgbp.svg',
|
|
24912
|
+
theme: {
|
|
24913
|
+
primaryColorHex: '#41918c'
|
|
24914
|
+
}
|
|
24915
|
+
}]
|
|
24734
24916
|
}
|
|
24735
24917
|
]
|
|
24736
24918
|
};
|
|
@@ -2889,6 +2889,36 @@ const info = [
|
|
|
2889
2889
|
}
|
|
2890
2890
|
}]
|
|
2891
2891
|
},
|
|
2892
|
+
{
|
|
2893
|
+
$schema: '../ibc_data.schema.json',
|
|
2894
|
+
chain1: {
|
|
2895
|
+
chainName: 'mtgbp',
|
|
2896
|
+
clientId: '07-tendermint-0',
|
|
2897
|
+
connectionId: 'connection-0'
|
|
2898
|
+
},
|
|
2899
|
+
chain2: {
|
|
2900
|
+
chainName: 'osmosis',
|
|
2901
|
+
clientId: '07-tendermint-3531',
|
|
2902
|
+
connectionId: 'connection-10772'
|
|
2903
|
+
},
|
|
2904
|
+
channels: [{
|
|
2905
|
+
chain1: {
|
|
2906
|
+
channelId: 'channel-0',
|
|
2907
|
+
portId: 'transfer'
|
|
2908
|
+
},
|
|
2909
|
+
chain2: {
|
|
2910
|
+
channelId: 'channel-105394',
|
|
2911
|
+
portId: 'transfer'
|
|
2912
|
+
},
|
|
2913
|
+
ordering: 'unordered',
|
|
2914
|
+
version: 'ics20-1',
|
|
2915
|
+
tags: {
|
|
2916
|
+
status: 'live',
|
|
2917
|
+
preferred: true,
|
|
2918
|
+
dex: 'osmosis'
|
|
2919
|
+
}
|
|
2920
|
+
}]
|
|
2921
|
+
},
|
|
2892
2922
|
{
|
|
2893
2923
|
$schema: '../ibc_data.schema.json',
|
|
2894
2924
|
chain1: {
|
|
@@ -3690,6 +3720,36 @@ const info = [
|
|
|
3690
3720
|
}
|
|
3691
3721
|
}]
|
|
3692
3722
|
},
|
|
3723
|
+
{
|
|
3724
|
+
$schema: '../ibc_data.schema.json',
|
|
3725
|
+
chain1: {
|
|
3726
|
+
chainName: 'osmosis',
|
|
3727
|
+
clientId: '07-tendermint-3530',
|
|
3728
|
+
connectionId: 'connection-10771'
|
|
3729
|
+
},
|
|
3730
|
+
chain2: {
|
|
3731
|
+
chainName: 'qfs',
|
|
3732
|
+
clientId: '07-tendermint-0',
|
|
3733
|
+
connectionId: 'connection-0'
|
|
3734
|
+
},
|
|
3735
|
+
channels: [{
|
|
3736
|
+
chain1: {
|
|
3737
|
+
channelId: 'channel-105393',
|
|
3738
|
+
portId: 'transfer'
|
|
3739
|
+
},
|
|
3740
|
+
chain2: {
|
|
3741
|
+
channelId: 'channel-0',
|
|
3742
|
+
portId: 'transfer'
|
|
3743
|
+
},
|
|
3744
|
+
ordering: 'unordered',
|
|
3745
|
+
version: 'ics20-1',
|
|
3746
|
+
tags: {
|
|
3747
|
+
status: 'live',
|
|
3748
|
+
preferred: true,
|
|
3749
|
+
dex: 'osmosis'
|
|
3750
|
+
}
|
|
3751
|
+
}]
|
|
3752
|
+
},
|
|
3693
3753
|
{
|
|
3694
3754
|
$schema: '../ibc_data.schema.json',
|
|
3695
3755
|
chain1: {
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'osmosis',
|
|
5
|
+
clientId: '07-tendermint-3530',
|
|
6
|
+
connectionId: 'connection-10771'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'qfs',
|
|
10
|
+
clientId: '07-tendermint-0',
|
|
11
|
+
connectionId: 'connection-0'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-105393',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-0',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true,
|
|
27
|
+
dex: 'osmosis'
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
}];
|
|
31
|
+
export default info;
|