chain-registry 0.6.2 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/main/assets.js +432 -25
- package/main/chains.js +1458 -127
- package/module/assets.js +432 -25
- package/module/chains.js +1458 -127
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.8.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.7.0...chain-registry@0.8.0) (2022-08-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.7.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.6.3...chain-registry@0.7.0) (2022-08-20)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package chain-registry
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.6.3](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.6.2...chain-registry@0.6.3) (2022-08-16)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package chain-registry
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
## [0.6.2](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.6.1...chain-registry@0.6.2) (2022-08-14)
|
|
7
31
|
|
|
8
32
|
**Note:** Version bump only for package chain-registry
|
package/main/assets.js
CHANGED
|
@@ -769,7 +769,7 @@ var assets = [{
|
|
|
769
769
|
$schema: '../assetlist.schema.json',
|
|
770
770
|
chain_name: 'agoric',
|
|
771
771
|
assets: [{
|
|
772
|
-
description: 'BLD is the token used to secure the Agoric chain through staking and to backstop
|
|
772
|
+
description: 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.',
|
|
773
773
|
denom_units: [{
|
|
774
774
|
denom: 'ubld',
|
|
775
775
|
exponent: 0
|
|
@@ -785,18 +785,18 @@ var assets = [{
|
|
|
785
785
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png'
|
|
786
786
|
}
|
|
787
787
|
}, {
|
|
788
|
-
description: '
|
|
788
|
+
description: 'IST is the stable token used by the Agoric chain for execution fees and commerce.',
|
|
789
789
|
denom_units: [{
|
|
790
|
-
denom: '
|
|
790
|
+
denom: 'uist',
|
|
791
791
|
exponent: 0
|
|
792
792
|
}, {
|
|
793
|
-
denom: '
|
|
793
|
+
denom: 'ist',
|
|
794
794
|
exponent: 6
|
|
795
795
|
}],
|
|
796
|
-
base: '
|
|
796
|
+
base: 'uist',
|
|
797
797
|
name: 'Agoric Stable Token',
|
|
798
|
-
display: '
|
|
799
|
-
symbol: '
|
|
798
|
+
display: 'ist',
|
|
799
|
+
symbol: 'IST',
|
|
800
800
|
logo_URIs: {
|
|
801
801
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/run.png'
|
|
802
802
|
}
|
|
@@ -1248,6 +1248,29 @@ var assets = [{
|
|
|
1248
1248
|
},
|
|
1249
1249
|
coingecko_id: 'band-protocol'
|
|
1250
1250
|
}]
|
|
1251
|
+
}, {
|
|
1252
|
+
$schema: '../assetlist.schema.json',
|
|
1253
|
+
chain_name: 'beezee',
|
|
1254
|
+
assets: [{
|
|
1255
|
+
description: 'BeeZee native blockchain',
|
|
1256
|
+
denom_units: [{
|
|
1257
|
+
denom: 'ubze',
|
|
1258
|
+
exponent: 0,
|
|
1259
|
+
aliases: []
|
|
1260
|
+
}, {
|
|
1261
|
+
denom: 'bze',
|
|
1262
|
+
exponent: 6,
|
|
1263
|
+
aliases: []
|
|
1264
|
+
}],
|
|
1265
|
+
base: 'ubze',
|
|
1266
|
+
name: 'BeeZee',
|
|
1267
|
+
display: 'bze',
|
|
1268
|
+
symbol: 'BZE',
|
|
1269
|
+
logo_URIs: {
|
|
1270
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png'
|
|
1271
|
+
},
|
|
1272
|
+
coingecko_id: 'bzedge'
|
|
1273
|
+
}]
|
|
1251
1274
|
}, {
|
|
1252
1275
|
$schema: '../assetlist.schema.json',
|
|
1253
1276
|
chain_name: 'bitcanna',
|
|
@@ -1535,6 +1558,27 @@ var assets = [{
|
|
|
1535
1558
|
},
|
|
1536
1559
|
coingecko_id: 'bostrom'
|
|
1537
1560
|
}]
|
|
1561
|
+
}, {
|
|
1562
|
+
$schema: '../assetlist.schema.json',
|
|
1563
|
+
chain_name: 'canto',
|
|
1564
|
+
assets: [{
|
|
1565
|
+
description: 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi',
|
|
1566
|
+
denom_units: [{
|
|
1567
|
+
denom: 'acanto',
|
|
1568
|
+
exponent: 0
|
|
1569
|
+
}, {
|
|
1570
|
+
denom: 'canto',
|
|
1571
|
+
exponent: 18
|
|
1572
|
+
}],
|
|
1573
|
+
base: 'acanto',
|
|
1574
|
+
name: 'Canto',
|
|
1575
|
+
display: 'canto',
|
|
1576
|
+
symbol: 'CANTO',
|
|
1577
|
+
logo_URIs: {
|
|
1578
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png'
|
|
1579
|
+
},
|
|
1580
|
+
coingecko_id: 'canto'
|
|
1581
|
+
}]
|
|
1538
1582
|
}, {
|
|
1539
1583
|
$schema: '../assetlist.schema.json',
|
|
1540
1584
|
chain_name: 'carbon',
|
|
@@ -1932,7 +1976,7 @@ var assets = [{
|
|
|
1932
1976
|
denom: 'eeur',
|
|
1933
1977
|
exponent: 0
|
|
1934
1978
|
}, {
|
|
1935
|
-
denom: '
|
|
1979
|
+
denom: 'eur',
|
|
1936
1980
|
exponent: 6
|
|
1937
1981
|
}],
|
|
1938
1982
|
base: 'eeur',
|
|
@@ -2472,21 +2516,21 @@ var assets = [{
|
|
|
2472
2516
|
}, {
|
|
2473
2517
|
description: 'The native token cw20 for BlackHole on Juno Chain',
|
|
2474
2518
|
type_asset: 'cw20',
|
|
2475
|
-
address: '
|
|
2519
|
+
address: 'juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m',
|
|
2476
2520
|
denom_units: [{
|
|
2477
|
-
denom: 'cw20:
|
|
2521
|
+
denom: 'cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m',
|
|
2478
2522
|
exponent: 0
|
|
2479
2523
|
}, {
|
|
2480
|
-
denom: '
|
|
2481
|
-
exponent:
|
|
2524
|
+
denom: 'hole',
|
|
2525
|
+
exponent: 6
|
|
2482
2526
|
}],
|
|
2483
|
-
base: 'cw20:
|
|
2484
|
-
name: '
|
|
2485
|
-
display: '
|
|
2486
|
-
symbol: '
|
|
2527
|
+
base: 'cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m',
|
|
2528
|
+
name: 'BlackHole',
|
|
2529
|
+
display: 'hole',
|
|
2530
|
+
symbol: 'HOLE',
|
|
2487
2531
|
logo_URIs: {
|
|
2488
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/
|
|
2489
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/
|
|
2532
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.png',
|
|
2533
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.svg'
|
|
2490
2534
|
}
|
|
2491
2535
|
}, {
|
|
2492
2536
|
description: 'The native token cw20 for Neta on Juno Chain',
|
|
@@ -2546,7 +2590,7 @@ var assets = [{
|
|
|
2546
2590
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png',
|
|
2547
2591
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg'
|
|
2548
2592
|
},
|
|
2549
|
-
coingecko_id: '
|
|
2593
|
+
coingecko_id: 'kava-lend'
|
|
2550
2594
|
}, {
|
|
2551
2595
|
description: 'Governance token of Kava Swap Protocol',
|
|
2552
2596
|
denom_units: [{
|
|
@@ -2565,6 +2609,23 @@ var assets = [{
|
|
|
2565
2609
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg'
|
|
2566
2610
|
},
|
|
2567
2611
|
coingecko_id: 'kava-swap'
|
|
2612
|
+
}, {
|
|
2613
|
+
description: 'The native stablecoin of Kava',
|
|
2614
|
+
denom_units: [{
|
|
2615
|
+
denom: 'usdx',
|
|
2616
|
+
exponent: 0
|
|
2617
|
+
}, {
|
|
2618
|
+
denom: 'USDX',
|
|
2619
|
+
exponent: 6
|
|
2620
|
+
}],
|
|
2621
|
+
base: 'usdx',
|
|
2622
|
+
name: 'USDX',
|
|
2623
|
+
display: 'USDX',
|
|
2624
|
+
symbol: 'USDX',
|
|
2625
|
+
logo_URIs: {
|
|
2626
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png'
|
|
2627
|
+
},
|
|
2628
|
+
coingecko_id: 'usdx'
|
|
2568
2629
|
}]
|
|
2569
2630
|
}, {
|
|
2570
2631
|
$schema: '../assetlist.schema.json',
|
|
@@ -2629,6 +2690,27 @@ var assets = [{
|
|
|
2629
2690
|
},
|
|
2630
2691
|
coingecko_id: 'darcmatter-coin'
|
|
2631
2692
|
}]
|
|
2693
|
+
}, {
|
|
2694
|
+
$schema: '../assetlist.schema.json',
|
|
2695
|
+
chain_name: 'kujira',
|
|
2696
|
+
assets: [{
|
|
2697
|
+
description: 'The native staking and governance token of the Kujira chain.',
|
|
2698
|
+
denom_units: [{
|
|
2699
|
+
denom: 'ukuji',
|
|
2700
|
+
exponent: 0
|
|
2701
|
+
}, {
|
|
2702
|
+
denom: 'kuji',
|
|
2703
|
+
exponent: 6
|
|
2704
|
+
}],
|
|
2705
|
+
base: 'ukuji',
|
|
2706
|
+
name: 'Kuji',
|
|
2707
|
+
display: 'kuji',
|
|
2708
|
+
symbol: 'KUJI',
|
|
2709
|
+
coingecko_id: 'kujira',
|
|
2710
|
+
logo_URIs: {
|
|
2711
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png'
|
|
2712
|
+
}
|
|
2713
|
+
}]
|
|
2632
2714
|
}, {
|
|
2633
2715
|
$schema: '../assetlist.schema.json',
|
|
2634
2716
|
chain_name: 'likecoin',
|
|
@@ -2865,19 +2947,19 @@ var assets = [{
|
|
|
2865
2947
|
assets: [{
|
|
2866
2948
|
description: 'The native token of Oraichain',
|
|
2867
2949
|
denom_units: [{
|
|
2868
|
-
denom: '
|
|
2950
|
+
denom: 'orai',
|
|
2869
2951
|
exponent: 0
|
|
2870
2952
|
}, {
|
|
2871
|
-
denom: '
|
|
2953
|
+
denom: 'ORAI',
|
|
2872
2954
|
exponent: 6
|
|
2873
2955
|
}],
|
|
2874
|
-
base: '
|
|
2956
|
+
base: 'orai',
|
|
2875
2957
|
name: 'Oraichain',
|
|
2876
|
-
display: '
|
|
2958
|
+
display: 'ORAI',
|
|
2877
2959
|
symbol: 'ORAI',
|
|
2878
2960
|
logo_URIs: {
|
|
2879
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png',
|
|
2880
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg'
|
|
2961
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png',
|
|
2962
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg'
|
|
2881
2963
|
},
|
|
2882
2964
|
coingecko_id: 'oraichain-token'
|
|
2883
2965
|
}]
|
|
@@ -2945,6 +3027,26 @@ var assets = [{
|
|
|
2945
3027
|
},
|
|
2946
3028
|
coingecko_id: 'medibloc'
|
|
2947
3029
|
}]
|
|
3030
|
+
}, {
|
|
3031
|
+
$schema: '../assetlist.schema.json',
|
|
3032
|
+
chain_name: 'passage',
|
|
3033
|
+
assets: [{
|
|
3034
|
+
description: 'The native staking and governance token of the Passage chain.',
|
|
3035
|
+
denom_units: [{
|
|
3036
|
+
denom: 'upasg',
|
|
3037
|
+
exponent: 0
|
|
3038
|
+
}, {
|
|
3039
|
+
denom: 'pasg',
|
|
3040
|
+
exponent: 6
|
|
3041
|
+
}],
|
|
3042
|
+
base: 'upasg',
|
|
3043
|
+
name: 'Passage',
|
|
3044
|
+
display: 'pasg',
|
|
3045
|
+
symbol: 'PASG',
|
|
3046
|
+
logo_URIs: {
|
|
3047
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png'
|
|
3048
|
+
}
|
|
3049
|
+
}]
|
|
2948
3050
|
}, {
|
|
2949
3051
|
$schema: '../assetlist.schema.json',
|
|
2950
3052
|
chain_name: 'persistence',
|
|
@@ -6905,6 +7007,311 @@ var assets = [{
|
|
|
6905
7007
|
},
|
|
6906
7008
|
coingecko_id: 'terra-luna-2'
|
|
6907
7009
|
}]
|
|
7010
|
+
}, {
|
|
7011
|
+
$schema: '../../assetlist.schema.json',
|
|
7012
|
+
chain_name: 'atlantic',
|
|
7013
|
+
assets: [{
|
|
7014
|
+
description: 'The native staking and governance token of the Atlantic testnet version of Sei.',
|
|
7015
|
+
denom_units: [{
|
|
7016
|
+
denom: 'usei',
|
|
7017
|
+
exponent: 0
|
|
7018
|
+
}, {
|
|
7019
|
+
denom: 'sei',
|
|
7020
|
+
exponent: 6
|
|
7021
|
+
}],
|
|
7022
|
+
base: 'usei',
|
|
7023
|
+
name: 'Sei',
|
|
7024
|
+
display: 'sei',
|
|
7025
|
+
symbol: 'SEI',
|
|
7026
|
+
logo_URIs: {
|
|
7027
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/atlantic/images/sei.png'
|
|
7028
|
+
}
|
|
7029
|
+
}]
|
|
7030
|
+
}, {
|
|
7031
|
+
$schema: '../../assetlist.schema.json',
|
|
7032
|
+
chain_name: 'bitcannadev',
|
|
7033
|
+
assets: [{
|
|
7034
|
+
description: 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.',
|
|
7035
|
+
denom_units: [{
|
|
7036
|
+
denom: 'ubcna',
|
|
7037
|
+
exponent: 0
|
|
7038
|
+
}, {
|
|
7039
|
+
denom: 'bcna',
|
|
7040
|
+
exponent: 6
|
|
7041
|
+
}],
|
|
7042
|
+
base: 'ubcna',
|
|
7043
|
+
display: 'bcna',
|
|
7044
|
+
name: 'BitCanna',
|
|
7045
|
+
symbol: 'BCNA',
|
|
7046
|
+
logo_URIs: {
|
|
7047
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadev/images/bcna.png',
|
|
7048
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/bitcannadev/images/bcna.svg'
|
|
7049
|
+
},
|
|
7050
|
+
coingecko_id: 'bitcanna'
|
|
7051
|
+
}]
|
|
7052
|
+
}, {
|
|
7053
|
+
$schema: '../../assetlist.schema.json',
|
|
7054
|
+
chain_name: 'cheqd',
|
|
7055
|
+
assets: [{
|
|
7056
|
+
description: 'Native token for the cheqd network',
|
|
7057
|
+
denom_units: [{
|
|
7058
|
+
denom: 'ncheq',
|
|
7059
|
+
exponent: 0
|
|
7060
|
+
}, {
|
|
7061
|
+
denom: 'cheq',
|
|
7062
|
+
exponent: 9
|
|
7063
|
+
}],
|
|
7064
|
+
base: 'ncheq',
|
|
7065
|
+
display: 'cheq',
|
|
7066
|
+
name: 'cheqd',
|
|
7067
|
+
symbol: 'CHEQ',
|
|
7068
|
+
logo_URIs: {
|
|
7069
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png',
|
|
7070
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg'
|
|
7071
|
+
},
|
|
7072
|
+
coingecko_id: 'cheqd-network'
|
|
7073
|
+
}]
|
|
7074
|
+
}, {
|
|
7075
|
+
$schema: '../../assetlist.schema.json',
|
|
7076
|
+
chain_name: 'harpoon',
|
|
7077
|
+
assets: [{
|
|
7078
|
+
description: 'The native staking and governance token of the Harpoon testnet version of Kujira.',
|
|
7079
|
+
denom_units: [{
|
|
7080
|
+
denom: 'ukuji',
|
|
7081
|
+
exponent: 0
|
|
7082
|
+
}, {
|
|
7083
|
+
denom: 'kuji',
|
|
7084
|
+
exponent: 6
|
|
7085
|
+
}],
|
|
7086
|
+
base: 'ukuji',
|
|
7087
|
+
name: 'Kuji',
|
|
7088
|
+
display: 'kuji',
|
|
7089
|
+
symbol: 'KUJI',
|
|
7090
|
+
logo_URIs: {
|
|
7091
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/harpoon/images/kuji.png'
|
|
7092
|
+
}
|
|
7093
|
+
}]
|
|
7094
|
+
}, {
|
|
7095
|
+
$schema: '../../assetlist.schema.json',
|
|
7096
|
+
chain_id: 'imversed-test-1',
|
|
7097
|
+
assets: [{
|
|
7098
|
+
description: 'The native staking and governance token of the Imversed testnet.',
|
|
7099
|
+
denom_units: [{
|
|
7100
|
+
denom: 'nimv',
|
|
7101
|
+
exponent: 0,
|
|
7102
|
+
aliases: []
|
|
7103
|
+
}, {
|
|
7104
|
+
denom: 'imv',
|
|
7105
|
+
exponent: 6,
|
|
7106
|
+
aliases: []
|
|
7107
|
+
}],
|
|
7108
|
+
base: 'nimv',
|
|
7109
|
+
name: 'Imv',
|
|
7110
|
+
display: 'imv',
|
|
7111
|
+
symbol: 'IMV',
|
|
7112
|
+
logo_URIs: {
|
|
7113
|
+
png: 'https://s.imversed.com/images/ic_imversed2.png',
|
|
7114
|
+
svg: 'https://s.imversed.com/images/ic_imversed2.svg'
|
|
7115
|
+
}
|
|
7116
|
+
}, {
|
|
7117
|
+
description: 'The native staking and governance token of the Imversed testnet.',
|
|
7118
|
+
denom_units: [{
|
|
7119
|
+
denom: 'ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B',
|
|
7120
|
+
exponent: 0,
|
|
7121
|
+
aliases: ['usaage']
|
|
7122
|
+
}, {
|
|
7123
|
+
denom: 'imv',
|
|
7124
|
+
exponent: 6
|
|
7125
|
+
}],
|
|
7126
|
+
base: 'ibc/C6438A7D613196373D939891C99CA7EEF4F78F4A78DC8590E51E62F8ED16E72B',
|
|
7127
|
+
name: 'Imv',
|
|
7128
|
+
display: 'imv',
|
|
7129
|
+
symbol: 'IMV',
|
|
7130
|
+
ibc: {
|
|
7131
|
+
source_channel: 'channel-1',
|
|
7132
|
+
dst_channel: 'channel-221',
|
|
7133
|
+
source_denom: 'nimv'
|
|
7134
|
+
},
|
|
7135
|
+
logo_URIs: {
|
|
7136
|
+
png: 'https://s.imversed.com/images/ic_imversed2.png',
|
|
7137
|
+
svg: 'https://s.imversed.com/images/ic_imversed2.svg'
|
|
7138
|
+
}
|
|
7139
|
+
}]
|
|
7140
|
+
}, {
|
|
7141
|
+
$schema: '../../assetlist.schema.json',
|
|
7142
|
+
chain_name: 'junotestnet',
|
|
7143
|
+
assets: [{
|
|
7144
|
+
description: 'The native token of JUNO Chain',
|
|
7145
|
+
denom_units: [{
|
|
7146
|
+
denom: 'ujunox',
|
|
7147
|
+
exponent: 0
|
|
7148
|
+
}, {
|
|
7149
|
+
denom: 'junox',
|
|
7150
|
+
exponent: 6
|
|
7151
|
+
}],
|
|
7152
|
+
base: 'ujunox',
|
|
7153
|
+
name: 'Juno Testnet',
|
|
7154
|
+
display: 'junox',
|
|
7155
|
+
symbol: 'JUNO',
|
|
7156
|
+
logo_URIs: {
|
|
7157
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png',
|
|
7158
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg'
|
|
7159
|
+
},
|
|
7160
|
+
coingecko_id: 'juno-network'
|
|
7161
|
+
}]
|
|
7162
|
+
}, {
|
|
7163
|
+
$schema: '../../assetlist.schema.json',
|
|
7164
|
+
chain_name: 'kichaintestnet',
|
|
7165
|
+
assets: [{
|
|
7166
|
+
description: 'The native token of Ki Chain',
|
|
7167
|
+
denom_units: [{
|
|
7168
|
+
denom: 'utki',
|
|
7169
|
+
exponent: 0
|
|
7170
|
+
}, {
|
|
7171
|
+
denom: 'tki',
|
|
7172
|
+
exponent: 6
|
|
7173
|
+
}],
|
|
7174
|
+
base: 'utki',
|
|
7175
|
+
name: 'Ki',
|
|
7176
|
+
display: 'tki',
|
|
7177
|
+
symbol: 'TKI',
|
|
7178
|
+
logo_URIs: {
|
|
7179
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png',
|
|
7180
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg'
|
|
7181
|
+
},
|
|
7182
|
+
coingecko_id: 'ki'
|
|
7183
|
+
}]
|
|
7184
|
+
}, {
|
|
7185
|
+
$schema: '../../assetlist.schema.json',
|
|
7186
|
+
chain_name: 'korellia',
|
|
7187
|
+
assets: [{
|
|
7188
|
+
description: 'The native staking and governance token of the Korellia testnet version of KYVE.',
|
|
7189
|
+
denom_units: [{
|
|
7190
|
+
denom: 'tkyve',
|
|
7191
|
+
exponent: 0
|
|
7192
|
+
}, {
|
|
7193
|
+
denom: 'kyve',
|
|
7194
|
+
exponent: 9
|
|
7195
|
+
}],
|
|
7196
|
+
base: 'tkyve',
|
|
7197
|
+
name: 'KYVE',
|
|
7198
|
+
display: 'kyve',
|
|
7199
|
+
symbol: 'KYVE',
|
|
7200
|
+
logo_URIs: {
|
|
7201
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/korellia/images/kyve.svg'
|
|
7202
|
+
}
|
|
7203
|
+
}]
|
|
7204
|
+
}, {
|
|
7205
|
+
$schema: '../../assetlist.schema.json',
|
|
7206
|
+
chain_name: 'osmosistestnet',
|
|
7207
|
+
assets: [{
|
|
7208
|
+
description: 'The native token of Osmosis',
|
|
7209
|
+
denom_units: [{
|
|
7210
|
+
denom: 'uosmo',
|
|
7211
|
+
exponent: 0,
|
|
7212
|
+
aliases: []
|
|
7213
|
+
}, {
|
|
7214
|
+
denom: 'osmo',
|
|
7215
|
+
exponent: 6,
|
|
7216
|
+
aliases: []
|
|
7217
|
+
}],
|
|
7218
|
+
base: 'uosmo',
|
|
7219
|
+
name: 'Osmosis',
|
|
7220
|
+
display: 'osmo',
|
|
7221
|
+
symbol: 'OSMO',
|
|
7222
|
+
logo_URIs: {
|
|
7223
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
7224
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
7225
|
+
},
|
|
7226
|
+
coingecko_id: 'osmosis',
|
|
7227
|
+
keywords: ['dex', 'staking']
|
|
7228
|
+
}, {
|
|
7229
|
+
denom_units: [{
|
|
7230
|
+
denom: 'uion',
|
|
7231
|
+
exponent: 0
|
|
7232
|
+
}, {
|
|
7233
|
+
denom: 'ion',
|
|
7234
|
+
exponent: 6
|
|
7235
|
+
}],
|
|
7236
|
+
base: 'uion',
|
|
7237
|
+
name: 'Ion',
|
|
7238
|
+
display: 'ion',
|
|
7239
|
+
symbol: 'ION',
|
|
7240
|
+
logo_URIs: {
|
|
7241
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
|
|
7242
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
|
|
7243
|
+
},
|
|
7244
|
+
coingecko_id: 'ion',
|
|
7245
|
+
keywords: ['memecoin']
|
|
7246
|
+
}]
|
|
7247
|
+
}, {
|
|
7248
|
+
$schema: '../../assetlist.schema.json',
|
|
7249
|
+
chain_name: 'pulsar',
|
|
7250
|
+
assets: [{
|
|
7251
|
+
description: 'The native token of Secret Network',
|
|
7252
|
+
denom_units: [{
|
|
7253
|
+
denom: 'uscrt',
|
|
7254
|
+
exponent: 0
|
|
7255
|
+
}, {
|
|
7256
|
+
denom: 'scrt',
|
|
7257
|
+
exponent: 6
|
|
7258
|
+
}],
|
|
7259
|
+
base: 'uscrt',
|
|
7260
|
+
name: 'Secret Network',
|
|
7261
|
+
display: 'scrt',
|
|
7262
|
+
symbol: 'SCRT',
|
|
7263
|
+
logo_URIs: {
|
|
7264
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png',
|
|
7265
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg'
|
|
7266
|
+
},
|
|
7267
|
+
coingecko_id: 'secret'
|
|
7268
|
+
}]
|
|
7269
|
+
}, {
|
|
7270
|
+
$schema: '../../assetlist.schema.json',
|
|
7271
|
+
chain_id: 'saage-internal-testnet-1.3',
|
|
7272
|
+
assets: [{
|
|
7273
|
+
description: 'The SGE token is primarily a governance token for the Saage chain.',
|
|
7274
|
+
denom_units: [{
|
|
7275
|
+
denom: 'usaage',
|
|
7276
|
+
exponent: 0,
|
|
7277
|
+
aliases: []
|
|
7278
|
+
}, {
|
|
7279
|
+
denom: 'saage',
|
|
7280
|
+
exponent: 6,
|
|
7281
|
+
aliases: []
|
|
7282
|
+
}],
|
|
7283
|
+
base: 'usaage',
|
|
7284
|
+
name: 'Saage',
|
|
7285
|
+
display: 'saage',
|
|
7286
|
+
symbol: 'SGE',
|
|
7287
|
+
logo_URIs: {
|
|
7288
|
+
png: 'https://defitech-logo.s3.amazonaws.com/Final+Logo+Saage.png',
|
|
7289
|
+
svg: 'https://defitech-logo.s3.amazonaws.com/Logo+Effects+edited.svg'
|
|
7290
|
+
}
|
|
7291
|
+
}, {
|
|
7292
|
+
description: 'The SGE token is primarily a governance token for the Saage chain.',
|
|
7293
|
+
denom_units: [{
|
|
7294
|
+
denom: 'ibc/8B670F5ACD4887208C8FAD58396D39114A8F2C9B57E72EE02F51438069A72AEA',
|
|
7295
|
+
exponent: 0,
|
|
7296
|
+
aliases: ['usaage']
|
|
7297
|
+
}, {
|
|
7298
|
+
denom: 'saage',
|
|
7299
|
+
exponent: 6
|
|
7300
|
+
}],
|
|
7301
|
+
base: 'ibc/8B670F5ACD4887208C8FAD58396D39114A8F2C9B57E72EE02F51438069A72AEA',
|
|
7302
|
+
name: 'Saage',
|
|
7303
|
+
display: 'saage',
|
|
7304
|
+
symbol: 'SGE',
|
|
7305
|
+
ibc: {
|
|
7306
|
+
source_channel: 'channel-0',
|
|
7307
|
+
dst_channel: 'channel-207',
|
|
7308
|
+
source_denom: 'usaage'
|
|
7309
|
+
},
|
|
7310
|
+
logo_URIs: {
|
|
7311
|
+
png: 'https://defitech-logo.s3.amazonaws.com/Final+Logo+Saage.png',
|
|
7312
|
+
svg: 'https://defitech-logo.s3.amazonaws.com/Logo+Effects+edited.svg'
|
|
7313
|
+
}
|
|
7314
|
+
}]
|
|
6908
7315
|
}, {
|
|
6909
7316
|
$schema: '../assetlist.schema.json',
|
|
6910
7317
|
chain_id: 'stateset-1-testnet',
|