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
package/mainnet/agoric/ibc.js
CHANGED
|
@@ -406,6 +406,35 @@ const info = [
|
|
|
406
406
|
}
|
|
407
407
|
}]
|
|
408
408
|
},
|
|
409
|
+
{
|
|
410
|
+
$schema: '../ibc_data.schema.json',
|
|
411
|
+
chain_1: {
|
|
412
|
+
chain_name: 'agoric',
|
|
413
|
+
client_id: '07-tendermint-85',
|
|
414
|
+
connection_id: 'connection-85'
|
|
415
|
+
},
|
|
416
|
+
chain_2: {
|
|
417
|
+
chain_name: 'quicksilver',
|
|
418
|
+
client_id: '07-tendermint-84',
|
|
419
|
+
connection_id: 'connection-60'
|
|
420
|
+
},
|
|
421
|
+
channels: [{
|
|
422
|
+
chain_1: {
|
|
423
|
+
channel_id: 'channel-68',
|
|
424
|
+
port_id: 'transfer'
|
|
425
|
+
},
|
|
426
|
+
chain_2: {
|
|
427
|
+
channel_id: 'channel-125',
|
|
428
|
+
port_id: 'transfer'
|
|
429
|
+
},
|
|
430
|
+
ordering: 'unordered',
|
|
431
|
+
version: 'ics20-1',
|
|
432
|
+
tags: {
|
|
433
|
+
status: 'live',
|
|
434
|
+
preferred: true
|
|
435
|
+
}
|
|
436
|
+
}]
|
|
437
|
+
},
|
|
409
438
|
{
|
|
410
439
|
$schema: '../ibc_data.schema.json',
|
|
411
440
|
chain_1: {
|
package/mainnet/archway/ibc.js
CHANGED
package/mainnet/axelar/ibc.js
CHANGED
|
@@ -558,21 +558,21 @@ const info = [
|
|
|
558
558
|
$schema: '../ibc_data.schema.json',
|
|
559
559
|
chain_1: {
|
|
560
560
|
chain_name: 'axelar',
|
|
561
|
-
client_id: '07-tendermint-
|
|
562
|
-
connection_id: 'connection-
|
|
561
|
+
client_id: '07-tendermint-235',
|
|
562
|
+
connection_id: 'connection-225'
|
|
563
563
|
},
|
|
564
564
|
chain_2: {
|
|
565
565
|
chain_name: 'jackal',
|
|
566
|
-
client_id: '07-tendermint-
|
|
567
|
-
connection_id: 'connection-
|
|
566
|
+
client_id: '07-tendermint-80',
|
|
567
|
+
connection_id: 'connection-66'
|
|
568
568
|
},
|
|
569
569
|
channels: [{
|
|
570
570
|
chain_1: {
|
|
571
|
-
channel_id: 'channel-
|
|
571
|
+
channel_id: 'channel-168',
|
|
572
572
|
port_id: 'transfer'
|
|
573
573
|
},
|
|
574
574
|
chain_2: {
|
|
575
|
-
channel_id: 'channel-
|
|
575
|
+
channel_id: 'channel-153',
|
|
576
576
|
port_id: 'transfer'
|
|
577
577
|
},
|
|
578
578
|
ordering: 'unordered',
|
package/mainnet/celestia/ibc.js
CHANGED
|
@@ -320,6 +320,35 @@ const info = [
|
|
|
320
320
|
}
|
|
321
321
|
}]
|
|
322
322
|
},
|
|
323
|
+
{
|
|
324
|
+
$schema: '../ibc_data.schema.json',
|
|
325
|
+
chain_1: {
|
|
326
|
+
chain_name: 'celestia',
|
|
327
|
+
client_id: '07-tendermint-92',
|
|
328
|
+
connection_id: 'connection-60'
|
|
329
|
+
},
|
|
330
|
+
chain_2: {
|
|
331
|
+
chain_name: 'quicksilver',
|
|
332
|
+
client_id: '07-tendermint-97',
|
|
333
|
+
connection_id: 'connection-65'
|
|
334
|
+
},
|
|
335
|
+
channels: [{
|
|
336
|
+
chain_1: {
|
|
337
|
+
channel_id: 'channel-36',
|
|
338
|
+
port_id: 'transfer'
|
|
339
|
+
},
|
|
340
|
+
chain_2: {
|
|
341
|
+
channel_id: 'channel-207',
|
|
342
|
+
port_id: 'transfer'
|
|
343
|
+
},
|
|
344
|
+
ordering: 'unordered',
|
|
345
|
+
version: 'ics20-1',
|
|
346
|
+
tags: {
|
|
347
|
+
status: 'live',
|
|
348
|
+
preferred: true
|
|
349
|
+
}
|
|
350
|
+
}]
|
|
351
|
+
},
|
|
323
352
|
{
|
|
324
353
|
$schema: '../ibc_data.schema.json',
|
|
325
354
|
chain_1: {
|
package/mainnet/cosmoshub/ibc.js
CHANGED
package/mainnet/dydx/ibc.js
CHANGED
|
@@ -293,6 +293,35 @@ const info = [
|
|
|
293
293
|
}
|
|
294
294
|
}]
|
|
295
295
|
},
|
|
296
|
+
{
|
|
297
|
+
$schema: '../ibc_data.schema.json',
|
|
298
|
+
chain_1: {
|
|
299
|
+
chain_name: 'dydx',
|
|
300
|
+
client_id: '07-tendermint-20',
|
|
301
|
+
connection_id: 'connection-25'
|
|
302
|
+
},
|
|
303
|
+
chain_2: {
|
|
304
|
+
chain_name: 'quicksilver',
|
|
305
|
+
client_id: '07-tendermint-90',
|
|
306
|
+
connection_id: 'connection-62'
|
|
307
|
+
},
|
|
308
|
+
channels: [{
|
|
309
|
+
chain_1: {
|
|
310
|
+
channel_id: 'channel-32',
|
|
311
|
+
port_id: 'transfer'
|
|
312
|
+
},
|
|
313
|
+
chain_2: {
|
|
314
|
+
channel_id: 'channel-164',
|
|
315
|
+
port_id: 'transfer'
|
|
316
|
+
},
|
|
317
|
+
ordering: 'unordered',
|
|
318
|
+
version: 'ics20-1',
|
|
319
|
+
tags: {
|
|
320
|
+
status: 'live',
|
|
321
|
+
preferred: true
|
|
322
|
+
}
|
|
323
|
+
}]
|
|
324
|
+
},
|
|
296
325
|
{
|
|
297
326
|
$schema: '../ibc_data.schema.json',
|
|
298
327
|
chain_1: {
|
|
@@ -102,6 +102,10 @@ const info = {
|
|
|
102
102
|
{
|
|
103
103
|
address: 'https://fetchai-rpc.bluestake.net:443',
|
|
104
104
|
provider: 'BlueStake 🚀'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
address: 'https://fetch-rpc.panthea.eu:443',
|
|
108
|
+
provider: 'Panthea EU'
|
|
105
109
|
}
|
|
106
110
|
],
|
|
107
111
|
rest: [
|
|
@@ -168,6 +172,10 @@ const info = {
|
|
|
168
172
|
{
|
|
169
173
|
address: 'https://fetchai-api.bluestake.net',
|
|
170
174
|
provider: 'BlueStake 🚀'
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
address: 'https://fetch-api.panthea.eu:443',
|
|
178
|
+
provider: 'Panthea EU'
|
|
171
179
|
}
|
|
172
180
|
],
|
|
173
181
|
grpc: [
|
|
@@ -214,6 +222,10 @@ const info = {
|
|
|
214
222
|
{
|
|
215
223
|
address: 'grpc.fetchhub-4.fetch.aviaone.com:9094',
|
|
216
224
|
provider: 'AVIAONE 🟢'
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
address: 'fetch-grpc.panthea.eu:16710',
|
|
228
|
+
provider: 'Panthea EU'
|
|
217
229
|
}
|
|
218
230
|
]
|
|
219
231
|
},
|
|
@@ -1109,6 +1109,119 @@ const info = {
|
|
|
1109
1109
|
twitter: 'https://x.com/neptune_finance'
|
|
1110
1110
|
},
|
|
1111
1111
|
type_asset: 'sdk.coin'
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
description: 'Cosmos Bitcoin',
|
|
1115
|
+
denom_units: [{
|
|
1116
|
+
denom: 'factory/inj1s9hr5zfz3xrkzchde94hd2d0edjs4q5mrqrz6x/BITCOIN',
|
|
1117
|
+
exponent: 0
|
|
1118
|
+
}, {
|
|
1119
|
+
denom: 'BITCOIN',
|
|
1120
|
+
exponent: 6
|
|
1121
|
+
}],
|
|
1122
|
+
base: 'factory/inj1s9hr5zfz3xrkzchde94hd2d0edjs4q5mrqrz6x/BITCOIN',
|
|
1123
|
+
name: 'Cosmos Bitcoin',
|
|
1124
|
+
display: 'BITCOIN',
|
|
1125
|
+
symbol: 'BITCOIN',
|
|
1126
|
+
coingecko_id: ' ',
|
|
1127
|
+
logo_URIs: {
|
|
1128
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/bitcoin.png'
|
|
1129
|
+
},
|
|
1130
|
+
images: [{
|
|
1131
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/bitcoin.png',
|
|
1132
|
+
theme: {
|
|
1133
|
+
primary_color_hex: '#1DB5E1'
|
|
1134
|
+
}
|
|
1135
|
+
}],
|
|
1136
|
+
socials: {
|
|
1137
|
+
website: 'https://getbitcoinmeme.com',
|
|
1138
|
+
twitter: 'https://getbitcoinmeme'
|
|
1139
|
+
},
|
|
1140
|
+
type_asset: 'sdk.coin'
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
description: 'Crypto',
|
|
1144
|
+
denom_units: [{
|
|
1145
|
+
denom: 'factory/inj1s9hr5zfz3xrkzchde94hd2d0edjs4q5mrqrz6x/CRYPTO',
|
|
1146
|
+
exponent: 0
|
|
1147
|
+
}, {
|
|
1148
|
+
denom: 'CRYPTO',
|
|
1149
|
+
exponent: 6
|
|
1150
|
+
}],
|
|
1151
|
+
base: 'factory/inj1s9hr5zfz3xrkzchde94hd2d0edjs4q5mrqrz6x/CRYPTO',
|
|
1152
|
+
name: 'Crypto',
|
|
1153
|
+
display: 'CRYPTO',
|
|
1154
|
+
symbol: 'CRYPTO',
|
|
1155
|
+
logo_URIs: {
|
|
1156
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/crypto.png'
|
|
1157
|
+
},
|
|
1158
|
+
images: [{
|
|
1159
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/crypto.png',
|
|
1160
|
+
theme: {
|
|
1161
|
+
primary_color_hex: '#F79017'
|
|
1162
|
+
}
|
|
1163
|
+
}],
|
|
1164
|
+
socials: {
|
|
1165
|
+
website: 'https://getcryptomeme.com',
|
|
1166
|
+
twitter: 'https://x.com/getcryptomeme'
|
|
1167
|
+
},
|
|
1168
|
+
type_asset: 'sdk.coin'
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
description: 'Bricscoin',
|
|
1172
|
+
denom_units: [{
|
|
1173
|
+
denom: 'factory/inj1s9hr5zfz3xrkzchde94hd2d0edjs4q5mrqrz6x/BRICS',
|
|
1174
|
+
exponent: 0
|
|
1175
|
+
}, {
|
|
1176
|
+
denom: 'BRICS',
|
|
1177
|
+
exponent: 6
|
|
1178
|
+
}],
|
|
1179
|
+
base: 'factory/inj1s9hr5zfz3xrkzchde94hd2d0edjs4q5mrqrz6x/BRICS',
|
|
1180
|
+
name: 'Bricscoin',
|
|
1181
|
+
display: 'BRICS',
|
|
1182
|
+
symbol: 'BRICS',
|
|
1183
|
+
logo_URIs: {
|
|
1184
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/brics.png'
|
|
1185
|
+
},
|
|
1186
|
+
images: [{
|
|
1187
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/brics.png',
|
|
1188
|
+
theme: {
|
|
1189
|
+
primary_color_hex: '#F79017'
|
|
1190
|
+
}
|
|
1191
|
+
}],
|
|
1192
|
+
socials: {
|
|
1193
|
+
website: 'https://bricscoin.cash',
|
|
1194
|
+
twitter: 'https://x.com/bricscoincash'
|
|
1195
|
+
},
|
|
1196
|
+
type_asset: 'sdk.coin'
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
description: 'Instant Noodles Coin',
|
|
1200
|
+
denom_units: [{
|
|
1201
|
+
denom: 'factory/inj1s9hr5zfz3xrkzchde94hd2d0edjs4q5mrqrz6x/INC',
|
|
1202
|
+
exponent: 0
|
|
1203
|
+
}, {
|
|
1204
|
+
denom: 'INC',
|
|
1205
|
+
exponent: 6
|
|
1206
|
+
}],
|
|
1207
|
+
base: 'factory/inj1s9hr5zfz3xrkzchde94hd2d0edjs4q5mrqrz6x/INC',
|
|
1208
|
+
name: 'Instant Noodles Coin',
|
|
1209
|
+
display: 'INC',
|
|
1210
|
+
symbol: 'INC',
|
|
1211
|
+
logo_URIs: {
|
|
1212
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inc.png'
|
|
1213
|
+
},
|
|
1214
|
+
images: [{
|
|
1215
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inc.png',
|
|
1216
|
+
theme: {
|
|
1217
|
+
primary_color_hex: '#37BEFF'
|
|
1218
|
+
}
|
|
1219
|
+
}],
|
|
1220
|
+
socials: {
|
|
1221
|
+
website: 'https://instantnoodles.xyz',
|
|
1222
|
+
twitter: 'https://x.com/instantnoodlesinc'
|
|
1223
|
+
},
|
|
1224
|
+
type_asset: 'sdk.coin'
|
|
1112
1225
|
}
|
|
1113
1226
|
]
|
|
1114
1227
|
};
|
package/mainnet/injective/ibc.js
CHANGED
|
@@ -711,6 +711,35 @@ const info = [
|
|
|
711
711
|
}
|
|
712
712
|
]
|
|
713
713
|
},
|
|
714
|
+
{
|
|
715
|
+
$schema: '../ibc_data.schema.json',
|
|
716
|
+
chain_1: {
|
|
717
|
+
chain_name: 'injective',
|
|
718
|
+
client_id: '07-tendermint-282',
|
|
719
|
+
connection_id: 'connection-286'
|
|
720
|
+
},
|
|
721
|
+
chain_2: {
|
|
722
|
+
chain_name: 'quicksilver',
|
|
723
|
+
client_id: '07-tendermint-105',
|
|
724
|
+
connection_id: 'connection-68'
|
|
725
|
+
},
|
|
726
|
+
channels: [{
|
|
727
|
+
chain_1: {
|
|
728
|
+
channel_id: 'channel-394',
|
|
729
|
+
port_id: 'transfer'
|
|
730
|
+
},
|
|
731
|
+
chain_2: {
|
|
732
|
+
channel_id: 'channel-234',
|
|
733
|
+
port_id: 'transfer'
|
|
734
|
+
},
|
|
735
|
+
ordering: 'unordered',
|
|
736
|
+
version: 'ics20-1',
|
|
737
|
+
tags: {
|
|
738
|
+
status: 'live',
|
|
739
|
+
preferred: true
|
|
740
|
+
}
|
|
741
|
+
}]
|
|
742
|
+
},
|
|
714
743
|
{
|
|
715
744
|
$schema: '../ibc_data.schema.json',
|
|
716
745
|
chain_1: {
|
package/mainnet/int3face/ibc.js
CHANGED
|
@@ -1,6 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain_1: {
|
|
6
|
+
chain_name: 'int3face',
|
|
7
|
+
client_id: '07-tendermint-3',
|
|
8
|
+
connection_id: 'connection-1'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'neutron',
|
|
12
|
+
client_id: '07-tendermint-151',
|
|
13
|
+
connection_id: 'connection-111'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-1',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-6455',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}, {
|
|
4
32
|
$schema: '../ibc_data.schema.json',
|
|
5
33
|
chain_1: {
|
|
6
34
|
chain_name: 'int3face',
|
package/mainnet/jackal/ibc.js
CHANGED
|
@@ -54,21 +54,21 @@ const info = [
|
|
|
54
54
|
$schema: '../ibc_data.schema.json',
|
|
55
55
|
chain_1: {
|
|
56
56
|
chain_name: 'axelar',
|
|
57
|
-
client_id: '07-tendermint-
|
|
58
|
-
connection_id: 'connection-
|
|
57
|
+
client_id: '07-tendermint-235',
|
|
58
|
+
connection_id: 'connection-225'
|
|
59
59
|
},
|
|
60
60
|
chain_2: {
|
|
61
61
|
chain_name: 'jackal',
|
|
62
|
-
client_id: '07-tendermint-
|
|
63
|
-
connection_id: 'connection-
|
|
62
|
+
client_id: '07-tendermint-80',
|
|
63
|
+
connection_id: 'connection-66'
|
|
64
64
|
},
|
|
65
65
|
channels: [{
|
|
66
66
|
chain_1: {
|
|
67
|
-
channel_id: 'channel-
|
|
67
|
+
channel_id: 'channel-168',
|
|
68
68
|
port_id: 'transfer'
|
|
69
69
|
},
|
|
70
70
|
chain_2: {
|
|
71
|
-
channel_id: 'channel-
|
|
71
|
+
channel_id: 'channel-153',
|
|
72
72
|
port_id: 'transfer'
|
|
73
73
|
},
|
|
74
74
|
ordering: 'unordered',
|
package/mainnet/juno/ibc.js
CHANGED
package/mainnet/kopi/assets.js
CHANGED
|
@@ -88,10 +88,10 @@ const info = {
|
|
|
88
88
|
display: 'ckUSD',
|
|
89
89
|
symbol: 'CKUSD',
|
|
90
90
|
logo_URIs: {
|
|
91
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/
|
|
91
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/ckusd.svg'
|
|
92
92
|
},
|
|
93
93
|
images: [{
|
|
94
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/
|
|
94
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/ckusd.svg'
|
|
95
95
|
}],
|
|
96
96
|
keywords: ['dex', 'mm'],
|
|
97
97
|
socials: {
|
|
@@ -114,10 +114,10 @@ const info = {
|
|
|
114
114
|
display: 'cUSDC',
|
|
115
115
|
symbol: 'CUSDC',
|
|
116
116
|
logo_URIs: {
|
|
117
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
117
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdc.svg'
|
|
118
118
|
},
|
|
119
119
|
images: [{
|
|
120
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
120
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdc.svg'
|
|
121
121
|
}],
|
|
122
122
|
keywords: ['dex', 'mm'],
|
|
123
123
|
type_asset: 'sdk.coin'
|
|
@@ -134,12 +134,12 @@ const info = {
|
|
|
134
134
|
base: 'ucusdtinj',
|
|
135
135
|
name: 'cUSDT.inj',
|
|
136
136
|
display: 'cUSDT.inj',
|
|
137
|
-
symbol: '
|
|
137
|
+
symbol: 'cUSDT.inj',
|
|
138
138
|
logo_URIs: {
|
|
139
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
139
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdt.svg'
|
|
140
140
|
},
|
|
141
141
|
images: [{
|
|
142
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
142
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdt.svg'
|
|
143
143
|
}],
|
|
144
144
|
keywords: ['dex', 'mm'],
|
|
145
145
|
type_asset: 'sdk.coin'
|
|
@@ -360,12 +360,12 @@ const info = {
|
|
|
360
360
|
base: 'uasusdtinj',
|
|
361
361
|
name: 'asUSDT.inj',
|
|
362
362
|
display: 'asusdtinj',
|
|
363
|
-
symbol: '
|
|
363
|
+
symbol: 'asUSDT.inj',
|
|
364
364
|
logo_URIs: {
|
|
365
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
365
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdt.svg'
|
|
366
366
|
},
|
|
367
367
|
images: [{
|
|
368
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
368
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdt.svg'
|
|
369
369
|
}],
|
|
370
370
|
keywords: ['dex', 'mm'],
|
|
371
371
|
type_asset: 'sdk.coin'
|
|
@@ -384,10 +384,10 @@ const info = {
|
|
|
384
384
|
display: 'asUSDC',
|
|
385
385
|
symbol: 'ASUSDC',
|
|
386
386
|
logo_URIs: {
|
|
387
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
387
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdc.svg'
|
|
388
388
|
},
|
|
389
389
|
images: [{
|
|
390
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
390
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdc.svg'
|
|
391
391
|
}],
|
|
392
392
|
keywords: ['dex', 'mm'],
|
|
393
393
|
type_asset: 'sdk.coin'
|
|
@@ -304,6 +304,80 @@ const info = {
|
|
|
304
304
|
},
|
|
305
305
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dTIA.svg'
|
|
306
306
|
}]
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
description: 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.',
|
|
310
|
+
denom_units: [{
|
|
311
|
+
denom: 'ibc/F5FABF52B54E65064B57BF6DBD8E5FAD22CEE9F4B8A57ADBB20CCD0173AA72A4',
|
|
312
|
+
exponent: 0,
|
|
313
|
+
aliases: ['microusdc', 'uusdc']
|
|
314
|
+
}, {
|
|
315
|
+
denom: 'USDC',
|
|
316
|
+
exponent: 6
|
|
317
|
+
}],
|
|
318
|
+
type_asset: 'ics20',
|
|
319
|
+
base: 'ibc/F5FABF52B54E65064B57BF6DBD8E5FAD22CEE9F4B8A57ADBB20CCD0173AA72A4',
|
|
320
|
+
name: 'USDC',
|
|
321
|
+
display: 'USDC',
|
|
322
|
+
symbol: 'USDC',
|
|
323
|
+
traces: [
|
|
324
|
+
{
|
|
325
|
+
type: 'synthetic',
|
|
326
|
+
counterparty: {
|
|
327
|
+
chain_name: 'forex',
|
|
328
|
+
base_denom: 'USD'
|
|
329
|
+
},
|
|
330
|
+
provider: 'Circle'
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
type: 'additional-mintage',
|
|
334
|
+
counterparty: {
|
|
335
|
+
chain_name: 'ethereum',
|
|
336
|
+
base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
|
|
337
|
+
},
|
|
338
|
+
provider: 'Circle'
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
type: 'ibc',
|
|
342
|
+
counterparty: {
|
|
343
|
+
chain_name: 'noble',
|
|
344
|
+
base_denom: 'uusdc',
|
|
345
|
+
channel_id: 'channel-1'
|
|
346
|
+
},
|
|
347
|
+
chain: {
|
|
348
|
+
channel_id: 'channel-750',
|
|
349
|
+
path: 'transfer/channel-750/uusdc'
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
type: 'ibc',
|
|
354
|
+
counterparty: {
|
|
355
|
+
chain_name: 'osmosis',
|
|
356
|
+
base_denom: 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4',
|
|
357
|
+
channel_id: 'channel-89298'
|
|
358
|
+
},
|
|
359
|
+
chain: {
|
|
360
|
+
channel_id: 'channel-0',
|
|
361
|
+
path: 'transfer/channel-0/transfer/channel-750/uusdc'
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
],
|
|
365
|
+
logo_URIs: {
|
|
366
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
367
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png'
|
|
368
|
+
},
|
|
369
|
+
images: [{
|
|
370
|
+
image_sync: {
|
|
371
|
+
chain_name: 'ethereum',
|
|
372
|
+
base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
|
|
373
|
+
},
|
|
374
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
375
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
376
|
+
theme: {
|
|
377
|
+
circle: true,
|
|
378
|
+
primary_color_hex: '#2775CA'
|
|
379
|
+
}
|
|
380
|
+
}]
|
|
307
381
|
}
|
|
308
382
|
]
|
|
309
383
|
};
|
|
@@ -18,37 +18,44 @@ const info = {
|
|
|
18
18
|
fee_tokens: [
|
|
19
19
|
{
|
|
20
20
|
denom: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F',
|
|
21
|
-
fixed_min_gas_price: 0.
|
|
22
|
-
low_gas_price: 0.
|
|
23
|
-
average_gas_price: 0.
|
|
24
|
-
high_gas_price: 0.
|
|
21
|
+
fixed_min_gas_price: 0.00002,
|
|
22
|
+
low_gas_price: 0.000025,
|
|
23
|
+
average_gas_price: 0.00003,
|
|
24
|
+
high_gas_price: 0.000035
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
denom: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5',
|
|
28
|
-
fixed_min_gas_price: 0.
|
|
29
|
-
low_gas_price: 0.
|
|
30
|
-
average_gas_price: 0.
|
|
31
|
-
high_gas_price: 0.
|
|
28
|
+
fixed_min_gas_price: 0.00002,
|
|
29
|
+
low_gas_price: 0.000025,
|
|
30
|
+
average_gas_price: 0.00003,
|
|
31
|
+
high_gas_price: 0.000035
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
denom: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157',
|
|
35
|
-
fixed_min_gas_price: 0.
|
|
36
|
-
low_gas_price: 0.
|
|
37
|
-
average_gas_price: 0.
|
|
38
|
-
high_gas_price: 0.
|
|
35
|
+
fixed_min_gas_price: 0.00002,
|
|
36
|
+
low_gas_price: 0.000025,
|
|
37
|
+
average_gas_price: 0.00003,
|
|
38
|
+
high_gas_price: 0.000035
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
denom: 'ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0',
|
|
42
|
-
fixed_min_gas_price: 0.
|
|
42
|
+
fixed_min_gas_price: 0.00002,
|
|
43
|
+
low_gas_price: 0.000025,
|
|
44
|
+
average_gas_price: 0.00003,
|
|
45
|
+
high_gas_price: 0.000035
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
denom: 'ibc/4795C86F72EC2CB54E885A4A5B401BED9C333E008311ED9C4DE01BF546B44A21',
|
|
49
|
+
fixed_min_gas_price: 0.00002,
|
|
43
50
|
low_gas_price: 0.0025,
|
|
44
|
-
average_gas_price: 0.
|
|
51
|
+
average_gas_price: 0.00003,
|
|
45
52
|
high_gas_price: 0.0035
|
|
46
53
|
},
|
|
47
54
|
{
|
|
48
|
-
denom: 'ibc/
|
|
49
|
-
fixed_min_gas_price: 0.
|
|
55
|
+
denom: 'ibc/F5FABF52B54E65064B57BF6DBD8E5FAD22CEE9F4B8A57ADBB20CCD0173AA72A4',
|
|
56
|
+
fixed_min_gas_price: 0.00002,
|
|
50
57
|
low_gas_price: 0.0025,
|
|
51
|
-
average_gas_price: 0.
|
|
58
|
+
average_gas_price: 0.00003,
|
|
52
59
|
high_gas_price: 0.0035
|
|
53
60
|
}
|
|
54
61
|
]
|