@chain-registry/osmosis 1.58.0 → 1.58.2
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/asset_list.js +6 -0
- package/assets.js +1110 -4
- package/esm/asset_list.js +6 -0
- package/esm/assets.js +1110 -4
- package/esm/testnet_assets.js +40 -0
- package/package.json +3 -3
- package/testnet_assets.js +40 -0
package/assets.js
CHANGED
|
@@ -287,6 +287,10 @@ const assets = {
|
|
|
287
287
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg'
|
|
288
288
|
},
|
|
289
289
|
images: [{
|
|
290
|
+
image_sync: {
|
|
291
|
+
chain_name: 'axelar',
|
|
292
|
+
base_denom: 'uusdt'
|
|
293
|
+
},
|
|
290
294
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png',
|
|
291
295
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg'
|
|
292
296
|
}, {
|
|
@@ -395,6 +399,10 @@ const assets = {
|
|
|
395
399
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg'
|
|
396
400
|
},
|
|
397
401
|
images: [{
|
|
402
|
+
image_sync: {
|
|
403
|
+
chain_name: 'axelar',
|
|
404
|
+
base_denom: 'busd-wei'
|
|
405
|
+
},
|
|
398
406
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png',
|
|
399
407
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg'
|
|
400
408
|
}]
|
|
@@ -683,6 +691,10 @@ const assets = {
|
|
|
683
691
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
684
692
|
},
|
|
685
693
|
images: [{
|
|
694
|
+
image_sync: {
|
|
695
|
+
chain_name: 'terra',
|
|
696
|
+
base_denom: 'uluna'
|
|
697
|
+
},
|
|
686
698
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png',
|
|
687
699
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg'
|
|
688
700
|
}]
|
|
@@ -719,6 +731,10 @@ const assets = {
|
|
|
719
731
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
|
|
720
732
|
},
|
|
721
733
|
images: [{
|
|
734
|
+
image_sync: {
|
|
735
|
+
chain_name: 'juno',
|
|
736
|
+
base_denom: 'ujuno'
|
|
737
|
+
},
|
|
722
738
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
|
|
723
739
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
|
|
724
740
|
}]
|
|
@@ -773,6 +789,10 @@ const assets = {
|
|
|
773
789
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg'
|
|
774
790
|
},
|
|
775
791
|
images: [{
|
|
792
|
+
image_sync: {
|
|
793
|
+
chain_name: 'axelar',
|
|
794
|
+
base_denom: 'dot-planck'
|
|
795
|
+
},
|
|
776
796
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png',
|
|
777
797
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg'
|
|
778
798
|
}, {
|
|
@@ -811,6 +831,10 @@ const assets = {
|
|
|
811
831
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg'
|
|
812
832
|
},
|
|
813
833
|
images: [{
|
|
834
|
+
image_sync: {
|
|
835
|
+
chain_name: 'evmos',
|
|
836
|
+
base_denom: 'aevmos'
|
|
837
|
+
},
|
|
814
838
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png',
|
|
815
839
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg'
|
|
816
840
|
}]
|
|
@@ -847,6 +871,10 @@ const assets = {
|
|
|
847
871
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg'
|
|
848
872
|
},
|
|
849
873
|
images: [{
|
|
874
|
+
image_sync: {
|
|
875
|
+
chain_name: 'kava',
|
|
876
|
+
base_denom: 'ukava'
|
|
877
|
+
},
|
|
850
878
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png',
|
|
851
879
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg'
|
|
852
880
|
}]
|
|
@@ -883,6 +911,10 @@ const assets = {
|
|
|
883
911
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg'
|
|
884
912
|
},
|
|
885
913
|
images: [{
|
|
914
|
+
image_sync: {
|
|
915
|
+
chain_name: 'secretnetwork',
|
|
916
|
+
base_denom: 'uscrt'
|
|
917
|
+
},
|
|
886
918
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png',
|
|
887
919
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg'
|
|
888
920
|
}]
|
|
@@ -928,6 +960,10 @@ const assets = {
|
|
|
928
960
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg'
|
|
929
961
|
},
|
|
930
962
|
images: [{
|
|
963
|
+
image_sync: {
|
|
964
|
+
chain_name: 'terra',
|
|
965
|
+
base_denom: 'uusd'
|
|
966
|
+
},
|
|
931
967
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png',
|
|
932
968
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg'
|
|
933
969
|
}]
|
|
@@ -1004,6 +1040,10 @@ const assets = {
|
|
|
1004
1040
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg'
|
|
1005
1041
|
},
|
|
1006
1042
|
images: [{
|
|
1043
|
+
image_sync: {
|
|
1044
|
+
chain_name: 'chihuahua',
|
|
1045
|
+
base_denom: 'uhuahua'
|
|
1046
|
+
},
|
|
1007
1047
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png',
|
|
1008
1048
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg'
|
|
1009
1049
|
}]
|
|
@@ -1040,6 +1080,10 @@ const assets = {
|
|
|
1040
1080
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg'
|
|
1041
1081
|
},
|
|
1042
1082
|
images: [{
|
|
1083
|
+
image_sync: {
|
|
1084
|
+
chain_name: 'persistence',
|
|
1085
|
+
base_denom: 'uxprt'
|
|
1086
|
+
},
|
|
1043
1087
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png',
|
|
1044
1088
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg'
|
|
1045
1089
|
}]
|
|
@@ -1110,6 +1154,10 @@ const assets = {
|
|
|
1110
1154
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg'
|
|
1111
1155
|
},
|
|
1112
1156
|
images: [{
|
|
1157
|
+
image_sync: {
|
|
1158
|
+
chain_name: 'persistence',
|
|
1159
|
+
base_denom: 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444'
|
|
1160
|
+
},
|
|
1113
1161
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png',
|
|
1114
1162
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg'
|
|
1115
1163
|
}]
|
|
@@ -1146,6 +1194,10 @@ const assets = {
|
|
|
1146
1194
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg'
|
|
1147
1195
|
},
|
|
1148
1196
|
images: [{
|
|
1197
|
+
image_sync: {
|
|
1198
|
+
chain_name: 'akash',
|
|
1199
|
+
base_denom: 'uakt'
|
|
1200
|
+
},
|
|
1149
1201
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png',
|
|
1150
1202
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg'
|
|
1151
1203
|
}]
|
|
@@ -1182,6 +1234,10 @@ const assets = {
|
|
|
1182
1234
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg'
|
|
1183
1235
|
},
|
|
1184
1236
|
images: [{
|
|
1237
|
+
image_sync: {
|
|
1238
|
+
chain_name: 'regen',
|
|
1239
|
+
base_denom: 'uregen'
|
|
1240
|
+
},
|
|
1185
1241
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png',
|
|
1186
1242
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg'
|
|
1187
1243
|
}]
|
|
@@ -1218,6 +1274,10 @@ const assets = {
|
|
|
1218
1274
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg'
|
|
1219
1275
|
},
|
|
1220
1276
|
images: [{
|
|
1277
|
+
image_sync: {
|
|
1278
|
+
chain_name: 'sentinel',
|
|
1279
|
+
base_denom: 'udvpn'
|
|
1280
|
+
},
|
|
1221
1281
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png',
|
|
1222
1282
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg'
|
|
1223
1283
|
}]
|
|
@@ -1254,6 +1314,10 @@ const assets = {
|
|
|
1254
1314
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg'
|
|
1255
1315
|
},
|
|
1256
1316
|
images: [{
|
|
1317
|
+
image_sync: {
|
|
1318
|
+
chain_name: 'irisnet',
|
|
1319
|
+
base_denom: 'uiris'
|
|
1320
|
+
},
|
|
1257
1321
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png',
|
|
1258
1322
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg'
|
|
1259
1323
|
}]
|
|
@@ -1290,6 +1354,10 @@ const assets = {
|
|
|
1290
1354
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg'
|
|
1291
1355
|
},
|
|
1292
1356
|
images: [{
|
|
1357
|
+
image_sync: {
|
|
1358
|
+
chain_name: 'starname',
|
|
1359
|
+
base_denom: 'uiov'
|
|
1360
|
+
},
|
|
1293
1361
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png',
|
|
1294
1362
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg'
|
|
1295
1363
|
}]
|
|
@@ -1326,6 +1394,10 @@ const assets = {
|
|
|
1326
1394
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg'
|
|
1327
1395
|
},
|
|
1328
1396
|
images: [{
|
|
1397
|
+
image_sync: {
|
|
1398
|
+
chain_name: 'emoney',
|
|
1399
|
+
base_denom: 'ungm'
|
|
1400
|
+
},
|
|
1329
1401
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png',
|
|
1330
1402
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg'
|
|
1331
1403
|
}]
|
|
@@ -1362,6 +1434,10 @@ const assets = {
|
|
|
1362
1434
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg'
|
|
1363
1435
|
},
|
|
1364
1436
|
images: [{
|
|
1437
|
+
image_sync: {
|
|
1438
|
+
chain_name: 'emoney',
|
|
1439
|
+
base_denom: 'eeur'
|
|
1440
|
+
},
|
|
1365
1441
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png',
|
|
1366
1442
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg'
|
|
1367
1443
|
}]
|
|
@@ -1398,6 +1474,10 @@ const assets = {
|
|
|
1398
1474
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg'
|
|
1399
1475
|
},
|
|
1400
1476
|
images: [{
|
|
1477
|
+
image_sync: {
|
|
1478
|
+
chain_name: 'likecoin',
|
|
1479
|
+
base_denom: 'nanolike'
|
|
1480
|
+
},
|
|
1401
1481
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png',
|
|
1402
1482
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg'
|
|
1403
1483
|
}]
|
|
@@ -1434,6 +1514,10 @@ const assets = {
|
|
|
1434
1514
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg'
|
|
1435
1515
|
},
|
|
1436
1516
|
images: [{
|
|
1517
|
+
image_sync: {
|
|
1518
|
+
chain_name: 'impacthub',
|
|
1519
|
+
base_denom: 'uixo'
|
|
1520
|
+
},
|
|
1437
1521
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png',
|
|
1438
1522
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg'
|
|
1439
1523
|
}]
|
|
@@ -1470,6 +1554,10 @@ const assets = {
|
|
|
1470
1554
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg'
|
|
1471
1555
|
},
|
|
1472
1556
|
images: [{
|
|
1557
|
+
image_sync: {
|
|
1558
|
+
chain_name: 'bitcanna',
|
|
1559
|
+
base_denom: 'ubcna'
|
|
1560
|
+
},
|
|
1473
1561
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png',
|
|
1474
1562
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg'
|
|
1475
1563
|
}]
|
|
@@ -1506,6 +1594,10 @@ const assets = {
|
|
|
1506
1594
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg'
|
|
1507
1595
|
},
|
|
1508
1596
|
images: [{
|
|
1597
|
+
image_sync: {
|
|
1598
|
+
chain_name: 'bitsong',
|
|
1599
|
+
base_denom: 'ubtsg'
|
|
1600
|
+
},
|
|
1509
1601
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png',
|
|
1510
1602
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg'
|
|
1511
1603
|
}]
|
|
@@ -1542,6 +1634,10 @@ const assets = {
|
|
|
1542
1634
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg'
|
|
1543
1635
|
},
|
|
1544
1636
|
images: [{
|
|
1637
|
+
image_sync: {
|
|
1638
|
+
chain_name: 'kichain',
|
|
1639
|
+
base_denom: 'uxki'
|
|
1640
|
+
},
|
|
1545
1641
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png',
|
|
1546
1642
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg'
|
|
1547
1643
|
}]
|
|
@@ -1578,6 +1674,10 @@ const assets = {
|
|
|
1578
1674
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg'
|
|
1579
1675
|
},
|
|
1580
1676
|
images: [{
|
|
1677
|
+
image_sync: {
|
|
1678
|
+
chain_name: 'panacea',
|
|
1679
|
+
base_denom: 'umed'
|
|
1680
|
+
},
|
|
1581
1681
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png',
|
|
1582
1682
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg'
|
|
1583
1683
|
}]
|
|
@@ -1611,6 +1711,10 @@ const assets = {
|
|
|
1611
1711
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg'
|
|
1612
1712
|
},
|
|
1613
1713
|
images: [{
|
|
1714
|
+
image_sync: {
|
|
1715
|
+
chain_name: 'bostrom',
|
|
1716
|
+
base_denom: 'boot'
|
|
1717
|
+
},
|
|
1614
1718
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png',
|
|
1615
1719
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg'
|
|
1616
1720
|
}]
|
|
@@ -1647,6 +1751,10 @@ const assets = {
|
|
|
1647
1751
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg'
|
|
1648
1752
|
},
|
|
1649
1753
|
images: [{
|
|
1754
|
+
image_sync: {
|
|
1755
|
+
chain_name: 'comdex',
|
|
1756
|
+
base_denom: 'ucmdx'
|
|
1757
|
+
},
|
|
1650
1758
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png',
|
|
1651
1759
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg'
|
|
1652
1760
|
}]
|
|
@@ -1683,6 +1791,10 @@ const assets = {
|
|
|
1683
1791
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg'
|
|
1684
1792
|
},
|
|
1685
1793
|
images: [{
|
|
1794
|
+
image_sync: {
|
|
1795
|
+
chain_name: 'cheqd',
|
|
1796
|
+
base_denom: 'ncheq'
|
|
1797
|
+
},
|
|
1686
1798
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png',
|
|
1687
1799
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg'
|
|
1688
1800
|
}]
|
|
@@ -1719,6 +1831,10 @@ const assets = {
|
|
|
1719
1831
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg'
|
|
1720
1832
|
},
|
|
1721
1833
|
images: [{
|
|
1834
|
+
image_sync: {
|
|
1835
|
+
chain_name: 'lumnetwork',
|
|
1836
|
+
base_denom: 'ulum'
|
|
1837
|
+
},
|
|
1722
1838
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png',
|
|
1723
1839
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg'
|
|
1724
1840
|
}]
|
|
@@ -1755,6 +1871,10 @@ const assets = {
|
|
|
1755
1871
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg'
|
|
1756
1872
|
},
|
|
1757
1873
|
images: [{
|
|
1874
|
+
image_sync: {
|
|
1875
|
+
chain_name: 'vidulum',
|
|
1876
|
+
base_denom: 'uvdl'
|
|
1877
|
+
},
|
|
1758
1878
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png',
|
|
1759
1879
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg'
|
|
1760
1880
|
}]
|
|
@@ -1791,6 +1911,10 @@ const assets = {
|
|
|
1791
1911
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg'
|
|
1792
1912
|
},
|
|
1793
1913
|
images: [{
|
|
1914
|
+
image_sync: {
|
|
1915
|
+
chain_name: 'desmos',
|
|
1916
|
+
base_denom: 'udsm'
|
|
1917
|
+
},
|
|
1794
1918
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png',
|
|
1795
1919
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg'
|
|
1796
1920
|
}]
|
|
@@ -1826,6 +1950,10 @@ const assets = {
|
|
|
1826
1950
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png'
|
|
1827
1951
|
},
|
|
1828
1952
|
images: [{
|
|
1953
|
+
image_sync: {
|
|
1954
|
+
chain_name: 'dig',
|
|
1955
|
+
base_denom: 'udig'
|
|
1956
|
+
},
|
|
1829
1957
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png'
|
|
1830
1958
|
}],
|
|
1831
1959
|
keywords: ['osmosis_unstable']
|
|
@@ -1870,6 +1998,10 @@ const assets = {
|
|
|
1870
1998
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg'
|
|
1871
1999
|
},
|
|
1872
2000
|
images: [{
|
|
2001
|
+
image_sync: {
|
|
2002
|
+
chain_name: 'sommelier',
|
|
2003
|
+
base_denom: 'usomm'
|
|
2004
|
+
},
|
|
1873
2005
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png',
|
|
1874
2006
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg'
|
|
1875
2007
|
}]
|
|
@@ -1906,6 +2038,10 @@ const assets = {
|
|
|
1906
2038
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg'
|
|
1907
2039
|
},
|
|
1908
2040
|
images: [{
|
|
2041
|
+
image_sync: {
|
|
2042
|
+
chain_name: 'bandchain',
|
|
2043
|
+
base_denom: 'uband'
|
|
2044
|
+
},
|
|
1909
2045
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png',
|
|
1910
2046
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg'
|
|
1911
2047
|
}]
|
|
@@ -1942,6 +2078,10 @@ const assets = {
|
|
|
1942
2078
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg'
|
|
1943
2079
|
},
|
|
1944
2080
|
images: [{
|
|
2081
|
+
image_sync: {
|
|
2082
|
+
chain_name: 'konstellation',
|
|
2083
|
+
base_denom: 'udarc'
|
|
2084
|
+
},
|
|
1945
2085
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png',
|
|
1946
2086
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg'
|
|
1947
2087
|
}],
|
|
@@ -1979,6 +2119,10 @@ const assets = {
|
|
|
1979
2119
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg'
|
|
1980
2120
|
},
|
|
1981
2121
|
images: [{
|
|
2122
|
+
image_sync: {
|
|
2123
|
+
chain_name: 'umee',
|
|
2124
|
+
base_denom: 'uumee'
|
|
2125
|
+
},
|
|
1982
2126
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png',
|
|
1983
2127
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg'
|
|
1984
2128
|
}]
|
|
@@ -2015,6 +2159,10 @@ const assets = {
|
|
|
2015
2159
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg'
|
|
2016
2160
|
},
|
|
2017
2161
|
images: [{
|
|
2162
|
+
image_sync: {
|
|
2163
|
+
chain_name: 'gravitybridge',
|
|
2164
|
+
base_denom: 'ugraviton'
|
|
2165
|
+
},
|
|
2018
2166
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png',
|
|
2019
2167
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg'
|
|
2020
2168
|
}]
|
|
@@ -2051,6 +2199,10 @@ const assets = {
|
|
|
2051
2199
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg'
|
|
2052
2200
|
},
|
|
2053
2201
|
images: [{
|
|
2202
|
+
image_sync: {
|
|
2203
|
+
chain_name: 'decentr',
|
|
2204
|
+
base_denom: 'udec'
|
|
2205
|
+
},
|
|
2054
2206
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png',
|
|
2055
2207
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg'
|
|
2056
2208
|
}]
|
|
@@ -2089,6 +2241,10 @@ const assets = {
|
|
|
2089
2241
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg'
|
|
2090
2242
|
},
|
|
2091
2243
|
images: [{
|
|
2244
|
+
image_sync: {
|
|
2245
|
+
chain_name: 'juno',
|
|
2246
|
+
base_denom: 'cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl'
|
|
2247
|
+
},
|
|
2092
2248
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png',
|
|
2093
2249
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg'
|
|
2094
2250
|
}]
|
|
@@ -2126,6 +2282,10 @@ const assets = {
|
|
|
2126
2282
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg'
|
|
2127
2283
|
},
|
|
2128
2284
|
images: [{
|
|
2285
|
+
image_sync: {
|
|
2286
|
+
chain_name: 'carbon',
|
|
2287
|
+
base_denom: 'swth'
|
|
2288
|
+
},
|
|
2129
2289
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png',
|
|
2130
2290
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg'
|
|
2131
2291
|
}]
|
|
@@ -2162,6 +2322,10 @@ const assets = {
|
|
|
2162
2322
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg'
|
|
2163
2323
|
},
|
|
2164
2324
|
images: [{
|
|
2325
|
+
image_sync: {
|
|
2326
|
+
chain_name: 'cerberus',
|
|
2327
|
+
base_denom: 'ucrbrus'
|
|
2328
|
+
},
|
|
2165
2329
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png',
|
|
2166
2330
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg'
|
|
2167
2331
|
}],
|
|
@@ -2199,6 +2363,10 @@ const assets = {
|
|
|
2199
2363
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg'
|
|
2200
2364
|
},
|
|
2201
2365
|
images: [{
|
|
2366
|
+
image_sync: {
|
|
2367
|
+
chain_name: 'fetchhub',
|
|
2368
|
+
base_denom: 'afet'
|
|
2369
|
+
},
|
|
2202
2370
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png',
|
|
2203
2371
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg'
|
|
2204
2372
|
}]
|
|
@@ -2235,6 +2403,10 @@ const assets = {
|
|
|
2235
2403
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg'
|
|
2236
2404
|
},
|
|
2237
2405
|
images: [{
|
|
2406
|
+
image_sync: {
|
|
2407
|
+
chain_name: 'assetmantle',
|
|
2408
|
+
base_denom: 'umntl'
|
|
2409
|
+
},
|
|
2238
2410
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png',
|
|
2239
2411
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg'
|
|
2240
2412
|
}]
|
|
@@ -2273,6 +2445,10 @@ const assets = {
|
|
|
2273
2445
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg'
|
|
2274
2446
|
},
|
|
2275
2447
|
images: [{
|
|
2448
|
+
image_sync: {
|
|
2449
|
+
chain_name: 'juno',
|
|
2450
|
+
base_denom: 'cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr'
|
|
2451
|
+
},
|
|
2276
2452
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png',
|
|
2277
2453
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg'
|
|
2278
2454
|
}]
|
|
@@ -2309,6 +2485,10 @@ const assets = {
|
|
|
2309
2485
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg'
|
|
2310
2486
|
},
|
|
2311
2487
|
images: [{
|
|
2488
|
+
image_sync: {
|
|
2489
|
+
chain_name: 'injective',
|
|
2490
|
+
base_denom: 'inj'
|
|
2491
|
+
},
|
|
2312
2492
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png',
|
|
2313
2493
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg'
|
|
2314
2494
|
}]
|
|
@@ -2354,6 +2534,10 @@ const assets = {
|
|
|
2354
2534
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg'
|
|
2355
2535
|
},
|
|
2356
2536
|
images: [{
|
|
2537
|
+
image_sync: {
|
|
2538
|
+
chain_name: 'terra',
|
|
2539
|
+
base_denom: 'ukrw'
|
|
2540
|
+
},
|
|
2357
2541
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png',
|
|
2358
2542
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg'
|
|
2359
2543
|
}]
|
|
@@ -2390,6 +2574,10 @@ const assets = {
|
|
|
2390
2574
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg'
|
|
2391
2575
|
},
|
|
2392
2576
|
images: [{
|
|
2577
|
+
image_sync: {
|
|
2578
|
+
chain_name: 'microtick',
|
|
2579
|
+
base_denom: 'utick'
|
|
2580
|
+
},
|
|
2393
2581
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png',
|
|
2394
2582
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg'
|
|
2395
2583
|
}],
|
|
@@ -2427,6 +2615,10 @@ const assets = {
|
|
|
2427
2615
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg'
|
|
2428
2616
|
},
|
|
2429
2617
|
images: [{
|
|
2618
|
+
image_sync: {
|
|
2619
|
+
chain_name: 'sifchain',
|
|
2620
|
+
base_denom: 'rowan'
|
|
2621
|
+
},
|
|
2430
2622
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png',
|
|
2431
2623
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg'
|
|
2432
2624
|
}]
|
|
@@ -2463,6 +2655,10 @@ const assets = {
|
|
|
2463
2655
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg'
|
|
2464
2656
|
},
|
|
2465
2657
|
images: [{
|
|
2658
|
+
image_sync: {
|
|
2659
|
+
chain_name: 'shentu',
|
|
2660
|
+
base_denom: 'uctk'
|
|
2661
|
+
},
|
|
2466
2662
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png',
|
|
2467
2663
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg'
|
|
2468
2664
|
}]
|
|
@@ -2501,6 +2697,10 @@ const assets = {
|
|
|
2501
2697
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg'
|
|
2502
2698
|
},
|
|
2503
2699
|
images: [{
|
|
2700
|
+
image_sync: {
|
|
2701
|
+
chain_name: 'juno',
|
|
2702
|
+
base_denom: 'cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z'
|
|
2703
|
+
},
|
|
2504
2704
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png',
|
|
2505
2705
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg'
|
|
2506
2706
|
}]
|
|
@@ -2539,6 +2739,10 @@ const assets = {
|
|
|
2539
2739
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg'
|
|
2540
2740
|
},
|
|
2541
2741
|
images: [{
|
|
2742
|
+
image_sync: {
|
|
2743
|
+
chain_name: 'juno',
|
|
2744
|
+
base_denom: 'cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa'
|
|
2745
|
+
},
|
|
2542
2746
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png',
|
|
2543
2747
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg'
|
|
2544
2748
|
}]
|
|
@@ -2592,6 +2796,10 @@ const assets = {
|
|
|
2592
2796
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg'
|
|
2593
2797
|
},
|
|
2594
2798
|
images: [{
|
|
2799
|
+
image_sync: {
|
|
2800
|
+
chain_name: 'axelar',
|
|
2801
|
+
base_denom: 'frax-wei'
|
|
2802
|
+
},
|
|
2595
2803
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg'
|
|
2596
2804
|
}]
|
|
2597
2805
|
},
|
|
@@ -2645,6 +2853,10 @@ const assets = {
|
|
|
2645
2853
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
2646
2854
|
},
|
|
2647
2855
|
images: [{
|
|
2856
|
+
image_sync: {
|
|
2857
|
+
chain_name: 'gravitybridge',
|
|
2858
|
+
base_denom: 'gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599'
|
|
2859
|
+
},
|
|
2648
2860
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
2649
2861
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
2650
2862
|
}, {
|
|
@@ -2700,6 +2912,10 @@ const assets = {
|
|
|
2700
2912
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg'
|
|
2701
2913
|
},
|
|
2702
2914
|
images: [{
|
|
2915
|
+
image_sync: {
|
|
2916
|
+
chain_name: 'gravitybridge',
|
|
2917
|
+
base_denom: 'gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2'
|
|
2918
|
+
},
|
|
2703
2919
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg'
|
|
2704
2920
|
}, {
|
|
2705
2921
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg'
|
|
@@ -2754,6 +2970,10 @@ const assets = {
|
|
|
2754
2970
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
2755
2971
|
},
|
|
2756
2972
|
images: [{
|
|
2973
|
+
image_sync: {
|
|
2974
|
+
chain_name: 'gravitybridge',
|
|
2975
|
+
base_denom: 'gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'
|
|
2976
|
+
},
|
|
2757
2977
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
2758
2978
|
}, {
|
|
2759
2979
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg'
|
|
@@ -2808,6 +3028,10 @@ const assets = {
|
|
|
2808
3028
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg'
|
|
2809
3029
|
},
|
|
2810
3030
|
images: [{
|
|
3031
|
+
image_sync: {
|
|
3032
|
+
chain_name: 'gravitybridge',
|
|
3033
|
+
base_denom: 'gravity0x6B175474E89094C44Da98b954EedeAC495271d0F'
|
|
3034
|
+
},
|
|
2811
3035
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg'
|
|
2812
3036
|
}, {
|
|
2813
3037
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg'
|
|
@@ -2862,6 +3086,10 @@ const assets = {
|
|
|
2862
3086
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
2863
3087
|
},
|
|
2864
3088
|
images: [{
|
|
3089
|
+
image_sync: {
|
|
3090
|
+
chain_name: 'gravitybridge',
|
|
3091
|
+
base_denom: 'gravity0xdAC17F958D2ee523a2206206994597C13D831ec7'
|
|
3092
|
+
},
|
|
2865
3093
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
2866
3094
|
}, {
|
|
2867
3095
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg'
|
|
@@ -2901,6 +3129,10 @@ const assets = {
|
|
|
2901
3129
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg'
|
|
2902
3130
|
},
|
|
2903
3131
|
images: [{
|
|
3132
|
+
image_sync: {
|
|
3133
|
+
chain_name: 'juno',
|
|
3134
|
+
base_denom: 'cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq'
|
|
3135
|
+
},
|
|
2904
3136
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png',
|
|
2905
3137
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg'
|
|
2906
3138
|
}]
|
|
@@ -2937,6 +3169,10 @@ const assets = {
|
|
|
2937
3169
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg'
|
|
2938
3170
|
},
|
|
2939
3171
|
images: [{
|
|
3172
|
+
image_sync: {
|
|
3173
|
+
chain_name: 'provenance',
|
|
3174
|
+
base_denom: 'nhash'
|
|
3175
|
+
},
|
|
2940
3176
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png',
|
|
2941
3177
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg'
|
|
2942
3178
|
}]
|
|
@@ -2973,6 +3209,10 @@ const assets = {
|
|
|
2973
3209
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg'
|
|
2974
3210
|
},
|
|
2975
3211
|
images: [{
|
|
3212
|
+
image_sync: {
|
|
3213
|
+
chain_name: 'galaxy',
|
|
3214
|
+
base_denom: 'uglx'
|
|
3215
|
+
},
|
|
2976
3216
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png',
|
|
2977
3217
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg'
|
|
2978
3218
|
}]
|
|
@@ -3008,6 +3248,10 @@ const assets = {
|
|
|
3008
3248
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg'
|
|
3009
3249
|
},
|
|
3010
3250
|
images: [{
|
|
3251
|
+
image_sync: {
|
|
3252
|
+
chain_name: 'juno',
|
|
3253
|
+
base_denom: 'cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49'
|
|
3254
|
+
},
|
|
3011
3255
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png',
|
|
3012
3256
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg'
|
|
3013
3257
|
}]
|
|
@@ -3046,6 +3290,10 @@ const assets = {
|
|
|
3046
3290
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg'
|
|
3047
3291
|
},
|
|
3048
3292
|
images: [{
|
|
3293
|
+
image_sync: {
|
|
3294
|
+
chain_name: 'juno',
|
|
3295
|
+
base_denom: 'cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g'
|
|
3296
|
+
},
|
|
3049
3297
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png',
|
|
3050
3298
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg'
|
|
3051
3299
|
}]
|
|
@@ -3082,6 +3330,10 @@ const assets = {
|
|
|
3082
3330
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg'
|
|
3083
3331
|
},
|
|
3084
3332
|
images: [{
|
|
3333
|
+
image_sync: {
|
|
3334
|
+
chain_name: 'meme',
|
|
3335
|
+
base_denom: 'umeme'
|
|
3336
|
+
},
|
|
3085
3337
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png',
|
|
3086
3338
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg'
|
|
3087
3339
|
}]
|
|
@@ -3119,6 +3371,10 @@ const assets = {
|
|
|
3119
3371
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png'
|
|
3120
3372
|
},
|
|
3121
3373
|
images: [{
|
|
3374
|
+
image_sync: {
|
|
3375
|
+
chain_name: 'juno',
|
|
3376
|
+
base_denom: 'cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w'
|
|
3377
|
+
},
|
|
3122
3378
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png'
|
|
3123
3379
|
}]
|
|
3124
3380
|
},
|
|
@@ -3155,6 +3411,10 @@ const assets = {
|
|
|
3155
3411
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png'
|
|
3156
3412
|
},
|
|
3157
3413
|
images: [{
|
|
3414
|
+
image_sync: {
|
|
3415
|
+
chain_name: 'juno',
|
|
3416
|
+
base_denom: 'cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3'
|
|
3417
|
+
},
|
|
3158
3418
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png'
|
|
3159
3419
|
}]
|
|
3160
3420
|
},
|
|
@@ -3190,6 +3450,10 @@ const assets = {
|
|
|
3190
3450
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg'
|
|
3191
3451
|
},
|
|
3192
3452
|
images: [{
|
|
3453
|
+
image_sync: {
|
|
3454
|
+
chain_name: 'terra2',
|
|
3455
|
+
base_denom: 'uluna'
|
|
3456
|
+
},
|
|
3193
3457
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png',
|
|
3194
3458
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg'
|
|
3195
3459
|
}]
|
|
@@ -3226,6 +3490,10 @@ const assets = {
|
|
|
3226
3490
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg'
|
|
3227
3491
|
},
|
|
3228
3492
|
images: [{
|
|
3493
|
+
image_sync: {
|
|
3494
|
+
chain_name: 'rizon',
|
|
3495
|
+
base_denom: 'uatolo'
|
|
3496
|
+
},
|
|
3229
3497
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png',
|
|
3230
3498
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg'
|
|
3231
3499
|
}]
|
|
@@ -3262,6 +3530,10 @@ const assets = {
|
|
|
3262
3530
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg'
|
|
3263
3531
|
},
|
|
3264
3532
|
images: [{
|
|
3533
|
+
image_sync: {
|
|
3534
|
+
chain_name: 'kava',
|
|
3535
|
+
base_denom: 'hard'
|
|
3536
|
+
},
|
|
3265
3537
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png',
|
|
3266
3538
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg'
|
|
3267
3539
|
}]
|
|
@@ -3298,6 +3570,10 @@ const assets = {
|
|
|
3298
3570
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg'
|
|
3299
3571
|
},
|
|
3300
3572
|
images: [{
|
|
3573
|
+
image_sync: {
|
|
3574
|
+
chain_name: 'kava',
|
|
3575
|
+
base_denom: 'swp'
|
|
3576
|
+
},
|
|
3301
3577
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png',
|
|
3302
3578
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg'
|
|
3303
3579
|
}]
|
|
@@ -3341,6 +3617,10 @@ const assets = {
|
|
|
3341
3617
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg'
|
|
3342
3618
|
},
|
|
3343
3619
|
images: [{
|
|
3620
|
+
image_sync: {
|
|
3621
|
+
chain_name: 'axelar',
|
|
3622
|
+
base_denom: 'link-wei'
|
|
3623
|
+
},
|
|
3344
3624
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png',
|
|
3345
3625
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg'
|
|
3346
3626
|
}]
|
|
@@ -3377,6 +3657,10 @@ const assets = {
|
|
|
3377
3657
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg'
|
|
3378
3658
|
},
|
|
3379
3659
|
images: [{
|
|
3660
|
+
image_sync: {
|
|
3661
|
+
chain_name: 'genesisl1',
|
|
3662
|
+
base_denom: 'el1'
|
|
3663
|
+
},
|
|
3380
3664
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png',
|
|
3381
3665
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg'
|
|
3382
3666
|
}],
|
|
@@ -3420,6 +3704,10 @@ const assets = {
|
|
|
3420
3704
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg'
|
|
3421
3705
|
},
|
|
3422
3706
|
images: [{
|
|
3707
|
+
image_sync: {
|
|
3708
|
+
chain_name: 'axelar',
|
|
3709
|
+
base_denom: 'aave-wei'
|
|
3710
|
+
},
|
|
3423
3711
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg'
|
|
3424
3712
|
}],
|
|
3425
3713
|
keywords: ['osmosis_unlisted']
|
|
@@ -3462,6 +3750,10 @@ const assets = {
|
|
|
3462
3750
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg'
|
|
3463
3751
|
},
|
|
3464
3752
|
images: [{
|
|
3753
|
+
image_sync: {
|
|
3754
|
+
chain_name: 'axelar',
|
|
3755
|
+
base_denom: 'ape-wei'
|
|
3756
|
+
},
|
|
3465
3757
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg'
|
|
3466
3758
|
}],
|
|
3467
3759
|
keywords: ['osmosis_unlisted']
|
|
@@ -3504,6 +3796,10 @@ const assets = {
|
|
|
3504
3796
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg'
|
|
3505
3797
|
},
|
|
3506
3798
|
images: [{
|
|
3799
|
+
image_sync: {
|
|
3800
|
+
chain_name: 'axelar',
|
|
3801
|
+
base_denom: 'mkr-wei'
|
|
3802
|
+
},
|
|
3507
3803
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg'
|
|
3508
3804
|
}]
|
|
3509
3805
|
},
|
|
@@ -3556,6 +3852,10 @@ const assets = {
|
|
|
3556
3852
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg'
|
|
3557
3853
|
},
|
|
3558
3854
|
images: [{
|
|
3855
|
+
image_sync: {
|
|
3856
|
+
chain_name: 'axelar',
|
|
3857
|
+
base_denom: 'rai-wei'
|
|
3858
|
+
},
|
|
3559
3859
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg'
|
|
3560
3860
|
}]
|
|
3561
3861
|
},
|
|
@@ -3597,6 +3897,10 @@ const assets = {
|
|
|
3597
3897
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg'
|
|
3598
3898
|
},
|
|
3599
3899
|
images: [{
|
|
3900
|
+
image_sync: {
|
|
3901
|
+
chain_name: 'axelar',
|
|
3902
|
+
base_denom: 'shib-wei'
|
|
3903
|
+
},
|
|
3600
3904
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg'
|
|
3601
3905
|
}],
|
|
3602
3906
|
keywords: ['osmosis_unlisted']
|
|
@@ -3633,6 +3937,10 @@ const assets = {
|
|
|
3633
3937
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg'
|
|
3634
3938
|
},
|
|
3635
3939
|
images: [{
|
|
3940
|
+
image_sync: {
|
|
3941
|
+
chain_name: 'kujira',
|
|
3942
|
+
base_denom: 'ukuji'
|
|
3943
|
+
},
|
|
3636
3944
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png',
|
|
3637
3945
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg'
|
|
3638
3946
|
}]
|
|
@@ -3669,6 +3977,10 @@ const assets = {
|
|
|
3669
3977
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg'
|
|
3670
3978
|
},
|
|
3671
3979
|
images: [{
|
|
3980
|
+
image_sync: {
|
|
3981
|
+
chain_name: 'tgrade',
|
|
3982
|
+
base_denom: 'utgd'
|
|
3983
|
+
},
|
|
3672
3984
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png',
|
|
3673
3985
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg'
|
|
3674
3986
|
}]
|
|
@@ -3704,6 +4016,10 @@ const assets = {
|
|
|
3704
4016
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg'
|
|
3705
4017
|
},
|
|
3706
4018
|
images: [{
|
|
4019
|
+
image_sync: {
|
|
4020
|
+
chain_name: 'echelon',
|
|
4021
|
+
base_denom: 'aechelon'
|
|
4022
|
+
},
|
|
3707
4023
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg'
|
|
3708
4024
|
}]
|
|
3709
4025
|
},
|
|
@@ -3739,6 +4055,10 @@ const assets = {
|
|
|
3739
4055
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg'
|
|
3740
4056
|
},
|
|
3741
4057
|
images: [{
|
|
4058
|
+
image_sync: {
|
|
4059
|
+
chain_name: 'odin',
|
|
4060
|
+
base_denom: 'loki'
|
|
4061
|
+
},
|
|
3742
4062
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png',
|
|
3743
4063
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg'
|
|
3744
4064
|
}]
|
|
@@ -3775,6 +4095,10 @@ const assets = {
|
|
|
3775
4095
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg'
|
|
3776
4096
|
},
|
|
3777
4097
|
images: [{
|
|
4098
|
+
image_sync: {
|
|
4099
|
+
chain_name: 'odin',
|
|
4100
|
+
base_denom: 'mGeo'
|
|
4101
|
+
},
|
|
3778
4102
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png',
|
|
3779
4103
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg'
|
|
3780
4104
|
}],
|
|
@@ -3812,6 +4136,10 @@ const assets = {
|
|
|
3812
4136
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg'
|
|
3813
4137
|
},
|
|
3814
4138
|
images: [{
|
|
4139
|
+
image_sync: {
|
|
4140
|
+
chain_name: 'odin',
|
|
4141
|
+
base_denom: 'mO9W'
|
|
4142
|
+
},
|
|
3815
4143
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png',
|
|
3816
4144
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg'
|
|
3817
4145
|
}],
|
|
@@ -3850,6 +4178,10 @@ const assets = {
|
|
|
3850
4178
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png'
|
|
3851
4179
|
},
|
|
3852
4180
|
images: [{
|
|
4181
|
+
image_sync: {
|
|
4182
|
+
chain_name: 'kichain',
|
|
4183
|
+
base_denom: 'cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy'
|
|
4184
|
+
},
|
|
3853
4185
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png'
|
|
3854
4186
|
}]
|
|
3855
4187
|
},
|
|
@@ -3899,10 +4231,16 @@ const assets = {
|
|
|
3899
4231
|
}
|
|
3900
4232
|
],
|
|
3901
4233
|
logo_URIs: {
|
|
4234
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png',
|
|
3902
4235
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg'
|
|
3903
4236
|
},
|
|
3904
4237
|
images: [{
|
|
3905
|
-
|
|
4238
|
+
image_sync: {
|
|
4239
|
+
chain_name: 'axelar',
|
|
4240
|
+
base_denom: 'wglmr-wei'
|
|
4241
|
+
},
|
|
4242
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg',
|
|
4243
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png'
|
|
3906
4244
|
}]
|
|
3907
4245
|
},
|
|
3908
4246
|
{
|
|
@@ -3939,6 +4277,10 @@ const assets = {
|
|
|
3939
4277
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg'
|
|
3940
4278
|
},
|
|
3941
4279
|
images: [{
|
|
4280
|
+
image_sync: {
|
|
4281
|
+
chain_name: 'juno',
|
|
4282
|
+
base_denom: 'cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se'
|
|
4283
|
+
},
|
|
3942
4284
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png',
|
|
3943
4285
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg'
|
|
3944
4286
|
}]
|
|
@@ -3977,6 +4319,10 @@ const assets = {
|
|
|
3977
4319
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg'
|
|
3978
4320
|
},
|
|
3979
4321
|
images: [{
|
|
4322
|
+
image_sync: {
|
|
4323
|
+
chain_name: 'juno',
|
|
4324
|
+
base_denom: 'cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh'
|
|
4325
|
+
},
|
|
3980
4326
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png',
|
|
3981
4327
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg'
|
|
3982
4328
|
}]
|
|
@@ -4013,6 +4359,10 @@ const assets = {
|
|
|
4013
4359
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg'
|
|
4014
4360
|
},
|
|
4015
4361
|
images: [{
|
|
4362
|
+
image_sync: {
|
|
4363
|
+
chain_name: 'crescent',
|
|
4364
|
+
base_denom: 'ucre'
|
|
4365
|
+
},
|
|
4016
4366
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png',
|
|
4017
4367
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg'
|
|
4018
4368
|
}]
|
|
@@ -4049,6 +4399,10 @@ const assets = {
|
|
|
4049
4399
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg'
|
|
4050
4400
|
},
|
|
4051
4401
|
images: [{
|
|
4402
|
+
image_sync: {
|
|
4403
|
+
chain_name: 'lumenx',
|
|
4404
|
+
base_denom: 'ulumen'
|
|
4405
|
+
},
|
|
4052
4406
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png',
|
|
4053
4407
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg'
|
|
4054
4408
|
}],
|
|
@@ -4086,6 +4440,10 @@ const assets = {
|
|
|
4086
4440
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg'
|
|
4087
4441
|
},
|
|
4088
4442
|
images: [{
|
|
4443
|
+
image_sync: {
|
|
4444
|
+
chain_name: 'oraichain',
|
|
4445
|
+
base_denom: 'orai'
|
|
4446
|
+
},
|
|
4089
4447
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png',
|
|
4090
4448
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg'
|
|
4091
4449
|
}]
|
|
@@ -4122,6 +4480,10 @@ const assets = {
|
|
|
4122
4480
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg'
|
|
4123
4481
|
},
|
|
4124
4482
|
images: [{
|
|
4483
|
+
image_sync: {
|
|
4484
|
+
chain_name: 'cudos',
|
|
4485
|
+
base_denom: 'acudos'
|
|
4486
|
+
},
|
|
4125
4487
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png',
|
|
4126
4488
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg'
|
|
4127
4489
|
}]
|
|
@@ -4158,6 +4520,10 @@ const assets = {
|
|
|
4158
4520
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg'
|
|
4159
4521
|
},
|
|
4160
4522
|
images: [{
|
|
4523
|
+
image_sync: {
|
|
4524
|
+
chain_name: 'kava',
|
|
4525
|
+
base_denom: 'usdx'
|
|
4526
|
+
},
|
|
4161
4527
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png',
|
|
4162
4528
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg'
|
|
4163
4529
|
}]
|
|
@@ -4194,6 +4560,10 @@ const assets = {
|
|
|
4194
4560
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
|
|
4195
4561
|
},
|
|
4196
4562
|
images: [{
|
|
4563
|
+
image_sync: {
|
|
4564
|
+
chain_name: 'agoric',
|
|
4565
|
+
base_denom: 'ubld'
|
|
4566
|
+
},
|
|
4197
4567
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png',
|
|
4198
4568
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg'
|
|
4199
4569
|
}]
|
|
@@ -4230,6 +4600,10 @@ const assets = {
|
|
|
4230
4600
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
|
|
4231
4601
|
},
|
|
4232
4602
|
images: [{
|
|
4603
|
+
image_sync: {
|
|
4604
|
+
chain_name: 'agoric',
|
|
4605
|
+
base_denom: 'uist'
|
|
4606
|
+
},
|
|
4233
4607
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png',
|
|
4234
4608
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg'
|
|
4235
4609
|
}]
|
|
@@ -4268,6 +4642,10 @@ const assets = {
|
|
|
4268
4642
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg'
|
|
4269
4643
|
},
|
|
4270
4644
|
images: [{
|
|
4645
|
+
image_sync: {
|
|
4646
|
+
chain_name: 'juno',
|
|
4647
|
+
base_denom: 'cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv'
|
|
4648
|
+
},
|
|
4271
4649
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png',
|
|
4272
4650
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg'
|
|
4273
4651
|
}]
|
|
@@ -4306,6 +4684,10 @@ const assets = {
|
|
|
4306
4684
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg'
|
|
4307
4685
|
},
|
|
4308
4686
|
images: [{
|
|
4687
|
+
image_sync: {
|
|
4688
|
+
chain_name: 'juno',
|
|
4689
|
+
base_denom: 'cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3'
|
|
4690
|
+
},
|
|
4309
4691
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png',
|
|
4310
4692
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg'
|
|
4311
4693
|
}]
|
|
@@ -4434,6 +4816,10 @@ const assets = {
|
|
|
4434
4816
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg'
|
|
4435
4817
|
},
|
|
4436
4818
|
images: [{
|
|
4819
|
+
image_sync: {
|
|
4820
|
+
chain_name: 'stride',
|
|
4821
|
+
base_denom: 'stustars'
|
|
4822
|
+
},
|
|
4437
4823
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png',
|
|
4438
4824
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg'
|
|
4439
4825
|
}]
|
|
@@ -4472,6 +4858,10 @@ const assets = {
|
|
|
4472
4858
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg'
|
|
4473
4859
|
},
|
|
4474
4860
|
images: [{
|
|
4861
|
+
image_sync: {
|
|
4862
|
+
chain_name: 'juno',
|
|
4863
|
+
base_denom: 'cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse'
|
|
4864
|
+
},
|
|
4475
4865
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png',
|
|
4476
4866
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg'
|
|
4477
4867
|
}]
|
|
@@ -4510,6 +4900,10 @@ const assets = {
|
|
|
4510
4900
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg'
|
|
4511
4901
|
},
|
|
4512
4902
|
images: [{
|
|
4903
|
+
image_sync: {
|
|
4904
|
+
chain_name: 'juno',
|
|
4905
|
+
base_denom: 'cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf'
|
|
4906
|
+
},
|
|
4513
4907
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png',
|
|
4514
4908
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg'
|
|
4515
4909
|
}]
|
|
@@ -4546,6 +4940,10 @@ const assets = {
|
|
|
4546
4940
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
4547
4941
|
},
|
|
4548
4942
|
images: [{
|
|
4943
|
+
image_sync: {
|
|
4944
|
+
chain_name: 'axelar',
|
|
4945
|
+
base_denom: 'uaxl'
|
|
4946
|
+
},
|
|
4549
4947
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
4550
4948
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
4551
4949
|
}]
|
|
@@ -4582,6 +4980,10 @@ const assets = {
|
|
|
4582
4980
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg'
|
|
4583
4981
|
},
|
|
4584
4982
|
images: [{
|
|
4983
|
+
image_sync: {
|
|
4984
|
+
chain_name: 'rebus',
|
|
4985
|
+
base_denom: 'arebus'
|
|
4986
|
+
},
|
|
4585
4987
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png',
|
|
4586
4988
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg'
|
|
4587
4989
|
}]
|
|
@@ -4664,6 +5066,10 @@ const assets = {
|
|
|
4664
5066
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg'
|
|
4665
5067
|
},
|
|
4666
5068
|
images: [{
|
|
5069
|
+
image_sync: {
|
|
5070
|
+
chain_name: 'stride',
|
|
5071
|
+
base_denom: 'stujuno'
|
|
5072
|
+
},
|
|
4667
5073
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png',
|
|
4668
5074
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg'
|
|
4669
5075
|
}]
|
|
@@ -4747,6 +5153,10 @@ const assets = {
|
|
|
4747
5153
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png'
|
|
4748
5154
|
},
|
|
4749
5155
|
images: [{
|
|
5156
|
+
image_sync: {
|
|
5157
|
+
chain_name: 'juno',
|
|
5158
|
+
base_denom: 'cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3'
|
|
5159
|
+
},
|
|
4750
5160
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png'
|
|
4751
5161
|
}]
|
|
4752
5162
|
},
|
|
@@ -4782,6 +5192,10 @@ const assets = {
|
|
|
4782
5192
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg'
|
|
4783
5193
|
},
|
|
4784
5194
|
images: [{
|
|
5195
|
+
image_sync: {
|
|
5196
|
+
chain_name: 'lambda',
|
|
5197
|
+
base_denom: 'ulamb'
|
|
5198
|
+
},
|
|
4785
5199
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png',
|
|
4786
5200
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg'
|
|
4787
5201
|
}]
|
|
@@ -4818,6 +5232,10 @@ const assets = {
|
|
|
4818
5232
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg'
|
|
4819
5233
|
},
|
|
4820
5234
|
images: [{
|
|
5235
|
+
image_sync: {
|
|
5236
|
+
chain_name: 'kujira',
|
|
5237
|
+
base_denom: 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk'
|
|
5238
|
+
},
|
|
4821
5239
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png',
|
|
4822
5240
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg'
|
|
4823
5241
|
}]
|
|
@@ -4854,8 +5272,12 @@ const assets = {
|
|
|
4854
5272
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg'
|
|
4855
5273
|
},
|
|
4856
5274
|
images: [{
|
|
4857
|
-
|
|
4858
|
-
|
|
5275
|
+
image_sync: {
|
|
5276
|
+
chain_name: 'unification',
|
|
5277
|
+
base_denom: 'nund'
|
|
5278
|
+
},
|
|
5279
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png',
|
|
5280
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg'
|
|
4859
5281
|
}]
|
|
4860
5282
|
},
|
|
4861
5283
|
{
|
|
@@ -4890,6 +5312,10 @@ const assets = {
|
|
|
4890
5312
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg'
|
|
4891
5313
|
},
|
|
4892
5314
|
images: [{
|
|
5315
|
+
image_sync: {
|
|
5316
|
+
chain_name: 'jackal',
|
|
5317
|
+
base_denom: 'ujkl'
|
|
5318
|
+
},
|
|
4893
5319
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png',
|
|
4894
5320
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg'
|
|
4895
5321
|
}]
|
|
@@ -4928,6 +5354,10 @@ const assets = {
|
|
|
4928
5354
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
|
|
4929
5355
|
},
|
|
4930
5356
|
images: [{
|
|
5357
|
+
image_sync: {
|
|
5358
|
+
chain_name: 'secretnetwork',
|
|
5359
|
+
base_denom: 'cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej'
|
|
5360
|
+
},
|
|
4931
5361
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
|
|
4932
5362
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
|
|
4933
5363
|
}]
|
|
@@ -4966,6 +5396,10 @@ const assets = {
|
|
|
4966
5396
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg'
|
|
4967
5397
|
},
|
|
4968
5398
|
images: [{
|
|
5399
|
+
image_sync: {
|
|
5400
|
+
chain_name: 'secretnetwork',
|
|
5401
|
+
base_denom: 'cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt'
|
|
5402
|
+
},
|
|
4969
5403
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png',
|
|
4970
5404
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg'
|
|
4971
5405
|
}]
|
|
@@ -5003,6 +5437,10 @@ const assets = {
|
|
|
5003
5437
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg'
|
|
5004
5438
|
},
|
|
5005
5439
|
images: [{
|
|
5440
|
+
image_sync: {
|
|
5441
|
+
chain_name: 'secretnetwork',
|
|
5442
|
+
base_denom: 'cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d'
|
|
5443
|
+
},
|
|
5006
5444
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg'
|
|
5007
5445
|
}]
|
|
5008
5446
|
},
|
|
@@ -5040,6 +5478,10 @@ const assets = {
|
|
|
5040
5478
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg'
|
|
5041
5479
|
},
|
|
5042
5480
|
images: [{
|
|
5481
|
+
image_sync: {
|
|
5482
|
+
chain_name: 'secretnetwork',
|
|
5483
|
+
base_denom: 'cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4'
|
|
5484
|
+
},
|
|
5043
5485
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png',
|
|
5044
5486
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg'
|
|
5045
5487
|
}]
|
|
@@ -5078,6 +5520,10 @@ const assets = {
|
|
|
5078
5520
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg'
|
|
5079
5521
|
},
|
|
5080
5522
|
images: [{
|
|
5523
|
+
image_sync: {
|
|
5524
|
+
chain_name: 'secretnetwork',
|
|
5525
|
+
base_denom: 'cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4'
|
|
5526
|
+
},
|
|
5081
5527
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png',
|
|
5082
5528
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg'
|
|
5083
5529
|
}]
|
|
@@ -5114,6 +5560,10 @@ const assets = {
|
|
|
5114
5560
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg'
|
|
5115
5561
|
},
|
|
5116
5562
|
images: [{
|
|
5563
|
+
image_sync: {
|
|
5564
|
+
chain_name: 'beezee',
|
|
5565
|
+
base_denom: 'ubze'
|
|
5566
|
+
},
|
|
5117
5567
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png',
|
|
5118
5568
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg'
|
|
5119
5569
|
}]
|
|
@@ -5151,6 +5601,10 @@ const assets = {
|
|
|
5151
5601
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png'
|
|
5152
5602
|
},
|
|
5153
5603
|
images: [{
|
|
5604
|
+
image_sync: {
|
|
5605
|
+
chain_name: 'juno',
|
|
5606
|
+
base_denom: 'cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz'
|
|
5607
|
+
},
|
|
5154
5608
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png'
|
|
5155
5609
|
}]
|
|
5156
5610
|
},
|
|
@@ -5186,6 +5640,10 @@ const assets = {
|
|
|
5186
5640
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
5187
5641
|
},
|
|
5188
5642
|
images: [{
|
|
5643
|
+
image_sync: {
|
|
5644
|
+
chain_name: 'acrechain',
|
|
5645
|
+
base_denom: 'aacre'
|
|
5646
|
+
},
|
|
5189
5647
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
5190
5648
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
5191
5649
|
}]
|
|
@@ -5222,6 +5680,10 @@ const assets = {
|
|
|
5222
5680
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg'
|
|
5223
5681
|
},
|
|
5224
5682
|
images: [{
|
|
5683
|
+
image_sync: {
|
|
5684
|
+
chain_name: 'comdex',
|
|
5685
|
+
base_denom: 'ucmst'
|
|
5686
|
+
},
|
|
5225
5687
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png',
|
|
5226
5688
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg'
|
|
5227
5689
|
}]
|
|
@@ -5258,6 +5720,10 @@ const assets = {
|
|
|
5258
5720
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg'
|
|
5259
5721
|
},
|
|
5260
5722
|
images: [{
|
|
5723
|
+
image_sync: {
|
|
5724
|
+
chain_name: 'imversed',
|
|
5725
|
+
base_denom: 'aimv'
|
|
5726
|
+
},
|
|
5261
5727
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png',
|
|
5262
5728
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg'
|
|
5263
5729
|
}]
|
|
@@ -5294,6 +5760,10 @@ const assets = {
|
|
|
5294
5760
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg'
|
|
5295
5761
|
},
|
|
5296
5762
|
images: [{
|
|
5763
|
+
image_sync: {
|
|
5764
|
+
chain_name: 'medasdigital',
|
|
5765
|
+
base_denom: 'umedas'
|
|
5766
|
+
},
|
|
5297
5767
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png',
|
|
5298
5768
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg'
|
|
5299
5769
|
}],
|
|
@@ -5334,6 +5804,10 @@ const assets = {
|
|
|
5334
5804
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg'
|
|
5335
5805
|
},
|
|
5336
5806
|
images: [{
|
|
5807
|
+
image_sync: {
|
|
5808
|
+
chain_name: 'juno',
|
|
5809
|
+
base_denom: 'cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l'
|
|
5810
|
+
},
|
|
5337
5811
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png',
|
|
5338
5812
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg'
|
|
5339
5813
|
}],
|
|
@@ -5376,6 +5850,10 @@ const assets = {
|
|
|
5376
5850
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
|
|
5377
5851
|
},
|
|
5378
5852
|
images: [{
|
|
5853
|
+
image_sync: {
|
|
5854
|
+
chain_name: 'secretnetwork',
|
|
5855
|
+
base_denom: 'cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852'
|
|
5856
|
+
},
|
|
5379
5857
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
|
|
5380
5858
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
|
|
5381
5859
|
}]
|
|
@@ -5412,6 +5890,10 @@ const assets = {
|
|
|
5412
5890
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg'
|
|
5413
5891
|
},
|
|
5414
5892
|
images: [{
|
|
5893
|
+
image_sync: {
|
|
5894
|
+
chain_name: 'onomy',
|
|
5895
|
+
base_denom: 'anom'
|
|
5896
|
+
},
|
|
5415
5897
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png',
|
|
5416
5898
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg'
|
|
5417
5899
|
}],
|
|
@@ -5499,6 +5981,10 @@ const assets = {
|
|
|
5499
5981
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg'
|
|
5500
5982
|
},
|
|
5501
5983
|
images: [{
|
|
5984
|
+
image_sync: {
|
|
5985
|
+
chain_name: 'dyson',
|
|
5986
|
+
base_denom: 'dys'
|
|
5987
|
+
},
|
|
5502
5988
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png',
|
|
5503
5989
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg'
|
|
5504
5990
|
}]
|
|
@@ -5537,6 +6023,10 @@ const assets = {
|
|
|
5537
6023
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg'
|
|
5538
6024
|
},
|
|
5539
6025
|
images: [{
|
|
6026
|
+
image_sync: {
|
|
6027
|
+
chain_name: 'juno',
|
|
6028
|
+
base_denom: 'cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n'
|
|
6029
|
+
},
|
|
5540
6030
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png',
|
|
5541
6031
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg'
|
|
5542
6032
|
}]
|
|
@@ -5573,6 +6063,10 @@ const assets = {
|
|
|
5573
6063
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
5574
6064
|
},
|
|
5575
6065
|
images: [{
|
|
6066
|
+
image_sync: {
|
|
6067
|
+
chain_name: 'acrechain',
|
|
6068
|
+
base_denom: 'erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c'
|
|
6069
|
+
},
|
|
5576
6070
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
5577
6071
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
5578
6072
|
}]
|
|
@@ -5609,6 +6103,10 @@ const assets = {
|
|
|
5609
6103
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg'
|
|
5610
6104
|
},
|
|
5611
6105
|
images: [{
|
|
6106
|
+
image_sync: {
|
|
6107
|
+
chain_name: 'planq',
|
|
6108
|
+
base_denom: 'aplanq'
|
|
6109
|
+
},
|
|
5612
6110
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png',
|
|
5613
6111
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg'
|
|
5614
6112
|
}]
|
|
@@ -5666,6 +6164,10 @@ const assets = {
|
|
|
5666
6164
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg'
|
|
5667
6165
|
},
|
|
5668
6166
|
images: [{
|
|
6167
|
+
image_sync: {
|
|
6168
|
+
chain_name: 'axelar',
|
|
6169
|
+
base_denom: 'wftm-wei'
|
|
6170
|
+
},
|
|
5669
6171
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png',
|
|
5670
6172
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg'
|
|
5671
6173
|
}]
|
|
@@ -5702,6 +6204,10 @@ const assets = {
|
|
|
5702
6204
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg'
|
|
5703
6205
|
},
|
|
5704
6206
|
images: [{
|
|
6207
|
+
image_sync: {
|
|
6208
|
+
chain_name: 'canto',
|
|
6209
|
+
base_denom: 'acanto'
|
|
6210
|
+
},
|
|
5705
6211
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png',
|
|
5706
6212
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg'
|
|
5707
6213
|
}]
|
|
@@ -5746,6 +6252,10 @@ const assets = {
|
|
|
5746
6252
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg'
|
|
5747
6253
|
},
|
|
5748
6254
|
images: [{
|
|
6255
|
+
image_sync: {
|
|
6256
|
+
chain_name: 'quicksilver',
|
|
6257
|
+
base_denom: 'uqstars'
|
|
6258
|
+
},
|
|
5749
6259
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png',
|
|
5750
6260
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg'
|
|
5751
6261
|
}]
|
|
@@ -5784,6 +6294,10 @@ const assets = {
|
|
|
5784
6294
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg'
|
|
5785
6295
|
},
|
|
5786
6296
|
images: [{
|
|
6297
|
+
image_sync: {
|
|
6298
|
+
chain_name: 'juno',
|
|
6299
|
+
base_denom: 'cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9'
|
|
6300
|
+
},
|
|
5787
6301
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png',
|
|
5788
6302
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg'
|
|
5789
6303
|
}]
|
|
@@ -5944,6 +6458,10 @@ const assets = {
|
|
|
5944
6458
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg'
|
|
5945
6459
|
},
|
|
5946
6460
|
images: [{
|
|
6461
|
+
image_sync: {
|
|
6462
|
+
chain_name: 'mars',
|
|
6463
|
+
base_denom: 'umars'
|
|
6464
|
+
},
|
|
5947
6465
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png',
|
|
5948
6466
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg'
|
|
5949
6467
|
}]
|
|
@@ -5980,6 +6498,10 @@ const assets = {
|
|
|
5980
6498
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg'
|
|
5981
6499
|
},
|
|
5982
6500
|
images: [{
|
|
6501
|
+
image_sync: {
|
|
6502
|
+
chain_name: 'acrechain',
|
|
6503
|
+
base_denom: 'erc20/0xAE6D3334989a22A65228732446731438672418F2'
|
|
6504
|
+
},
|
|
5983
6505
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png',
|
|
5984
6506
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg'
|
|
5985
6507
|
}]
|
|
@@ -6022,6 +6544,10 @@ const assets = {
|
|
|
6022
6544
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg'
|
|
6023
6545
|
},
|
|
6024
6546
|
images: [{
|
|
6547
|
+
image_sync: {
|
|
6548
|
+
chain_name: 'stride',
|
|
6549
|
+
base_denom: 'stuluna'
|
|
6550
|
+
},
|
|
6025
6551
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png',
|
|
6026
6552
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg'
|
|
6027
6553
|
}]
|
|
@@ -6064,6 +6590,10 @@ const assets = {
|
|
|
6064
6590
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg'
|
|
6065
6591
|
},
|
|
6066
6592
|
images: [{
|
|
6593
|
+
image_sync: {
|
|
6594
|
+
chain_name: 'stride',
|
|
6595
|
+
base_denom: 'staevmos'
|
|
6596
|
+
},
|
|
6067
6597
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png',
|
|
6068
6598
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg'
|
|
6069
6599
|
}]
|
|
@@ -6102,6 +6632,10 @@ const assets = {
|
|
|
6102
6632
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg'
|
|
6103
6633
|
},
|
|
6104
6634
|
images: [{
|
|
6635
|
+
image_sync: {
|
|
6636
|
+
chain_name: 'juno',
|
|
6637
|
+
base_denom: 'cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq'
|
|
6638
|
+
},
|
|
6105
6639
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png',
|
|
6106
6640
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg'
|
|
6107
6641
|
}]
|
|
@@ -6138,6 +6672,10 @@ const assets = {
|
|
|
6138
6672
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg'
|
|
6139
6673
|
},
|
|
6140
6674
|
images: [{
|
|
6675
|
+
image_sync: {
|
|
6676
|
+
chain_name: '8ball',
|
|
6677
|
+
base_denom: 'uebl'
|
|
6678
|
+
},
|
|
6141
6679
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png',
|
|
6142
6680
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg'
|
|
6143
6681
|
}]
|
|
@@ -6182,6 +6720,10 @@ const assets = {
|
|
|
6182
6720
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg'
|
|
6183
6721
|
},
|
|
6184
6722
|
images: [{
|
|
6723
|
+
image_sync: {
|
|
6724
|
+
chain_name: 'quicksilver',
|
|
6725
|
+
base_denom: 'uqatom'
|
|
6726
|
+
},
|
|
6185
6727
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png',
|
|
6186
6728
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg'
|
|
6187
6729
|
}]
|
|
@@ -6218,6 +6760,10 @@ const assets = {
|
|
|
6218
6760
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg'
|
|
6219
6761
|
},
|
|
6220
6762
|
images: [{
|
|
6763
|
+
image_sync: {
|
|
6764
|
+
chain_name: 'comdex',
|
|
6765
|
+
base_denom: 'uharbor'
|
|
6766
|
+
},
|
|
6221
6767
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png',
|
|
6222
6768
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg'
|
|
6223
6769
|
}]
|
|
@@ -6262,6 +6808,10 @@ const assets = {
|
|
|
6262
6808
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg'
|
|
6263
6809
|
},
|
|
6264
6810
|
images: [{
|
|
6811
|
+
image_sync: {
|
|
6812
|
+
chain_name: 'quicksilver',
|
|
6813
|
+
base_denom: 'uqregen'
|
|
6814
|
+
},
|
|
6265
6815
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png',
|
|
6266
6816
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg'
|
|
6267
6817
|
}]
|
|
@@ -6299,6 +6849,10 @@ const assets = {
|
|
|
6299
6849
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png'
|
|
6300
6850
|
},
|
|
6301
6851
|
images: [{
|
|
6852
|
+
image_sync: {
|
|
6853
|
+
chain_name: 'juno',
|
|
6854
|
+
base_denom: 'cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x'
|
|
6855
|
+
},
|
|
6302
6856
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png'
|
|
6303
6857
|
}]
|
|
6304
6858
|
},
|
|
@@ -6334,6 +6888,10 @@ const assets = {
|
|
|
6334
6888
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png'
|
|
6335
6889
|
},
|
|
6336
6890
|
images: [{
|
|
6891
|
+
image_sync: {
|
|
6892
|
+
chain_name: 'quicksilver',
|
|
6893
|
+
base_denom: 'uqck'
|
|
6894
|
+
},
|
|
6337
6895
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png'
|
|
6338
6896
|
}]
|
|
6339
6897
|
},
|
|
@@ -6369,6 +6927,10 @@ const assets = {
|
|
|
6369
6927
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg'
|
|
6370
6928
|
},
|
|
6371
6929
|
images: [{
|
|
6930
|
+
image_sync: {
|
|
6931
|
+
chain_name: 'arkh',
|
|
6932
|
+
base_denom: 'arkh'
|
|
6933
|
+
},
|
|
6372
6934
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png',
|
|
6373
6935
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg'
|
|
6374
6936
|
}],
|
|
@@ -6414,6 +6976,10 @@ const assets = {
|
|
|
6414
6976
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg'
|
|
6415
6977
|
},
|
|
6416
6978
|
images: [{
|
|
6979
|
+
image_sync: {
|
|
6980
|
+
chain_name: 'quicksilver',
|
|
6981
|
+
base_denom: 'uqosmo'
|
|
6982
|
+
},
|
|
6417
6983
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png',
|
|
6418
6984
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg'
|
|
6419
6985
|
}]
|
|
@@ -6450,6 +7016,10 @@ const assets = {
|
|
|
6450
7016
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg'
|
|
6451
7017
|
},
|
|
6452
7018
|
images: [{
|
|
7019
|
+
image_sync: {
|
|
7020
|
+
chain_name: 'noble',
|
|
7021
|
+
base_denom: 'ufrienzies'
|
|
7022
|
+
},
|
|
6453
7023
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png',
|
|
6454
7024
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg'
|
|
6455
7025
|
}]
|
|
@@ -6486,6 +7056,10 @@ const assets = {
|
|
|
6486
7056
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
|
|
6487
7057
|
},
|
|
6488
7058
|
images: [{
|
|
7059
|
+
image_sync: {
|
|
7060
|
+
chain_name: 'migaloo',
|
|
7061
|
+
base_denom: 'uwhale'
|
|
7062
|
+
},
|
|
6489
7063
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png',
|
|
6490
7064
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg'
|
|
6491
7065
|
}]
|
|
@@ -6523,6 +7097,10 @@ const assets = {
|
|
|
6523
7097
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png'
|
|
6524
7098
|
},
|
|
6525
7099
|
images: [{
|
|
7100
|
+
image_sync: {
|
|
7101
|
+
chain_name: 'juno',
|
|
7102
|
+
base_denom: 'cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma'
|
|
7103
|
+
},
|
|
6526
7104
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png'
|
|
6527
7105
|
}]
|
|
6528
7106
|
},
|
|
@@ -6560,6 +7138,10 @@ const assets = {
|
|
|
6560
7138
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg'
|
|
6561
7139
|
},
|
|
6562
7140
|
images: [{
|
|
7141
|
+
image_sync: {
|
|
7142
|
+
chain_name: 'juno',
|
|
7143
|
+
base_denom: 'cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my'
|
|
7144
|
+
},
|
|
6563
7145
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png',
|
|
6564
7146
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg'
|
|
6565
7147
|
}]
|
|
@@ -6597,6 +7179,10 @@ const assets = {
|
|
|
6597
7179
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png'
|
|
6598
7180
|
},
|
|
6599
7181
|
images: [{
|
|
7182
|
+
image_sync: {
|
|
7183
|
+
chain_name: 'juno',
|
|
7184
|
+
base_denom: 'cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z'
|
|
7185
|
+
},
|
|
6600
7186
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png'
|
|
6601
7187
|
}]
|
|
6602
7188
|
},
|
|
@@ -6634,6 +7220,10 @@ const assets = {
|
|
|
6634
7220
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg'
|
|
6635
7221
|
},
|
|
6636
7222
|
images: [{
|
|
7223
|
+
image_sync: {
|
|
7224
|
+
chain_name: 'juno',
|
|
7225
|
+
base_denom: 'cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp'
|
|
7226
|
+
},
|
|
6637
7227
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png',
|
|
6638
7228
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg'
|
|
6639
7229
|
}]
|
|
@@ -6670,6 +7260,10 @@ const assets = {
|
|
|
6670
7260
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg'
|
|
6671
7261
|
},
|
|
6672
7262
|
images: [{
|
|
7263
|
+
image_sync: {
|
|
7264
|
+
chain_name: 'regen',
|
|
7265
|
+
base_denom: 'eco.uC.NCT'
|
|
7266
|
+
},
|
|
6673
7267
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png',
|
|
6674
7268
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg'
|
|
6675
7269
|
}]
|
|
@@ -6707,6 +7301,10 @@ const assets = {
|
|
|
6707
7301
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png'
|
|
6708
7302
|
},
|
|
6709
7303
|
images: [{
|
|
7304
|
+
image_sync: {
|
|
7305
|
+
chain_name: 'juno',
|
|
7306
|
+
base_denom: 'cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg'
|
|
7307
|
+
},
|
|
6710
7308
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png'
|
|
6711
7309
|
}]
|
|
6712
7310
|
},
|
|
@@ -6743,6 +7341,10 @@ const assets = {
|
|
|
6743
7341
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png'
|
|
6744
7342
|
},
|
|
6745
7343
|
images: [{
|
|
7344
|
+
image_sync: {
|
|
7345
|
+
chain_name: 'juno',
|
|
7346
|
+
base_denom: 'cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je'
|
|
7347
|
+
},
|
|
6746
7348
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png'
|
|
6747
7349
|
}]
|
|
6748
7350
|
},
|
|
@@ -6779,6 +7381,10 @@ const assets = {
|
|
|
6779
7381
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png'
|
|
6780
7382
|
},
|
|
6781
7383
|
images: [{
|
|
7384
|
+
image_sync: {
|
|
7385
|
+
chain_name: 'juno',
|
|
7386
|
+
base_denom: 'cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06'
|
|
7387
|
+
},
|
|
6782
7388
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png'
|
|
6783
7389
|
}]
|
|
6784
7390
|
},
|
|
@@ -6815,6 +7421,10 @@ const assets = {
|
|
|
6815
7421
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png'
|
|
6816
7422
|
},
|
|
6817
7423
|
images: [{
|
|
7424
|
+
image_sync: {
|
|
7425
|
+
chain_name: 'juno',
|
|
7426
|
+
base_denom: 'cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8'
|
|
7427
|
+
},
|
|
6818
7428
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png'
|
|
6819
7429
|
}]
|
|
6820
7430
|
},
|
|
@@ -6851,6 +7461,10 @@ const assets = {
|
|
|
6851
7461
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png'
|
|
6852
7462
|
},
|
|
6853
7463
|
images: [{
|
|
7464
|
+
image_sync: {
|
|
7465
|
+
chain_name: 'juno',
|
|
7466
|
+
base_denom: 'cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d'
|
|
7467
|
+
},
|
|
6854
7468
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png'
|
|
6855
7469
|
}]
|
|
6856
7470
|
},
|
|
@@ -6887,6 +7501,10 @@ const assets = {
|
|
|
6887
7501
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png'
|
|
6888
7502
|
},
|
|
6889
7503
|
images: [{
|
|
7504
|
+
image_sync: {
|
|
7505
|
+
chain_name: 'juno',
|
|
7506
|
+
base_denom: 'cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488'
|
|
7507
|
+
},
|
|
6890
7508
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png'
|
|
6891
7509
|
}]
|
|
6892
7510
|
},
|
|
@@ -6923,6 +7541,10 @@ const assets = {
|
|
|
6923
7541
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png'
|
|
6924
7542
|
},
|
|
6925
7543
|
images: [{
|
|
7544
|
+
image_sync: {
|
|
7545
|
+
chain_name: 'juno',
|
|
7546
|
+
base_denom: 'cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm'
|
|
7547
|
+
},
|
|
6926
7548
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png'
|
|
6927
7549
|
}]
|
|
6928
7550
|
},
|
|
@@ -6958,6 +7580,10 @@ const assets = {
|
|
|
6958
7580
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg'
|
|
6959
7581
|
},
|
|
6960
7582
|
images: [{
|
|
7583
|
+
image_sync: {
|
|
7584
|
+
chain_name: 'omniflixhub',
|
|
7585
|
+
base_denom: 'uflix'
|
|
7586
|
+
},
|
|
6961
7587
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png',
|
|
6962
7588
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg'
|
|
6963
7589
|
}]
|
|
@@ -6995,6 +7621,10 @@ const assets = {
|
|
|
6995
7621
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png'
|
|
6996
7622
|
},
|
|
6997
7623
|
images: [{
|
|
7624
|
+
image_sync: {
|
|
7625
|
+
chain_name: 'juno',
|
|
7626
|
+
base_denom: 'cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg'
|
|
7627
|
+
},
|
|
6998
7628
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png'
|
|
6999
7629
|
}]
|
|
7000
7630
|
},
|
|
@@ -7031,6 +7661,10 @@ const assets = {
|
|
|
7031
7661
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png'
|
|
7032
7662
|
},
|
|
7033
7663
|
images: [{
|
|
7664
|
+
image_sync: {
|
|
7665
|
+
chain_name: 'juno',
|
|
7666
|
+
base_denom: 'cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l'
|
|
7667
|
+
},
|
|
7034
7668
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png'
|
|
7035
7669
|
}]
|
|
7036
7670
|
},
|
|
@@ -7068,6 +7702,10 @@ const assets = {
|
|
|
7068
7702
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg'
|
|
7069
7703
|
},
|
|
7070
7704
|
images: [{
|
|
7705
|
+
image_sync: {
|
|
7706
|
+
chain_name: 'secretnetwork',
|
|
7707
|
+
base_denom: 'cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd'
|
|
7708
|
+
},
|
|
7071
7709
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png',
|
|
7072
7710
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg'
|
|
7073
7711
|
}]
|
|
@@ -7105,6 +7743,10 @@ const assets = {
|
|
|
7105
7743
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png'
|
|
7106
7744
|
},
|
|
7107
7745
|
images: [{
|
|
7746
|
+
image_sync: {
|
|
7747
|
+
chain_name: 'juno',
|
|
7748
|
+
base_denom: 'cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d'
|
|
7749
|
+
},
|
|
7108
7750
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png'
|
|
7109
7751
|
}]
|
|
7110
7752
|
},
|
|
@@ -7141,6 +7783,10 @@ const assets = {
|
|
|
7141
7783
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png'
|
|
7142
7784
|
},
|
|
7143
7785
|
images: [{
|
|
7786
|
+
image_sync: {
|
|
7787
|
+
chain_name: 'juno',
|
|
7788
|
+
base_denom: 'cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq'
|
|
7789
|
+
},
|
|
7144
7790
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png'
|
|
7145
7791
|
}]
|
|
7146
7792
|
},
|
|
@@ -7231,6 +7877,10 @@ const assets = {
|
|
|
7231
7877
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png'
|
|
7232
7878
|
},
|
|
7233
7879
|
images: [{
|
|
7880
|
+
image_sync: {
|
|
7881
|
+
chain_name: 'juno',
|
|
7882
|
+
base_denom: 'cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8'
|
|
7883
|
+
},
|
|
7234
7884
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png'
|
|
7235
7885
|
}]
|
|
7236
7886
|
},
|
|
@@ -7268,6 +7918,10 @@ const assets = {
|
|
|
7268
7918
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg'
|
|
7269
7919
|
},
|
|
7270
7920
|
images: [{
|
|
7921
|
+
image_sync: {
|
|
7922
|
+
chain_name: 'secretnetwork',
|
|
7923
|
+
base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm'
|
|
7924
|
+
},
|
|
7271
7925
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png',
|
|
7272
7926
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg'
|
|
7273
7927
|
}]
|
|
@@ -7305,6 +7959,10 @@ const assets = {
|
|
|
7305
7959
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg'
|
|
7306
7960
|
},
|
|
7307
7961
|
images: [{
|
|
7962
|
+
image_sync: {
|
|
7963
|
+
chain_name: 'bluzelle',
|
|
7964
|
+
base_denom: 'ubnt'
|
|
7965
|
+
},
|
|
7308
7966
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png',
|
|
7309
7967
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg'
|
|
7310
7968
|
}],
|
|
@@ -7349,6 +8007,10 @@ const assets = {
|
|
|
7349
8007
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg'
|
|
7350
8008
|
},
|
|
7351
8009
|
images: [{
|
|
8010
|
+
image_sync: {
|
|
8011
|
+
chain_name: 'axelar',
|
|
8012
|
+
base_denom: 'arb-wei'
|
|
8013
|
+
},
|
|
7352
8014
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png',
|
|
7353
8015
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg'
|
|
7354
8016
|
}]
|
|
@@ -7386,6 +8048,10 @@ const assets = {
|
|
|
7386
8048
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png'
|
|
7387
8049
|
},
|
|
7388
8050
|
images: [{
|
|
8051
|
+
image_sync: {
|
|
8052
|
+
chain_name: 'juno',
|
|
8053
|
+
base_denom: 'cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux'
|
|
8054
|
+
},
|
|
7389
8055
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png'
|
|
7390
8056
|
}]
|
|
7391
8057
|
},
|
|
@@ -7422,6 +8088,10 @@ const assets = {
|
|
|
7422
8088
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png'
|
|
7423
8089
|
},
|
|
7424
8090
|
images: [{
|
|
8091
|
+
image_sync: {
|
|
8092
|
+
chain_name: 'juno',
|
|
8093
|
+
base_denom: 'cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k'
|
|
8094
|
+
},
|
|
7425
8095
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png'
|
|
7426
8096
|
}]
|
|
7427
8097
|
},
|
|
@@ -7463,6 +8133,10 @@ const assets = {
|
|
|
7463
8133
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg'
|
|
7464
8134
|
},
|
|
7465
8135
|
images: [{
|
|
8136
|
+
image_sync: {
|
|
8137
|
+
chain_name: 'axelar',
|
|
8138
|
+
base_denom: 'pepe-wei'
|
|
8139
|
+
},
|
|
7466
8140
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png',
|
|
7467
8141
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg'
|
|
7468
8142
|
}]
|
|
@@ -7538,6 +8212,10 @@ const assets = {
|
|
|
7538
8212
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png'
|
|
7539
8213
|
},
|
|
7540
8214
|
images: [{
|
|
8215
|
+
image_sync: {
|
|
8216
|
+
chain_name: 'axelar',
|
|
8217
|
+
base_denom: 'cbeth-wei'
|
|
8218
|
+
},
|
|
7541
8219
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png'
|
|
7542
8220
|
}]
|
|
7543
8221
|
},
|
|
@@ -7590,6 +8268,10 @@ const assets = {
|
|
|
7590
8268
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png'
|
|
7591
8269
|
},
|
|
7592
8270
|
images: [{
|
|
8271
|
+
image_sync: {
|
|
8272
|
+
chain_name: 'axelar',
|
|
8273
|
+
base_denom: 'reth-wei'
|
|
8274
|
+
},
|
|
7593
8275
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png'
|
|
7594
8276
|
}]
|
|
7595
8277
|
},
|
|
@@ -7650,6 +8332,10 @@ const assets = {
|
|
|
7650
8332
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg'
|
|
7651
8333
|
},
|
|
7652
8334
|
images: [{
|
|
8335
|
+
image_sync: {
|
|
8336
|
+
chain_name: 'axelar',
|
|
8337
|
+
base_denom: 'sfrxeth-wei'
|
|
8338
|
+
},
|
|
7653
8339
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg'
|
|
7654
8340
|
}]
|
|
7655
8341
|
},
|
|
@@ -7750,6 +8436,10 @@ const assets = {
|
|
|
7750
8436
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg'
|
|
7751
8437
|
},
|
|
7752
8438
|
images: [{
|
|
8439
|
+
image_sync: {
|
|
8440
|
+
chain_name: 'gitopia',
|
|
8441
|
+
base_denom: 'ulore'
|
|
8442
|
+
},
|
|
7753
8443
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png',
|
|
7754
8444
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg'
|
|
7755
8445
|
}, {
|
|
@@ -7789,6 +8479,10 @@ const assets = {
|
|
|
7789
8479
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png'
|
|
7790
8480
|
},
|
|
7791
8481
|
images: [{
|
|
8482
|
+
image_sync: {
|
|
8483
|
+
chain_name: 'terra2',
|
|
8484
|
+
base_denom: 'cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv'
|
|
8485
|
+
},
|
|
7792
8486
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png'
|
|
7793
8487
|
}]
|
|
7794
8488
|
},
|
|
@@ -7830,6 +8524,10 @@ const assets = {
|
|
|
7830
8524
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg'
|
|
7831
8525
|
},
|
|
7832
8526
|
images: [{
|
|
8527
|
+
image_sync: {
|
|
8528
|
+
chain_name: 'stride',
|
|
8529
|
+
base_denom: 'stuumee'
|
|
8530
|
+
},
|
|
7833
8531
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png',
|
|
7834
8532
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg'
|
|
7835
8533
|
}]
|
|
@@ -7930,6 +8628,10 @@ const assets = {
|
|
|
7930
8628
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png'
|
|
7931
8629
|
},
|
|
7932
8630
|
images: [{
|
|
8631
|
+
image_sync: {
|
|
8632
|
+
chain_name: 'terra2',
|
|
8633
|
+
base_denom: 'cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t'
|
|
8634
|
+
},
|
|
7933
8635
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png'
|
|
7934
8636
|
}]
|
|
7935
8637
|
},
|
|
@@ -7966,6 +8668,10 @@ const assets = {
|
|
|
7966
8668
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png'
|
|
7967
8669
|
},
|
|
7968
8670
|
images: [{
|
|
8671
|
+
image_sync: {
|
|
8672
|
+
chain_name: 'terra2',
|
|
8673
|
+
base_denom: 'cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584'
|
|
8674
|
+
},
|
|
7969
8675
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png'
|
|
7970
8676
|
}]
|
|
7971
8677
|
},
|
|
@@ -8001,6 +8707,10 @@ const assets = {
|
|
|
8001
8707
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg'
|
|
8002
8708
|
},
|
|
8003
8709
|
images: [{
|
|
8710
|
+
image_sync: {
|
|
8711
|
+
chain_name: 'neutron',
|
|
8712
|
+
base_denom: 'untrn'
|
|
8713
|
+
},
|
|
8004
8714
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png',
|
|
8005
8715
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg'
|
|
8006
8716
|
}]
|
|
@@ -8038,6 +8748,10 @@ const assets = {
|
|
|
8038
8748
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png'
|
|
8039
8749
|
},
|
|
8040
8750
|
images: [{
|
|
8751
|
+
image_sync: {
|
|
8752
|
+
chain_name: 'juno',
|
|
8753
|
+
base_denom: 'cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss'
|
|
8754
|
+
},
|
|
8041
8755
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png'
|
|
8042
8756
|
}]
|
|
8043
8757
|
},
|
|
@@ -8139,6 +8853,10 @@ const assets = {
|
|
|
8139
8853
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg'
|
|
8140
8854
|
},
|
|
8141
8855
|
images: [{
|
|
8856
|
+
image_sync: {
|
|
8857
|
+
chain_name: 'composable',
|
|
8858
|
+
base_denom: 'ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9'
|
|
8859
|
+
},
|
|
8142
8860
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg'
|
|
8143
8861
|
}]
|
|
8144
8862
|
},
|
|
@@ -8204,10 +8922,16 @@ const assets = {
|
|
|
8204
8922
|
}
|
|
8205
8923
|
],
|
|
8206
8924
|
logo_URIs: {
|
|
8925
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png',
|
|
8207
8926
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg'
|
|
8208
8927
|
},
|
|
8209
8928
|
images: [{
|
|
8210
|
-
|
|
8929
|
+
image_sync: {
|
|
8930
|
+
chain_name: 'composable',
|
|
8931
|
+
base_denom: 'ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366'
|
|
8932
|
+
},
|
|
8933
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg',
|
|
8934
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png'
|
|
8211
8935
|
}]
|
|
8212
8936
|
},
|
|
8213
8937
|
{
|
|
@@ -8288,6 +9012,10 @@ const assets = {
|
|
|
8288
9012
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg'
|
|
8289
9013
|
},
|
|
8290
9014
|
images: [{
|
|
9015
|
+
image_sync: {
|
|
9016
|
+
chain_name: 'archway',
|
|
9017
|
+
base_denom: 'aarch'
|
|
9018
|
+
},
|
|
8291
9019
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png',
|
|
8292
9020
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg'
|
|
8293
9021
|
}]
|
|
@@ -8323,6 +9051,10 @@ const assets = {
|
|
|
8323
9051
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg'
|
|
8324
9052
|
},
|
|
8325
9053
|
images: [{
|
|
9054
|
+
image_sync: {
|
|
9055
|
+
chain_name: 'empowerchain',
|
|
9056
|
+
base_denom: 'umpwr'
|
|
9057
|
+
},
|
|
8326
9058
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg'
|
|
8327
9059
|
}]
|
|
8328
9060
|
},
|
|
@@ -8359,6 +9091,10 @@ const assets = {
|
|
|
8359
9091
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png'
|
|
8360
9092
|
},
|
|
8361
9093
|
images: [{
|
|
9094
|
+
image_sync: {
|
|
9095
|
+
chain_name: 'juno',
|
|
9096
|
+
base_denom: 'cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw'
|
|
9097
|
+
},
|
|
8362
9098
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png'
|
|
8363
9099
|
}]
|
|
8364
9100
|
},
|
|
@@ -8394,6 +9130,10 @@ const assets = {
|
|
|
8394
9130
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg'
|
|
8395
9131
|
},
|
|
8396
9132
|
images: [{
|
|
9133
|
+
image_sync: {
|
|
9134
|
+
chain_name: 'kyve',
|
|
9135
|
+
base_denom: 'ukyve'
|
|
9136
|
+
},
|
|
8397
9137
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png',
|
|
8398
9138
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg'
|
|
8399
9139
|
}]
|
|
@@ -8512,6 +9252,10 @@ const assets = {
|
|
|
8512
9252
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg'
|
|
8513
9253
|
},
|
|
8514
9254
|
images: [{
|
|
9255
|
+
image_sync: {
|
|
9256
|
+
chain_name: 'sei',
|
|
9257
|
+
base_denom: 'usei'
|
|
9258
|
+
},
|
|
8515
9259
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
|
|
8516
9260
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg'
|
|
8517
9261
|
}]
|
|
@@ -8556,6 +9300,10 @@ const assets = {
|
|
|
8556
9300
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg'
|
|
8557
9301
|
},
|
|
8558
9302
|
images: [{
|
|
9303
|
+
image_sync: {
|
|
9304
|
+
chain_name: 'quicksilver',
|
|
9305
|
+
base_denom: 'uqsomm'
|
|
9306
|
+
},
|
|
8559
9307
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png',
|
|
8560
9308
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg'
|
|
8561
9309
|
}]
|
|
@@ -8591,6 +9339,10 @@ const assets = {
|
|
|
8591
9339
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png'
|
|
8592
9340
|
},
|
|
8593
9341
|
images: [{
|
|
9342
|
+
image_sync: {
|
|
9343
|
+
chain_name: 'passage',
|
|
9344
|
+
base_denom: 'upasg'
|
|
9345
|
+
},
|
|
8594
9346
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png'
|
|
8595
9347
|
}]
|
|
8596
9348
|
},
|
|
@@ -8632,6 +9384,10 @@ const assets = {
|
|
|
8632
9384
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg'
|
|
8633
9385
|
},
|
|
8634
9386
|
images: [{
|
|
9387
|
+
image_sync: {
|
|
9388
|
+
chain_name: 'stride',
|
|
9389
|
+
base_denom: 'stusomm'
|
|
9390
|
+
},
|
|
8635
9391
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png',
|
|
8636
9392
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg'
|
|
8637
9393
|
}]
|
|
@@ -8686,6 +9442,10 @@ const assets = {
|
|
|
8686
9442
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg'
|
|
8687
9443
|
},
|
|
8688
9444
|
images: [{
|
|
9445
|
+
image_sync: {
|
|
9446
|
+
chain_name: 'gateway',
|
|
9447
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA'
|
|
9448
|
+
},
|
|
8689
9449
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg'
|
|
8690
9450
|
}]
|
|
8691
9451
|
},
|
|
@@ -8728,6 +9488,10 @@ const assets = {
|
|
|
8728
9488
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png'
|
|
8729
9489
|
},
|
|
8730
9490
|
images: [{
|
|
9491
|
+
image_sync: {
|
|
9492
|
+
chain_name: 'gateway',
|
|
9493
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR'
|
|
9494
|
+
},
|
|
8731
9495
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png'
|
|
8732
9496
|
}]
|
|
8733
9497
|
},
|
|
@@ -8829,6 +9593,10 @@ const assets = {
|
|
|
8829
9593
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg'
|
|
8830
9594
|
},
|
|
8831
9595
|
images: [{
|
|
9596
|
+
image_sync: {
|
|
9597
|
+
chain_name: 'gateway',
|
|
9598
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh'
|
|
9599
|
+
},
|
|
8832
9600
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg'
|
|
8833
9601
|
}]
|
|
8834
9602
|
},
|
|
@@ -8871,6 +9639,10 @@ const assets = {
|
|
|
8871
9639
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg'
|
|
8872
9640
|
},
|
|
8873
9641
|
images: [{
|
|
9642
|
+
image_sync: {
|
|
9643
|
+
chain_name: 'gateway',
|
|
9644
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r'
|
|
9645
|
+
},
|
|
8874
9646
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg'
|
|
8875
9647
|
}, {
|
|
8876
9648
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg',
|
|
@@ -8911,6 +9683,10 @@ const assets = {
|
|
|
8911
9683
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg'
|
|
8912
9684
|
},
|
|
8913
9685
|
images: [{
|
|
9686
|
+
image_sync: {
|
|
9687
|
+
chain_name: 'kujira',
|
|
9688
|
+
base_denom: 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta'
|
|
9689
|
+
},
|
|
8914
9690
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png',
|
|
8915
9691
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg'
|
|
8916
9692
|
}]
|
|
@@ -8945,6 +9721,10 @@ const assets = {
|
|
|
8945
9721
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png'
|
|
8946
9722
|
},
|
|
8947
9723
|
images: [{
|
|
9724
|
+
image_sync: {
|
|
9725
|
+
chain_name: 'juno',
|
|
9726
|
+
base_denom: 'factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL'
|
|
9727
|
+
},
|
|
8948
9728
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png'
|
|
8949
9729
|
}]
|
|
8950
9730
|
},
|
|
@@ -9058,6 +9838,10 @@ const assets = {
|
|
|
9058
9838
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg'
|
|
9059
9839
|
},
|
|
9060
9840
|
images: [{
|
|
9841
|
+
image_sync: {
|
|
9842
|
+
chain_name: 'gateway',
|
|
9843
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp'
|
|
9844
|
+
},
|
|
9061
9845
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png',
|
|
9062
9846
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg'
|
|
9063
9847
|
}, {
|
|
@@ -9214,6 +9998,10 @@ const assets = {
|
|
|
9214
9998
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg'
|
|
9215
9999
|
},
|
|
9216
10000
|
images: [{
|
|
10001
|
+
image_sync: {
|
|
10002
|
+
chain_name: 'xpla',
|
|
10003
|
+
base_denom: 'axpla'
|
|
10004
|
+
},
|
|
9217
10005
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png',
|
|
9218
10006
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg'
|
|
9219
10007
|
}]
|
|
@@ -9249,6 +10037,10 @@ const assets = {
|
|
|
9249
10037
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png'
|
|
9250
10038
|
},
|
|
9251
10039
|
images: [{
|
|
10040
|
+
image_sync: {
|
|
10041
|
+
chain_name: 'sei',
|
|
10042
|
+
base_denom: 'factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN'
|
|
10043
|
+
},
|
|
9252
10044
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png'
|
|
9253
10045
|
}]
|
|
9254
10046
|
},
|
|
@@ -9284,6 +10076,10 @@ const assets = {
|
|
|
9284
10076
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
9285
10077
|
},
|
|
9286
10078
|
images: [{
|
|
10079
|
+
image_sync: {
|
|
10080
|
+
chain_name: 'evmos',
|
|
10081
|
+
base_denom: 'erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9'
|
|
10082
|
+
},
|
|
9287
10083
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png',
|
|
9288
10084
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
9289
10085
|
}]
|
|
@@ -9320,6 +10116,10 @@ const assets = {
|
|
|
9320
10116
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg'
|
|
9321
10117
|
},
|
|
9322
10118
|
images: [{
|
|
10119
|
+
image_sync: {
|
|
10120
|
+
chain_name: 'realio',
|
|
10121
|
+
base_denom: 'ario'
|
|
10122
|
+
},
|
|
9323
10123
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png',
|
|
9324
10124
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg'
|
|
9325
10125
|
}]
|
|
@@ -9400,6 +10200,10 @@ const assets = {
|
|
|
9400
10200
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg'
|
|
9401
10201
|
},
|
|
9402
10202
|
images: [{
|
|
10203
|
+
image_sync: {
|
|
10204
|
+
chain_name: 'sge',
|
|
10205
|
+
base_denom: 'usge'
|
|
10206
|
+
},
|
|
9403
10207
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png',
|
|
9404
10208
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg'
|
|
9405
10209
|
}]
|
|
@@ -9435,6 +10239,10 @@ const assets = {
|
|
|
9435
10239
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg'
|
|
9436
10240
|
},
|
|
9437
10241
|
images: [{
|
|
10242
|
+
image_sync: {
|
|
10243
|
+
chain_name: 'stafihub',
|
|
10244
|
+
base_denom: 'ufis'
|
|
10245
|
+
},
|
|
9438
10246
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg'
|
|
9439
10247
|
}]
|
|
9440
10248
|
},
|
|
@@ -9476,6 +10284,10 @@ const assets = {
|
|
|
9476
10284
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg'
|
|
9477
10285
|
},
|
|
9478
10286
|
images: [{
|
|
10287
|
+
image_sync: {
|
|
10288
|
+
chain_name: 'stafihub',
|
|
10289
|
+
base_denom: 'uratom'
|
|
10290
|
+
},
|
|
9479
10291
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg'
|
|
9480
10292
|
}]
|
|
9481
10293
|
},
|
|
@@ -9511,6 +10323,10 @@ const assets = {
|
|
|
9511
10323
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg'
|
|
9512
10324
|
},
|
|
9513
10325
|
images: [{
|
|
10326
|
+
image_sync: {
|
|
10327
|
+
chain_name: 'stargaze',
|
|
10328
|
+
base_denom: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust'
|
|
10329
|
+
},
|
|
9514
10330
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png',
|
|
9515
10331
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg'
|
|
9516
10332
|
}]
|
|
@@ -9546,6 +10362,10 @@ const assets = {
|
|
|
9546
10362
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg'
|
|
9547
10363
|
},
|
|
9548
10364
|
images: [{
|
|
10365
|
+
image_sync: {
|
|
10366
|
+
chain_name: 'doravota',
|
|
10367
|
+
base_denom: 'peaka'
|
|
10368
|
+
},
|
|
9549
10369
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg'
|
|
9550
10370
|
}, {
|
|
9551
10371
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png'
|
|
@@ -9583,6 +10403,10 @@ const assets = {
|
|
|
9583
10403
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
|
|
9584
10404
|
},
|
|
9585
10405
|
images: [{
|
|
10406
|
+
image_sync: {
|
|
10407
|
+
chain_name: 'coreum',
|
|
10408
|
+
base_denom: 'ucore'
|
|
10409
|
+
},
|
|
9586
10410
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
|
|
9587
10411
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
|
|
9588
10412
|
}],
|
|
@@ -9707,6 +10531,10 @@ const assets = {
|
|
|
9707
10531
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg'
|
|
9708
10532
|
},
|
|
9709
10533
|
images: [{
|
|
10534
|
+
image_sync: {
|
|
10535
|
+
chain_name: 'fxcore',
|
|
10536
|
+
base_denom: 'FX'
|
|
10537
|
+
},
|
|
9710
10538
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png',
|
|
9711
10539
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg'
|
|
9712
10540
|
}]
|
|
@@ -9856,6 +10684,10 @@ const assets = {
|
|
|
9856
10684
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg'
|
|
9857
10685
|
},
|
|
9858
10686
|
images: [{
|
|
10687
|
+
image_sync: {
|
|
10688
|
+
chain_name: 'kujira',
|
|
10689
|
+
base_denom: 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk'
|
|
10690
|
+
},
|
|
9859
10691
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg'
|
|
9860
10692
|
}]
|
|
9861
10693
|
},
|
|
@@ -9891,6 +10723,10 @@ const assets = {
|
|
|
9891
10723
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg'
|
|
9892
10724
|
},
|
|
9893
10725
|
images: [{
|
|
10726
|
+
image_sync: {
|
|
10727
|
+
chain_name: 'stargaze',
|
|
10728
|
+
base_denom: 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH'
|
|
10729
|
+
},
|
|
9894
10730
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png',
|
|
9895
10731
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg'
|
|
9896
10732
|
}]
|
|
@@ -9952,6 +10788,10 @@ const assets = {
|
|
|
9952
10788
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg'
|
|
9953
10789
|
},
|
|
9954
10790
|
images: [{
|
|
10791
|
+
image_sync: {
|
|
10792
|
+
chain_name: 'neutron',
|
|
10793
|
+
base_denom: 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH'
|
|
10794
|
+
},
|
|
9955
10795
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg'
|
|
9956
10796
|
}]
|
|
9957
10797
|
},
|
|
@@ -10029,6 +10869,10 @@ const assets = {
|
|
|
10029
10869
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png'
|
|
10030
10870
|
},
|
|
10031
10871
|
images: [{
|
|
10872
|
+
image_sync: {
|
|
10873
|
+
chain_name: 'qwoyn',
|
|
10874
|
+
base_denom: 'uqwoyn'
|
|
10875
|
+
},
|
|
10032
10876
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png'
|
|
10033
10877
|
}],
|
|
10034
10878
|
keywords: ['gaming']
|
|
@@ -10062,6 +10906,10 @@ const assets = {
|
|
|
10062
10906
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg'
|
|
10063
10907
|
},
|
|
10064
10908
|
images: [{
|
|
10909
|
+
image_sync: {
|
|
10910
|
+
chain_name: 'bostrom',
|
|
10911
|
+
base_denom: 'hydrogen'
|
|
10912
|
+
},
|
|
10065
10913
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png',
|
|
10066
10914
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg'
|
|
10067
10915
|
}]
|
|
@@ -10095,6 +10943,10 @@ const assets = {
|
|
|
10095
10943
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg'
|
|
10096
10944
|
},
|
|
10097
10945
|
images: [{
|
|
10946
|
+
image_sync: {
|
|
10947
|
+
chain_name: 'bostrom',
|
|
10948
|
+
base_denom: 'tocyb'
|
|
10949
|
+
},
|
|
10098
10950
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png',
|
|
10099
10951
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg'
|
|
10100
10952
|
}]
|
|
@@ -10132,6 +10984,10 @@ const assets = {
|
|
|
10132
10984
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg'
|
|
10133
10985
|
},
|
|
10134
10986
|
images: [{
|
|
10987
|
+
image_sync: {
|
|
10988
|
+
chain_name: 'bostrom',
|
|
10989
|
+
base_denom: 'millivolt'
|
|
10990
|
+
},
|
|
10135
10991
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png',
|
|
10136
10992
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg'
|
|
10137
10993
|
}]
|
|
@@ -10169,6 +11025,10 @@ const assets = {
|
|
|
10169
11025
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg'
|
|
10170
11026
|
},
|
|
10171
11027
|
images: [{
|
|
11028
|
+
image_sync: {
|
|
11029
|
+
chain_name: 'bostrom',
|
|
11030
|
+
base_denom: 'milliampere'
|
|
11031
|
+
},
|
|
10172
11032
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png',
|
|
10173
11033
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg'
|
|
10174
11034
|
}]
|
|
@@ -10205,6 +11065,10 @@ const assets = {
|
|
|
10205
11065
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg'
|
|
10206
11066
|
},
|
|
10207
11067
|
images: [{
|
|
11068
|
+
image_sync: {
|
|
11069
|
+
chain_name: 'source',
|
|
11070
|
+
base_denom: 'usource'
|
|
11071
|
+
},
|
|
10208
11072
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png',
|
|
10209
11073
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg'
|
|
10210
11074
|
}]
|
|
@@ -10248,6 +11112,10 @@ const assets = {
|
|
|
10248
11112
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg'
|
|
10249
11113
|
},
|
|
10250
11114
|
images: [{
|
|
11115
|
+
image_sync: {
|
|
11116
|
+
chain_name: 'gateway',
|
|
11117
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy'
|
|
11118
|
+
},
|
|
10251
11119
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg'
|
|
10252
11120
|
}]
|
|
10253
11121
|
},
|
|
@@ -10357,6 +11225,10 @@ const assets = {
|
|
|
10357
11225
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png'
|
|
10358
11226
|
},
|
|
10359
11227
|
images: [{
|
|
11228
|
+
image_sync: {
|
|
11229
|
+
chain_name: 'chihuahua',
|
|
11230
|
+
base_denom: 'cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef'
|
|
11231
|
+
},
|
|
10360
11232
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png'
|
|
10361
11233
|
}],
|
|
10362
11234
|
keywords: ['osmosis_unstable']
|
|
@@ -10392,6 +11264,10 @@ const assets = {
|
|
|
10392
11264
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png'
|
|
10393
11265
|
},
|
|
10394
11266
|
images: [{
|
|
11267
|
+
image_sync: {
|
|
11268
|
+
chain_name: 'neutron',
|
|
11269
|
+
base_denom: 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt'
|
|
11270
|
+
},
|
|
10395
11271
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png'
|
|
10396
11272
|
}]
|
|
10397
11273
|
},
|
|
@@ -10458,6 +11334,10 @@ const assets = {
|
|
|
10458
11334
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg'
|
|
10459
11335
|
},
|
|
10460
11336
|
images: [{
|
|
11337
|
+
image_sync: {
|
|
11338
|
+
chain_name: 'migaloo',
|
|
11339
|
+
base_denom: 'factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash'
|
|
11340
|
+
},
|
|
10461
11341
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg'
|
|
10462
11342
|
}]
|
|
10463
11343
|
},
|
|
@@ -10493,6 +11373,10 @@ const assets = {
|
|
|
10493
11373
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg'
|
|
10494
11374
|
},
|
|
10495
11375
|
images: [{
|
|
11376
|
+
image_sync: {
|
|
11377
|
+
chain_name: 'migaloo',
|
|
11378
|
+
base_denom: 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac'
|
|
11379
|
+
},
|
|
10496
11380
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png',
|
|
10497
11381
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg'
|
|
10498
11382
|
}]
|
|
@@ -10528,6 +11412,10 @@ const assets = {
|
|
|
10528
11412
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png'
|
|
10529
11413
|
},
|
|
10530
11414
|
images: [{
|
|
11415
|
+
image_sync: {
|
|
11416
|
+
chain_name: 'migaloo',
|
|
11417
|
+
base_denom: 'factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy'
|
|
11418
|
+
},
|
|
10531
11419
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png'
|
|
10532
11420
|
}]
|
|
10533
11421
|
},
|
|
@@ -10563,6 +11451,10 @@ const assets = {
|
|
|
10563
11451
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg'
|
|
10564
11452
|
},
|
|
10565
11453
|
images: [{
|
|
11454
|
+
image_sync: {
|
|
11455
|
+
chain_name: 'haqq',
|
|
11456
|
+
base_denom: 'aISLM'
|
|
11457
|
+
},
|
|
10566
11458
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png',
|
|
10567
11459
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg'
|
|
10568
11460
|
}]
|
|
@@ -10733,6 +11625,10 @@ const assets = {
|
|
|
10733
11625
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png'
|
|
10734
11626
|
},
|
|
10735
11627
|
images: [{
|
|
11628
|
+
image_sync: {
|
|
11629
|
+
chain_name: 'injective',
|
|
11630
|
+
base_denom: 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja'
|
|
11631
|
+
},
|
|
10736
11632
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png'
|
|
10737
11633
|
}]
|
|
10738
11634
|
},
|
|
@@ -10769,6 +11665,10 @@ const assets = {
|
|
|
10769
11665
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png'
|
|
10770
11666
|
},
|
|
10771
11667
|
images: [{
|
|
11668
|
+
image_sync: {
|
|
11669
|
+
chain_name: 'juno',
|
|
11670
|
+
base_denom: 'cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy'
|
|
11671
|
+
},
|
|
10772
11672
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png'
|
|
10773
11673
|
}]
|
|
10774
11674
|
},
|
|
@@ -10803,6 +11703,10 @@ const assets = {
|
|
|
10803
11703
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png'
|
|
10804
11704
|
},
|
|
10805
11705
|
images: [{
|
|
11706
|
+
image_sync: {
|
|
11707
|
+
chain_name: 'nyx',
|
|
11708
|
+
base_denom: 'unyx'
|
|
11709
|
+
},
|
|
10806
11710
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png'
|
|
10807
11711
|
}],
|
|
10808
11712
|
keywords: ['osmosis_unlisted']
|
|
@@ -10872,6 +11776,10 @@ const assets = {
|
|
|
10872
11776
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png'
|
|
10873
11777
|
},
|
|
10874
11778
|
images: [{
|
|
11779
|
+
image_sync: {
|
|
11780
|
+
chain_name: 'chihuahua',
|
|
11781
|
+
base_denom: 'factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat'
|
|
11782
|
+
},
|
|
10875
11783
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png'
|
|
10876
11784
|
}]
|
|
10877
11785
|
},
|
|
@@ -10906,6 +11814,10 @@ const assets = {
|
|
|
10906
11814
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png'
|
|
10907
11815
|
},
|
|
10908
11816
|
images: [{
|
|
11817
|
+
image_sync: {
|
|
11818
|
+
chain_name: 'neutron',
|
|
11819
|
+
base_denom: 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus'
|
|
11820
|
+
},
|
|
10909
11821
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png'
|
|
10910
11822
|
}]
|
|
10911
11823
|
},
|
|
@@ -10942,6 +11854,10 @@ const assets = {
|
|
|
10942
11854
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png'
|
|
10943
11855
|
},
|
|
10944
11856
|
images: [{
|
|
11857
|
+
image_sync: {
|
|
11858
|
+
chain_name: 'juno',
|
|
11859
|
+
base_denom: 'cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps'
|
|
11860
|
+
},
|
|
10945
11861
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png'
|
|
10946
11862
|
}]
|
|
10947
11863
|
},
|
|
@@ -10976,6 +11892,10 @@ const assets = {
|
|
|
10976
11892
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png'
|
|
10977
11893
|
},
|
|
10978
11894
|
images: [{
|
|
11895
|
+
image_sync: {
|
|
11896
|
+
chain_name: 'chihuahua',
|
|
11897
|
+
base_denom: 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof'
|
|
11898
|
+
},
|
|
10979
11899
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png'
|
|
10980
11900
|
}]
|
|
10981
11901
|
},
|
|
@@ -11094,6 +12014,10 @@ const assets = {
|
|
|
11094
12014
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png'
|
|
11095
12015
|
},
|
|
11096
12016
|
images: [{
|
|
12017
|
+
image_sync: {
|
|
12018
|
+
chain_name: 'neutron',
|
|
12019
|
+
base_denom: 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad'
|
|
12020
|
+
},
|
|
11097
12021
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png'
|
|
11098
12022
|
}]
|
|
11099
12023
|
},
|
|
@@ -11130,6 +12054,10 @@ const assets = {
|
|
|
11130
12054
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png'
|
|
11131
12055
|
},
|
|
11132
12056
|
images: [{
|
|
12057
|
+
image_sync: {
|
|
12058
|
+
chain_name: 'juno',
|
|
12059
|
+
base_denom: 'cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k'
|
|
12060
|
+
},
|
|
11133
12061
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png'
|
|
11134
12062
|
}]
|
|
11135
12063
|
},
|
|
@@ -11207,6 +12135,10 @@ const assets = {
|
|
|
11207
12135
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg'
|
|
11208
12136
|
},
|
|
11209
12137
|
images: [{
|
|
12138
|
+
image_sync: {
|
|
12139
|
+
chain_name: 'neutron',
|
|
12140
|
+
base_denom: 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO'
|
|
12141
|
+
},
|
|
11210
12142
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg'
|
|
11211
12143
|
}]
|
|
11212
12144
|
},
|
|
@@ -11249,6 +12181,10 @@ const assets = {
|
|
|
11249
12181
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg'
|
|
11250
12182
|
},
|
|
11251
12183
|
images: [{
|
|
12184
|
+
image_sync: {
|
|
12185
|
+
chain_name: 'stride',
|
|
12186
|
+
base_denom: 'stadydx'
|
|
12187
|
+
},
|
|
11252
12188
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png',
|
|
11253
12189
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg'
|
|
11254
12190
|
}]
|
|
@@ -11292,6 +12228,10 @@ const assets = {
|
|
|
11292
12228
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg'
|
|
11293
12229
|
},
|
|
11294
12230
|
images: [{
|
|
12231
|
+
image_sync: {
|
|
12232
|
+
chain_name: 'stride',
|
|
12233
|
+
base_denom: 'stutia'
|
|
12234
|
+
},
|
|
11295
12235
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png',
|
|
11296
12236
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg'
|
|
11297
12237
|
}]
|
|
@@ -11335,6 +12275,10 @@ const assets = {
|
|
|
11335
12275
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg'
|
|
11336
12276
|
},
|
|
11337
12277
|
images: [{
|
|
12278
|
+
image_sync: {
|
|
12279
|
+
chain_name: 'stride',
|
|
12280
|
+
base_denom: 'stusaga'
|
|
12281
|
+
},
|
|
11338
12282
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png',
|
|
11339
12283
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg'
|
|
11340
12284
|
}]
|
|
@@ -11377,6 +12321,10 @@ const assets = {
|
|
|
11377
12321
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg'
|
|
11378
12322
|
},
|
|
11379
12323
|
images: [{
|
|
12324
|
+
image_sync: {
|
|
12325
|
+
chain_name: 'stride',
|
|
12326
|
+
base_denom: 'stinj'
|
|
12327
|
+
},
|
|
11380
12328
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png',
|
|
11381
12329
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg'
|
|
11382
12330
|
}]
|
|
@@ -11471,6 +12419,10 @@ const assets = {
|
|
|
11471
12419
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg'
|
|
11472
12420
|
},
|
|
11473
12421
|
images: [{
|
|
12422
|
+
image_sync: {
|
|
12423
|
+
chain_name: 'dymension',
|
|
12424
|
+
base_denom: 'adym'
|
|
12425
|
+
},
|
|
11474
12426
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png',
|
|
11475
12427
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg'
|
|
11476
12428
|
}]
|
|
@@ -11531,6 +12483,10 @@ const assets = {
|
|
|
11531
12483
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg'
|
|
11532
12484
|
},
|
|
11533
12485
|
images: [{
|
|
12486
|
+
image_sync: {
|
|
12487
|
+
chain_name: 'terra2',
|
|
12488
|
+
base_denom: 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26'
|
|
12489
|
+
},
|
|
11534
12490
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg'
|
|
11535
12491
|
}]
|
|
11536
12492
|
},
|
|
@@ -11656,6 +12612,10 @@ const assets = {
|
|
|
11656
12612
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg'
|
|
11657
12613
|
},
|
|
11658
12614
|
images: [{
|
|
12615
|
+
image_sync: {
|
|
12616
|
+
chain_name: 'humans',
|
|
12617
|
+
base_denom: 'aheart'
|
|
12618
|
+
},
|
|
11659
12619
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png',
|
|
11660
12620
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg',
|
|
11661
12621
|
theme: {
|
|
@@ -11695,6 +12655,10 @@ const assets = {
|
|
|
11695
12655
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.svg'
|
|
11696
12656
|
},
|
|
11697
12657
|
images: [{
|
|
12658
|
+
image_sync: {
|
|
12659
|
+
chain_name: 'evmos',
|
|
12660
|
+
base_denom: 'erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280'
|
|
12661
|
+
},
|
|
11698
12662
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png',
|
|
11699
12663
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.svg'
|
|
11700
12664
|
}]
|
|
@@ -11731,6 +12695,10 @@ const assets = {
|
|
|
11731
12695
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg'
|
|
11732
12696
|
},
|
|
11733
12697
|
images: [{
|
|
12698
|
+
image_sync: {
|
|
12699
|
+
chain_name: 'scorum',
|
|
12700
|
+
base_denom: 'nscr'
|
|
12701
|
+
},
|
|
11734
12702
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png',
|
|
11735
12703
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg'
|
|
11736
12704
|
}]
|
|
@@ -11766,6 +12734,10 @@ const assets = {
|
|
|
11766
12734
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png'
|
|
11767
12735
|
},
|
|
11768
12736
|
images: [{
|
|
12737
|
+
image_sync: {
|
|
12738
|
+
chain_name: 'chain4energy',
|
|
12739
|
+
base_denom: 'uc4e'
|
|
12740
|
+
},
|
|
11769
12741
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png'
|
|
11770
12742
|
}],
|
|
11771
12743
|
keywords: ['osmosis_unlisted']
|
|
@@ -11803,6 +12775,10 @@ const assets = {
|
|
|
11803
12775
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png'
|
|
11804
12776
|
},
|
|
11805
12777
|
images: [{
|
|
12778
|
+
image_sync: {
|
|
12779
|
+
chain_name: 'terra2',
|
|
12780
|
+
base_denom: 'cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq'
|
|
12781
|
+
},
|
|
11806
12782
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png'
|
|
11807
12783
|
}]
|
|
11808
12784
|
},
|
|
@@ -11863,6 +12839,10 @@ const assets = {
|
|
|
11863
12839
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png'
|
|
11864
12840
|
},
|
|
11865
12841
|
images: [{
|
|
12842
|
+
image_sync: {
|
|
12843
|
+
chain_name: 'source',
|
|
12844
|
+
base_denom: 'ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A'
|
|
12845
|
+
},
|
|
11866
12846
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png'
|
|
11867
12847
|
}]
|
|
11868
12848
|
},
|
|
@@ -11897,6 +12877,10 @@ const assets = {
|
|
|
11897
12877
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png'
|
|
11898
12878
|
},
|
|
11899
12879
|
images: [{
|
|
12880
|
+
image_sync: {
|
|
12881
|
+
chain_name: 'pylons',
|
|
12882
|
+
base_denom: 'ubedrock'
|
|
12883
|
+
},
|
|
11900
12884
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png'
|
|
11901
12885
|
}]
|
|
11902
12886
|
},
|
|
@@ -11943,6 +12927,10 @@ const assets = {
|
|
|
11943
12927
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png'
|
|
11944
12928
|
},
|
|
11945
12929
|
images: [{
|
|
12930
|
+
image_sync: {
|
|
12931
|
+
chain_name: 'gateway',
|
|
12932
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst'
|
|
12933
|
+
},
|
|
11946
12934
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png'
|
|
11947
12935
|
}]
|
|
11948
12936
|
},
|
|
@@ -11985,6 +12973,10 @@ const assets = {
|
|
|
11985
12973
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg'
|
|
11986
12974
|
},
|
|
11987
12975
|
images: [{
|
|
12976
|
+
image_sync: {
|
|
12977
|
+
chain_name: 'aioz',
|
|
12978
|
+
base_denom: 'attoaioz'
|
|
12979
|
+
},
|
|
11988
12980
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png',
|
|
11989
12981
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg'
|
|
11990
12982
|
}]
|
|
@@ -12028,6 +13020,10 @@ const assets = {
|
|
|
12028
13020
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg'
|
|
12029
13021
|
},
|
|
12030
13022
|
images: [{
|
|
13023
|
+
image_sync: {
|
|
13024
|
+
chain_name: 'stride',
|
|
13025
|
+
base_denom: 'stadym'
|
|
13026
|
+
},
|
|
12031
13027
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png',
|
|
12032
13028
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg'
|
|
12033
13029
|
}]
|
|
@@ -12063,6 +13059,10 @@ const assets = {
|
|
|
12063
13059
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png'
|
|
12064
13060
|
},
|
|
12065
13061
|
images: [{
|
|
13062
|
+
image_sync: {
|
|
13063
|
+
chain_name: 'odin',
|
|
13064
|
+
base_denom: 'udoki'
|
|
13065
|
+
},
|
|
12066
13066
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png'
|
|
12067
13067
|
}]
|
|
12068
13068
|
},
|
|
@@ -12124,6 +13124,10 @@ const assets = {
|
|
|
12124
13124
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png'
|
|
12125
13125
|
},
|
|
12126
13126
|
images: [{
|
|
13127
|
+
image_sync: {
|
|
13128
|
+
chain_name: 'migaloo',
|
|
13129
|
+
base_denom: 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark'
|
|
13130
|
+
},
|
|
12127
13131
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png'
|
|
12128
13132
|
}]
|
|
12129
13133
|
},
|
|
@@ -12209,6 +13213,10 @@ const assets = {
|
|
|
12209
13213
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png'
|
|
12210
13214
|
},
|
|
12211
13215
|
images: [{
|
|
13216
|
+
image_sync: {
|
|
13217
|
+
chain_name: 'sei',
|
|
13218
|
+
base_denom: 'cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed'
|
|
13219
|
+
},
|
|
12212
13220
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png'
|
|
12213
13221
|
}],
|
|
12214
13222
|
keywords: ['osmosis_unlisted']
|
|
@@ -12245,6 +13253,10 @@ const assets = {
|
|
|
12245
13253
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
|
|
12246
13254
|
},
|
|
12247
13255
|
images: [{
|
|
13256
|
+
image_sync: {
|
|
13257
|
+
chain_name: 'nibiru',
|
|
13258
|
+
base_denom: 'unibi'
|
|
13259
|
+
},
|
|
12248
13260
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png',
|
|
12249
13261
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg'
|
|
12250
13262
|
}]
|
|
@@ -12326,6 +13338,10 @@ const assets = {
|
|
|
12326
13338
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg'
|
|
12327
13339
|
},
|
|
12328
13340
|
images: [{
|
|
13341
|
+
image_sync: {
|
|
13342
|
+
chain_name: 'conscious',
|
|
13343
|
+
base_denom: 'acvnt'
|
|
13344
|
+
},
|
|
12329
13345
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png',
|
|
12330
13346
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg'
|
|
12331
13347
|
}],
|
|
@@ -12389,6 +13405,10 @@ const assets = {
|
|
|
12389
13405
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg'
|
|
12390
13406
|
},
|
|
12391
13407
|
images: [{
|
|
13408
|
+
image_sync: {
|
|
13409
|
+
chain_name: 'terra2',
|
|
13410
|
+
base_denom: 'cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3'
|
|
13411
|
+
},
|
|
12392
13412
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png',
|
|
12393
13413
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg'
|
|
12394
13414
|
}],
|
|
@@ -12544,6 +13564,10 @@ const assets = {
|
|
|
12544
13564
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg'
|
|
12545
13565
|
},
|
|
12546
13566
|
images: [{
|
|
13567
|
+
image_sync: {
|
|
13568
|
+
chain_name: 'composable',
|
|
13569
|
+
base_denom: 'ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8'
|
|
13570
|
+
},
|
|
12547
13571
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg'
|
|
12548
13572
|
}]
|
|
12549
13573
|
},
|
|
@@ -12585,6 +13609,10 @@ const assets = {
|
|
|
12585
13609
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png'
|
|
12586
13610
|
},
|
|
12587
13611
|
images: [{
|
|
13612
|
+
image_sync: {
|
|
13613
|
+
chain_name: 'gateway',
|
|
13614
|
+
base_denom: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos'
|
|
13615
|
+
},
|
|
12588
13616
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png'
|
|
12589
13617
|
}]
|
|
12590
13618
|
},
|
|
@@ -12620,6 +13648,10 @@ const assets = {
|
|
|
12620
13648
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg'
|
|
12621
13649
|
},
|
|
12622
13650
|
images: [{
|
|
13651
|
+
image_sync: {
|
|
13652
|
+
chain_name: 'dhealth',
|
|
13653
|
+
base_denom: 'udhp'
|
|
13654
|
+
},
|
|
12623
13655
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png',
|
|
12624
13656
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg'
|
|
12625
13657
|
}],
|
|
@@ -12657,6 +13689,10 @@ const assets = {
|
|
|
12657
13689
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.svg'
|
|
12658
13690
|
},
|
|
12659
13691
|
images: [{
|
|
13692
|
+
image_sync: {
|
|
13693
|
+
chain_name: 'furya',
|
|
13694
|
+
base_denom: 'ufury'
|
|
13695
|
+
},
|
|
12660
13696
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.png',
|
|
12661
13697
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/ufury.svg',
|
|
12662
13698
|
theme: {
|
|
@@ -12701,6 +13737,10 @@ const assets = {
|
|
|
12701
13737
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg'
|
|
12702
13738
|
},
|
|
12703
13739
|
images: [{
|
|
13740
|
+
image_sync: {
|
|
13741
|
+
chain_name: 'saga',
|
|
13742
|
+
base_denom: 'usaga'
|
|
13743
|
+
},
|
|
12704
13744
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
|
|
12705
13745
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg',
|
|
12706
13746
|
theme: {
|
|
@@ -12747,6 +13787,10 @@ const assets = {
|
|
|
12747
13787
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png'
|
|
12748
13788
|
},
|
|
12749
13789
|
images: [{
|
|
13790
|
+
image_sync: {
|
|
13791
|
+
chain_name: 'neutron',
|
|
13792
|
+
base_denom: 'factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG'
|
|
13793
|
+
},
|
|
12750
13794
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png'
|
|
12751
13795
|
}]
|
|
12752
13796
|
},
|
|
@@ -12782,6 +13826,10 @@ const assets = {
|
|
|
12782
13826
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg'
|
|
12783
13827
|
},
|
|
12784
13828
|
images: [{
|
|
13829
|
+
image_sync: {
|
|
13830
|
+
chain_name: 'shido',
|
|
13831
|
+
base_denom: 'shido'
|
|
13832
|
+
},
|
|
12785
13833
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png',
|
|
12786
13834
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg'
|
|
12787
13835
|
}],
|
|
@@ -12819,6 +13867,10 @@ const assets = {
|
|
|
12819
13867
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg'
|
|
12820
13868
|
},
|
|
12821
13869
|
images: [{
|
|
13870
|
+
image_sync: {
|
|
13871
|
+
chain_name: 'cifer',
|
|
13872
|
+
base_denom: 'ucif'
|
|
13873
|
+
},
|
|
12822
13874
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png',
|
|
12823
13875
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg'
|
|
12824
13876
|
}],
|
|
@@ -12855,6 +13907,10 @@ const assets = {
|
|
|
12855
13907
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png'
|
|
12856
13908
|
},
|
|
12857
13909
|
images: [{
|
|
13910
|
+
image_sync: {
|
|
13911
|
+
chain_name: 'injective',
|
|
13912
|
+
base_denom: 'factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava'
|
|
13913
|
+
},
|
|
12858
13914
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png'
|
|
12859
13915
|
}]
|
|
12860
13916
|
},
|
|
@@ -12962,6 +14018,10 @@ const assets = {
|
|
|
12962
14018
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg'
|
|
12963
14019
|
},
|
|
12964
14020
|
images: [{
|
|
14021
|
+
image_sync: {
|
|
14022
|
+
chain_name: 'neutron',
|
|
14023
|
+
base_denom: 'factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO'
|
|
14024
|
+
},
|
|
12965
14025
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg'
|
|
12966
14026
|
}],
|
|
12967
14027
|
keywords: ['osmosis_unlisted']
|
|
@@ -13098,6 +14158,10 @@ const assets = {
|
|
|
13098
14158
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg'
|
|
13099
14159
|
},
|
|
13100
14160
|
images: [{
|
|
14161
|
+
image_sync: {
|
|
14162
|
+
chain_name: 'kujira',
|
|
14163
|
+
base_denom: 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk'
|
|
14164
|
+
},
|
|
13101
14165
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg'
|
|
13102
14166
|
}]
|
|
13103
14167
|
},
|
|
@@ -13424,6 +14488,10 @@ const assets = {
|
|
|
13424
14488
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png'
|
|
13425
14489
|
},
|
|
13426
14490
|
images: [{
|
|
14491
|
+
image_sync: {
|
|
14492
|
+
chain_name: 'migaloo',
|
|
14493
|
+
base_denom: 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac'
|
|
14494
|
+
},
|
|
13427
14495
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png'
|
|
13428
14496
|
}]
|
|
13429
14497
|
},
|
|
@@ -13505,6 +14573,10 @@ const assets = {
|
|
|
13505
14573
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg'
|
|
13506
14574
|
},
|
|
13507
14575
|
images: [{
|
|
14576
|
+
image_sync: {
|
|
14577
|
+
chain_name: 'quicksilver',
|
|
14578
|
+
base_denom: 'uqjuno'
|
|
14579
|
+
},
|
|
13508
14580
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png',
|
|
13509
14581
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg'
|
|
13510
14582
|
}]
|
|
@@ -13549,6 +14621,10 @@ const assets = {
|
|
|
13549
14621
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg'
|
|
13550
14622
|
},
|
|
13551
14623
|
images: [{
|
|
14624
|
+
image_sync: {
|
|
14625
|
+
chain_name: 'quicksilver',
|
|
14626
|
+
base_denom: 'uqsaga'
|
|
14627
|
+
},
|
|
13552
14628
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png',
|
|
13553
14629
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg'
|
|
13554
14630
|
}]
|
|
@@ -13593,6 +14669,10 @@ const assets = {
|
|
|
13593
14669
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg'
|
|
13594
14670
|
},
|
|
13595
14671
|
images: [{
|
|
14672
|
+
image_sync: {
|
|
14673
|
+
chain_name: 'quicksilver',
|
|
14674
|
+
base_denom: 'uqbld'
|
|
14675
|
+
},
|
|
13596
14676
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png',
|
|
13597
14677
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg'
|
|
13598
14678
|
}]
|
|
@@ -13637,6 +14717,10 @@ const assets = {
|
|
|
13637
14717
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg'
|
|
13638
14718
|
},
|
|
13639
14719
|
images: [{
|
|
14720
|
+
image_sync: {
|
|
14721
|
+
chain_name: 'quicksilver',
|
|
14722
|
+
base_denom: 'aqdydx'
|
|
14723
|
+
},
|
|
13640
14724
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png',
|
|
13641
14725
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg'
|
|
13642
14726
|
}]
|
|
@@ -13706,6 +14790,28 @@ const assets = {
|
|
|
13706
14790
|
images: [{
|
|
13707
14791
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WIHA.png'
|
|
13708
14792
|
}]
|
|
14793
|
+
},
|
|
14794
|
+
{
|
|
14795
|
+
description: 'For th',
|
|
14796
|
+
denom_units: [{
|
|
14797
|
+
denom: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse',
|
|
14798
|
+
exponent: 0
|
|
14799
|
+
}, {
|
|
14800
|
+
denom: 'CRAZYHORSE',
|
|
14801
|
+
exponent: 6
|
|
14802
|
+
}],
|
|
14803
|
+
type_asset: 'sdk.coin',
|
|
14804
|
+
address: 'osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8',
|
|
14805
|
+
base: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse',
|
|
14806
|
+
name: 'HorseShoeBar',
|
|
14807
|
+
display: 'CRAZYHORSE',
|
|
14808
|
+
symbol: 'CRAZYHORSE',
|
|
14809
|
+
logo_URIs: {
|
|
14810
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CrazyHorse.png'
|
|
14811
|
+
},
|
|
14812
|
+
images: [{
|
|
14813
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CrazyHorse.png'
|
|
14814
|
+
}]
|
|
13709
14815
|
}
|
|
13710
14816
|
]
|
|
13711
14817
|
};
|