chain-registry 1.4.0 → 1.6.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 +16 -0
- package/main/assets.js +395 -5
- package/main/chains.js +1 -13042
- package/main/ibc.js +252 -6
- package/package.json +4 -4
- package/types/index.d.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
# [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.5.0...chain-registry@1.6.0) (2022-12-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.4.0...chain-registry@1.5.0) (2022-11-10)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package chain-registry
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.3.1...chain-registry@1.4.0) (2022-11-10)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package chain-registry
|
package/main/assets.js
CHANGED
|
@@ -122,6 +122,59 @@ var assets = [{
|
|
|
122
122
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
123
123
|
}
|
|
124
124
|
}]
|
|
125
|
+
}, {
|
|
126
|
+
$schema: '../assetlist.schema.json',
|
|
127
|
+
chain_name: 'binancesmartchain',
|
|
128
|
+
assets: [{
|
|
129
|
+
description: 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.',
|
|
130
|
+
denom_units: [{
|
|
131
|
+
denom: 'wei',
|
|
132
|
+
exponent: 0
|
|
133
|
+
}, {
|
|
134
|
+
denom: 'bnb',
|
|
135
|
+
exponent: 18
|
|
136
|
+
}],
|
|
137
|
+
base: 'wei',
|
|
138
|
+
name: 'Binance Coin',
|
|
139
|
+
display: 'bnb',
|
|
140
|
+
symbol: 'BNB',
|
|
141
|
+
logo_URIs: {
|
|
142
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg',
|
|
143
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png'
|
|
144
|
+
},
|
|
145
|
+
coingecko_id: 'binancecoin'
|
|
146
|
+
}, {
|
|
147
|
+
description: 'Wrapped BNB. As the native coin of Binance Chain, BNB has multiple use cases: fueling transactions on the Chain, paying for transaction fees on Binance Exchange, making in-store payments, and many more.',
|
|
148
|
+
type_asset: 'erc20',
|
|
149
|
+
address: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c',
|
|
150
|
+
denom_units: [{
|
|
151
|
+
denom: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c',
|
|
152
|
+
exponent: 0
|
|
153
|
+
}, {
|
|
154
|
+
denom: 'wbnb',
|
|
155
|
+
exponent: 18
|
|
156
|
+
}],
|
|
157
|
+
base: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c',
|
|
158
|
+
name: 'Wrapped BNB',
|
|
159
|
+
display: 'wbnb',
|
|
160
|
+
symbol: 'WBNB',
|
|
161
|
+
traces: [{
|
|
162
|
+
type: 'wrapped',
|
|
163
|
+
counterparty: {
|
|
164
|
+
chain_name: 'binancesmartchain',
|
|
165
|
+
base_denom: 'wei'
|
|
166
|
+
},
|
|
167
|
+
chain: {
|
|
168
|
+
contract: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c'
|
|
169
|
+
},
|
|
170
|
+
provider: 'Binance'
|
|
171
|
+
}],
|
|
172
|
+
logo_URIs: {
|
|
173
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg',
|
|
174
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png'
|
|
175
|
+
},
|
|
176
|
+
coingecko_id: 'wbnb'
|
|
177
|
+
}]
|
|
125
178
|
}, {
|
|
126
179
|
$schema: '../assetlist.schema.json',
|
|
127
180
|
chain_name: 'ethereum',
|
|
@@ -877,6 +930,28 @@ var assets = [{
|
|
|
877
930
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
|
|
878
931
|
}
|
|
879
932
|
}]
|
|
933
|
+
}, {
|
|
934
|
+
$schema: '../assetlist.schema.json',
|
|
935
|
+
chain_name: 'acrechain',
|
|
936
|
+
assets: [{
|
|
937
|
+
description: 'The native EVM, governance and staking token of the Acrechain',
|
|
938
|
+
denom_units: [{
|
|
939
|
+
denom: 'aacre',
|
|
940
|
+
exponent: 0
|
|
941
|
+
}, {
|
|
942
|
+
denom: 'acre',
|
|
943
|
+
exponent: 18
|
|
944
|
+
}],
|
|
945
|
+
base: 'aacre',
|
|
946
|
+
name: 'Acre',
|
|
947
|
+
display: 'acre',
|
|
948
|
+
symbol: 'ACRE',
|
|
949
|
+
logo_URIs: {
|
|
950
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg',
|
|
951
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png'
|
|
952
|
+
},
|
|
953
|
+
coingecko_id: 'arable-protocol'
|
|
954
|
+
}]
|
|
880
955
|
}, {
|
|
881
956
|
$schema: '../assetlist.schema.json',
|
|
882
957
|
chain_name: 'agoric',
|
|
@@ -1506,6 +1581,32 @@ var assets = [{
|
|
|
1506
1581
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg'
|
|
1507
1582
|
},
|
|
1508
1583
|
coingecko_id: 'matic-network'
|
|
1584
|
+
}, {
|
|
1585
|
+
description: 'Wrapped BNB on Axelar',
|
|
1586
|
+
denom_units: [{
|
|
1587
|
+
denom: 'wbnb-wei',
|
|
1588
|
+
exponent: 0
|
|
1589
|
+
}, {
|
|
1590
|
+
denom: 'wbnb',
|
|
1591
|
+
exponent: 18
|
|
1592
|
+
}],
|
|
1593
|
+
base: 'wbnb-wei',
|
|
1594
|
+
name: 'Wrapped BNB',
|
|
1595
|
+
display: 'wbnb',
|
|
1596
|
+
symbol: 'WBNB',
|
|
1597
|
+
traces: [{
|
|
1598
|
+
type: 'bridge',
|
|
1599
|
+
counterparty: {
|
|
1600
|
+
chain_name: 'binancesmartchain',
|
|
1601
|
+
base_denom: '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c'
|
|
1602
|
+
},
|
|
1603
|
+
provider: 'Axelar'
|
|
1604
|
+
}],
|
|
1605
|
+
logo_URIs: {
|
|
1606
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg',
|
|
1607
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png'
|
|
1608
|
+
},
|
|
1609
|
+
coingecko_id: 'wbnb'
|
|
1509
1610
|
}]
|
|
1510
1611
|
}, {
|
|
1511
1612
|
$schema: '../assetlist.schema.json',
|
|
@@ -1548,7 +1649,8 @@ var assets = [{
|
|
|
1548
1649
|
display: 'bze',
|
|
1549
1650
|
symbol: 'BZE',
|
|
1550
1651
|
logo_URIs: {
|
|
1551
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png'
|
|
1652
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png',
|
|
1653
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg'
|
|
1552
1654
|
},
|
|
1553
1655
|
coingecko_id: 'bzedge'
|
|
1554
1656
|
}]
|
|
@@ -1965,7 +2067,8 @@ var assets = [{
|
|
|
1965
2067
|
display: 'huahua',
|
|
1966
2068
|
symbol: 'HUAHUA',
|
|
1967
2069
|
logo_URIs: {
|
|
1968
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png'
|
|
2070
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png',
|
|
2071
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg'
|
|
1969
2072
|
},
|
|
1970
2073
|
coingecko_id: 'chihuahua-token'
|
|
1971
2074
|
}]
|
|
@@ -2027,6 +2130,40 @@ var assets = [{
|
|
|
2027
2130
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png'
|
|
2028
2131
|
},
|
|
2029
2132
|
coingecko_id: 'comdex'
|
|
2133
|
+
}, {
|
|
2134
|
+
description: 'Governance Token of Harbor protocol on Comdex network',
|
|
2135
|
+
denom_units: [{
|
|
2136
|
+
denom: 'uharbor',
|
|
2137
|
+
exponent: 0
|
|
2138
|
+
}, {
|
|
2139
|
+
denom: 'harbor',
|
|
2140
|
+
exponent: 6
|
|
2141
|
+
}],
|
|
2142
|
+
base: 'uharbor',
|
|
2143
|
+
name: 'Harbor',
|
|
2144
|
+
display: 'harbor',
|
|
2145
|
+
symbol: 'HARBOR',
|
|
2146
|
+
logo_URIs: {
|
|
2147
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png'
|
|
2148
|
+
},
|
|
2149
|
+
coingecko_id: ''
|
|
2150
|
+
}, {
|
|
2151
|
+
description: 'Stable Token of Harbor protocol on Comdex network',
|
|
2152
|
+
denom_units: [{
|
|
2153
|
+
denom: 'ucmst',
|
|
2154
|
+
exponent: 0
|
|
2155
|
+
}, {
|
|
2156
|
+
denom: 'cmst',
|
|
2157
|
+
exponent: 6
|
|
2158
|
+
}],
|
|
2159
|
+
base: 'ucmst',
|
|
2160
|
+
name: 'CMST',
|
|
2161
|
+
display: 'cmst',
|
|
2162
|
+
symbol: 'CMST',
|
|
2163
|
+
logo_URIs: {
|
|
2164
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png'
|
|
2165
|
+
},
|
|
2166
|
+
coingecko_id: ''
|
|
2030
2167
|
}]
|
|
2031
2168
|
}, {
|
|
2032
2169
|
$schema: '../assetlist.schema.json',
|
|
@@ -2271,6 +2408,24 @@ var assets = [{
|
|
|
2271
2408
|
},
|
|
2272
2409
|
coingecko_id: 'dig-chain'
|
|
2273
2410
|
}]
|
|
2411
|
+
}, {
|
|
2412
|
+
$schema: '../assetlist.schema.json',
|
|
2413
|
+
chain_name: 'dyson',
|
|
2414
|
+
assets: [{
|
|
2415
|
+
description: 'The native staking and governance token of the Dyson Protocol',
|
|
2416
|
+
denom_units: [{
|
|
2417
|
+
denom: 'dys',
|
|
2418
|
+
exponent: 0
|
|
2419
|
+
}],
|
|
2420
|
+
base: 'dys',
|
|
2421
|
+
name: 'Dys',
|
|
2422
|
+
display: 'dys',
|
|
2423
|
+
symbol: 'DYS',
|
|
2424
|
+
logo_URIs: {
|
|
2425
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png'
|
|
2426
|
+
},
|
|
2427
|
+
coingecko_id: ''
|
|
2428
|
+
}]
|
|
2274
2429
|
}, {
|
|
2275
2430
|
$schema: '../assetlist.schema.json',
|
|
2276
2431
|
chain_name: 'echelon',
|
|
@@ -2646,6 +2801,28 @@ var assets = [{
|
|
|
2646
2801
|
},
|
|
2647
2802
|
coingecko_id: 'ixo'
|
|
2648
2803
|
}]
|
|
2804
|
+
}, {
|
|
2805
|
+
$schema: '../assetlist.schema.json',
|
|
2806
|
+
chain_name: 'imversed',
|
|
2807
|
+
assets: [{
|
|
2808
|
+
description: 'The native EVM, governance and staking token of the Imversed',
|
|
2809
|
+
denom_units: [{
|
|
2810
|
+
denom: 'aimv',
|
|
2811
|
+
exponent: 0
|
|
2812
|
+
}, {
|
|
2813
|
+
denom: 'imv',
|
|
2814
|
+
exponent: 18
|
|
2815
|
+
}],
|
|
2816
|
+
base: 'aimv',
|
|
2817
|
+
name: 'IMV',
|
|
2818
|
+
display: 'imv',
|
|
2819
|
+
symbol: 'IMV',
|
|
2820
|
+
logo_URIs: {
|
|
2821
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg',
|
|
2822
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png'
|
|
2823
|
+
},
|
|
2824
|
+
coingecko_id: 'imv'
|
|
2825
|
+
}]
|
|
2649
2826
|
}, {
|
|
2650
2827
|
$schema: '../assetlist.schema.json',
|
|
2651
2828
|
chain_name: 'injective',
|
|
@@ -3016,7 +3193,8 @@ var assets = [{
|
|
|
3016
3193
|
logo_URIs: {
|
|
3017
3194
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png',
|
|
3018
3195
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg'
|
|
3019
|
-
}
|
|
3196
|
+
},
|
|
3197
|
+
coingecko_id: 'stakeeasy-juno-derivative'
|
|
3020
3198
|
}, {
|
|
3021
3199
|
description: 'Staking derivative bJUNO for staked JUNO',
|
|
3022
3200
|
type_asset: 'cw20',
|
|
@@ -3035,7 +3213,8 @@ var assets = [{
|
|
|
3035
3213
|
logo_URIs: {
|
|
3036
3214
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png',
|
|
3037
3215
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg'
|
|
3038
|
-
}
|
|
3216
|
+
},
|
|
3217
|
+
coingecko_id: 'stakeeasy-bjuno'
|
|
3039
3218
|
}, {
|
|
3040
3219
|
description: 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy',
|
|
3041
3220
|
type_asset: 'cw20',
|
|
@@ -3073,7 +3252,8 @@ var assets = [{
|
|
|
3073
3252
|
logo_URIs: {
|
|
3074
3253
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png',
|
|
3075
3254
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg'
|
|
3076
|
-
}
|
|
3255
|
+
},
|
|
3256
|
+
coingecko_id: 'seasy'
|
|
3077
3257
|
}, {
|
|
3078
3258
|
description: 'The native token cw20 for MuseDAO on Juno Chain',
|
|
3079
3259
|
type_asset: 'cw20',
|
|
@@ -3111,6 +3291,25 @@ var assets = [{
|
|
|
3111
3291
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png'
|
|
3112
3292
|
},
|
|
3113
3293
|
coingecko_id: 'loop'
|
|
3294
|
+
}, {
|
|
3295
|
+
description: 'The native token cw20 for Fanfury on Juno Chain',
|
|
3296
|
+
type_asset: 'cw20',
|
|
3297
|
+
address: 'juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz',
|
|
3298
|
+
denom_units: [{
|
|
3299
|
+
denom: 'cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz',
|
|
3300
|
+
exponent: 0
|
|
3301
|
+
}, {
|
|
3302
|
+
denom: 'fury',
|
|
3303
|
+
exponent: 6
|
|
3304
|
+
}],
|
|
3305
|
+
base: 'cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz',
|
|
3306
|
+
name: 'Fanfury',
|
|
3307
|
+
display: 'fury',
|
|
3308
|
+
symbol: 'FURY',
|
|
3309
|
+
logo_URIs: {
|
|
3310
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png'
|
|
3311
|
+
},
|
|
3312
|
+
coingecko_id: 'fanfury'
|
|
3114
3313
|
}, {
|
|
3115
3314
|
description: 'The native token cw20 for Neta on Juno Chain',
|
|
3116
3315
|
type_asset: 'cw20',
|
|
@@ -3371,6 +3570,23 @@ var assets = [{
|
|
|
3371
3570
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.png'
|
|
3372
3571
|
}
|
|
3373
3572
|
}]
|
|
3573
|
+
}, {
|
|
3574
|
+
$schema: '../assetlist.schema.json',
|
|
3575
|
+
chain_name: 'loyal',
|
|
3576
|
+
assets: [{
|
|
3577
|
+
description: 'Native token of Loyal',
|
|
3578
|
+
denom_units: [{
|
|
3579
|
+
denom: 'ulyl',
|
|
3580
|
+
exponent: 0
|
|
3581
|
+
}, {
|
|
3582
|
+
denom: 'lyl',
|
|
3583
|
+
exponent: 6
|
|
3584
|
+
}],
|
|
3585
|
+
base: 'ulyl',
|
|
3586
|
+
name: 'Loyal',
|
|
3587
|
+
display: 'lyl',
|
|
3588
|
+
symbol: 'LYL'
|
|
3589
|
+
}]
|
|
3374
3590
|
}, {
|
|
3375
3591
|
$schema: '../assetlist.schema.json',
|
|
3376
3592
|
chain_name: 'lumenx',
|
|
@@ -3413,6 +3629,30 @@ var assets = [{
|
|
|
3413
3629
|
},
|
|
3414
3630
|
coingecko_id: 'lum-network'
|
|
3415
3631
|
}]
|
|
3632
|
+
}, {
|
|
3633
|
+
$schema: '../../assetlist.schema.json',
|
|
3634
|
+
chain_name: 'medasdigital-1',
|
|
3635
|
+
assets: [{
|
|
3636
|
+
description: 'The native token of Medas Digital Network',
|
|
3637
|
+
denom_units: [{
|
|
3638
|
+
denom: 'umedas',
|
|
3639
|
+
exponent: 0,
|
|
3640
|
+
aliases: []
|
|
3641
|
+
}, {
|
|
3642
|
+
denom: 'medas',
|
|
3643
|
+
exponent: 6,
|
|
3644
|
+
aliases: []
|
|
3645
|
+
}],
|
|
3646
|
+
base: 'umedas',
|
|
3647
|
+
name: 'Medas Digital',
|
|
3648
|
+
display: 'medas',
|
|
3649
|
+
symbol: 'MEDAS',
|
|
3650
|
+
logo_URIs: {
|
|
3651
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png',
|
|
3652
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg'
|
|
3653
|
+
},
|
|
3654
|
+
keywords: ['medas']
|
|
3655
|
+
}]
|
|
3416
3656
|
}, {
|
|
3417
3657
|
$schema: '../assetlist.schema.json',
|
|
3418
3658
|
chain_name: 'meme',
|
|
@@ -3810,6 +4050,28 @@ var assets = [{
|
|
|
3810
4050
|
},
|
|
3811
4051
|
coingecko_id: 'pstake-finance'
|
|
3812
4052
|
}]
|
|
4053
|
+
}, {
|
|
4054
|
+
$schema: '../assetlist.schema.json',
|
|
4055
|
+
chain_name: 'planq',
|
|
4056
|
+
assets: [{
|
|
4057
|
+
description: 'The native EVM, governance and staking token of the Planq Network',
|
|
4058
|
+
denom_units: [{
|
|
4059
|
+
denom: 'aplanq',
|
|
4060
|
+
exponent: 0
|
|
4061
|
+
}, {
|
|
4062
|
+
denom: 'planq',
|
|
4063
|
+
exponent: 18
|
|
4064
|
+
}],
|
|
4065
|
+
base: 'aplanq',
|
|
4066
|
+
name: 'Planq',
|
|
4067
|
+
display: 'planq',
|
|
4068
|
+
symbol: 'PLQ',
|
|
4069
|
+
logo_URIs: {
|
|
4070
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg',
|
|
4071
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png'
|
|
4072
|
+
},
|
|
4073
|
+
coingecko_id: ''
|
|
4074
|
+
}]
|
|
3813
4075
|
}, {
|
|
3814
4076
|
$schema: '../assetlist.schema.json',
|
|
3815
4077
|
chain_name: 'point',
|
|
@@ -4120,6 +4382,78 @@ var assets = [{
|
|
|
4120
4382
|
},
|
|
4121
4383
|
coingecko_id: 'sommelier'
|
|
4122
4384
|
}]
|
|
4385
|
+
}, {
|
|
4386
|
+
$schema: '../assetlist.schema.json',
|
|
4387
|
+
chain_name: 'stafihub',
|
|
4388
|
+
assets: [{
|
|
4389
|
+
description: 'The native staking and governance token of the StaFi Hub.',
|
|
4390
|
+
denom_units: [{
|
|
4391
|
+
denom: 'ufis',
|
|
4392
|
+
exponent: 0
|
|
4393
|
+
}, {
|
|
4394
|
+
denom: 'fis',
|
|
4395
|
+
exponent: 6
|
|
4396
|
+
}],
|
|
4397
|
+
base: 'ufis',
|
|
4398
|
+
name: 'FIS',
|
|
4399
|
+
display: 'fis',
|
|
4400
|
+
symbol: 'FIS',
|
|
4401
|
+
logo_URIs: {
|
|
4402
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub.png'
|
|
4403
|
+
},
|
|
4404
|
+
coingecko_id: 'stafi'
|
|
4405
|
+
}, {
|
|
4406
|
+
description: 'A liquid staking representation of staked ATOMs',
|
|
4407
|
+
denom_units: [{
|
|
4408
|
+
denom: 'uratom',
|
|
4409
|
+
exponent: 0
|
|
4410
|
+
}, {
|
|
4411
|
+
denom: 'ratom',
|
|
4412
|
+
exponent: 6
|
|
4413
|
+
}],
|
|
4414
|
+
base: 'uratom',
|
|
4415
|
+
name: 'rATOM',
|
|
4416
|
+
display: 'ratom',
|
|
4417
|
+
symbol: 'rATOM',
|
|
4418
|
+
logo_URIs: {
|
|
4419
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg'
|
|
4420
|
+
},
|
|
4421
|
+
coingecko_id: ''
|
|
4422
|
+
}, {
|
|
4423
|
+
description: 'A liquid staking representation of staked IRISs',
|
|
4424
|
+
denom_units: [{
|
|
4425
|
+
denom: 'uriris',
|
|
4426
|
+
exponent: 0
|
|
4427
|
+
}, {
|
|
4428
|
+
denom: 'riris',
|
|
4429
|
+
exponent: 6
|
|
4430
|
+
}],
|
|
4431
|
+
base: 'uriris',
|
|
4432
|
+
name: 'rIRIS',
|
|
4433
|
+
display: 'riris',
|
|
4434
|
+
symbol: 'rIRIS',
|
|
4435
|
+
logo_URIs: {
|
|
4436
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/riris.svg'
|
|
4437
|
+
},
|
|
4438
|
+
coingecko_id: ''
|
|
4439
|
+
}, {
|
|
4440
|
+
description: 'A liquid staking representation of staked HUAHUAs',
|
|
4441
|
+
denom_units: [{
|
|
4442
|
+
denom: 'urhuahua',
|
|
4443
|
+
exponent: 0
|
|
4444
|
+
}, {
|
|
4445
|
+
denom: 'rhuahua',
|
|
4446
|
+
exponent: 6
|
|
4447
|
+
}],
|
|
4448
|
+
base: 'urhuahua',
|
|
4449
|
+
name: 'rHUAHUA',
|
|
4450
|
+
display: 'rhuahua',
|
|
4451
|
+
symbol: 'rHUAHUA',
|
|
4452
|
+
logo_URIs: {
|
|
4453
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/rhuahua.svg'
|
|
4454
|
+
},
|
|
4455
|
+
coingecko_id: ''
|
|
4456
|
+
}]
|
|
4123
4457
|
}, {
|
|
4124
4458
|
$schema: '../assetlist.schema.json',
|
|
4125
4459
|
chain_name: 'stargaze',
|
|
@@ -8059,6 +8393,28 @@ var assets = [{
|
|
|
8059
8393
|
},
|
|
8060
8394
|
coingecko_id: 'cheqd-network'
|
|
8061
8395
|
}]
|
|
8396
|
+
}, {
|
|
8397
|
+
$schema: '../../assetlist.schema.json',
|
|
8398
|
+
chain_name: 'coolcattestnet',
|
|
8399
|
+
assets: [{
|
|
8400
|
+
description: 'CoolCat - The Interchain Gaming Hub. $CCAT is the native token for use in the CoolCat Network.',
|
|
8401
|
+
denom_units: [{
|
|
8402
|
+
denom: 'uccat',
|
|
8403
|
+
exponent: 0
|
|
8404
|
+
}, {
|
|
8405
|
+
denom: 'ccat',
|
|
8406
|
+
exponent: 6
|
|
8407
|
+
}],
|
|
8408
|
+
base: 'uccat',
|
|
8409
|
+
name: 'CoolCat',
|
|
8410
|
+
display: 'ccat',
|
|
8411
|
+
symbol: 'CCAT',
|
|
8412
|
+
logo_URIs: {
|
|
8413
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coolcat/images/coolcat.svg',
|
|
8414
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coolcat/images/coolcat.png'
|
|
8415
|
+
},
|
|
8416
|
+
keywords: ['nft', 'staking', 'games']
|
|
8417
|
+
}]
|
|
8062
8418
|
}, {
|
|
8063
8419
|
$schema: '../../assetlist.schema.json',
|
|
8064
8420
|
chain_name: 'cosmwasmtestnet',
|
|
@@ -8484,6 +8840,40 @@ var assets = [{
|
|
|
8484
8840
|
jpeg: 'https://app.stateset.zone/stateset.jpeg'
|
|
8485
8841
|
}
|
|
8486
8842
|
}]
|
|
8843
|
+
}, {
|
|
8844
|
+
$schema: '../assetlist.schema.json',
|
|
8845
|
+
chain_name: 'terpnettestnet',
|
|
8846
|
+
assets: [{
|
|
8847
|
+
description: "Terp Token (TERP) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.",
|
|
8848
|
+
denom_units: [{
|
|
8849
|
+
denom: 'uterpx',
|
|
8850
|
+
exponent: 0
|
|
8851
|
+
}, {
|
|
8852
|
+
denom: 'terpx',
|
|
8853
|
+
exponent: 6
|
|
8854
|
+
}],
|
|
8855
|
+
base: 'uterpx',
|
|
8856
|
+
name: 'Terp Testnet Token',
|
|
8857
|
+
display: 'terpx',
|
|
8858
|
+
symbol: 'TERPX',
|
|
8859
|
+
logo_URIs: {
|
|
8860
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/terpnettestnet/images/terp.png'
|
|
8861
|
+
}
|
|
8862
|
+
}, {
|
|
8863
|
+
description: "Persy Gas Token (Persy) is the Terp Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.",
|
|
8864
|
+
denom_units: [{
|
|
8865
|
+
denom: 'upersyx',
|
|
8866
|
+
exponent: 0
|
|
8867
|
+
}, {
|
|
8868
|
+
denom: 'persyx',
|
|
8869
|
+
exponent: 6
|
|
8870
|
+
}],
|
|
8871
|
+
base: 'upersyx',
|
|
8872
|
+
name: 'Persy Testnet Gas Token',
|
|
8873
|
+
display: 'persyx',
|
|
8874
|
+
symbol: 'PERSYX',
|
|
8875
|
+
logo_URIs: {}
|
|
8876
|
+
}]
|
|
8487
8877
|
}, {
|
|
8488
8878
|
$schema: '../assetlist.schema.json',
|
|
8489
8879
|
chain_name: 'theta-testnet-001',
|