@chain-registry/assets 1.70.179 → 1.70.181
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/mainnet/assets.js +2 -1
- package/esm/mainnet/axelar.js +12 -2
- package/esm/mainnet/babylon.js +306 -0
- package/esm/mainnet/composable.js +490 -0
- package/esm/mainnet/cosmoshub.js +114 -2
- package/esm/mainnet/index.js +1 -0
- package/esm/mainnet/lombardledger.js +89 -0
- package/esm/mainnet/neutron.js +76 -0
- package/esm/mainnet/noble.js +12 -2
- package/esm/mainnet/osmosis.js +12 -2
- package/mainnet/assets.js +2 -1
- package/mainnet/axelar.js +12 -2
- package/mainnet/babylon.js +306 -0
- package/mainnet/composable.js +490 -0
- package/mainnet/cosmoshub.js +114 -2
- package/mainnet/index.d.ts +1 -0
- package/mainnet/index.js +4 -3
- package/mainnet/lombardledger.d.ts +3 -0
- package/mainnet/lombardledger.js +91 -0
- package/mainnet/neutron.js +76 -0
- package/mainnet/noble.js +12 -2
- package/mainnet/osmosis.js +12 -2
- package/package.json +5 -5
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
const assets = {
|
|
2
|
+
chain_name: 'lombardledger',
|
|
3
|
+
assets: [{
|
|
4
|
+
description: 'ATOM is the native cryptocurrency of the Cosmos network, designed to facilitate interoperability between multiple blockchains through its innovative hub-and-spoke model.',
|
|
5
|
+
denom_units: [{
|
|
6
|
+
denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
7
|
+
exponent: 0,
|
|
8
|
+
aliases: ['uatom']
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'atom',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
14
|
+
name: 'Cosmos Hub Atom',
|
|
15
|
+
display: 'atom',
|
|
16
|
+
symbol: 'ATOM',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
19
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
20
|
+
},
|
|
21
|
+
coingecko_id: 'cosmos',
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
|
|
25
|
+
theme: {
|
|
26
|
+
primary_color_hex: '#272d45'
|
|
27
|
+
}
|
|
28
|
+
}],
|
|
29
|
+
socials: {
|
|
30
|
+
website: 'https://cosmos.network',
|
|
31
|
+
twitter: 'https://twitter.com/cosmoshub'
|
|
32
|
+
},
|
|
33
|
+
type_asset: 'sdk.coin',
|
|
34
|
+
traces: [{
|
|
35
|
+
type: 'ibc',
|
|
36
|
+
counterparty: {
|
|
37
|
+
channel_id: 'channel-1340',
|
|
38
|
+
base_denom: 'uatom',
|
|
39
|
+
chain_name: 'cosmoshub'
|
|
40
|
+
},
|
|
41
|
+
chain: {
|
|
42
|
+
channel_id: 'channel-0'
|
|
43
|
+
}
|
|
44
|
+
}]
|
|
45
|
+
}, {
|
|
46
|
+
description: 'ATOM is the native cryptocurrency of the Cosmos network, designed to facilitate interoperability between multiple blockchains through its innovative hub-and-spoke model.',
|
|
47
|
+
denom_units: [{
|
|
48
|
+
denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
49
|
+
exponent: 0,
|
|
50
|
+
aliases: ['uatom']
|
|
51
|
+
}, {
|
|
52
|
+
denom: 'atom',
|
|
53
|
+
exponent: 6
|
|
54
|
+
}],
|
|
55
|
+
base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
|
|
56
|
+
name: 'Cosmos Hub Atom',
|
|
57
|
+
display: 'atom',
|
|
58
|
+
symbol: 'ATOM',
|
|
59
|
+
logo_URIs: {
|
|
60
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
61
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
62
|
+
},
|
|
63
|
+
coingecko_id: 'cosmos',
|
|
64
|
+
images: [{
|
|
65
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
66
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
|
|
67
|
+
theme: {
|
|
68
|
+
primary_color_hex: '#272d45'
|
|
69
|
+
}
|
|
70
|
+
}],
|
|
71
|
+
socials: {
|
|
72
|
+
website: 'https://cosmos.network',
|
|
73
|
+
twitter: 'https://twitter.com/cosmoshub'
|
|
74
|
+
},
|
|
75
|
+
type_asset: 'sdk.coin',
|
|
76
|
+
traces: [{
|
|
77
|
+
type: 'ibc',
|
|
78
|
+
counterparty: {
|
|
79
|
+
channel_id: 'channel-1340',
|
|
80
|
+
base_denom: 'uatom',
|
|
81
|
+
chain_name: 'cosmoshub'
|
|
82
|
+
},
|
|
83
|
+
chain: {
|
|
84
|
+
channel_id: 'channel-0'
|
|
85
|
+
}
|
|
86
|
+
}]
|
|
87
|
+
}]
|
|
88
|
+
};
|
|
89
|
+
export default assets;
|
package/esm/mainnet/neutron.js
CHANGED
|
@@ -210,6 +210,44 @@ const assets = {
|
|
|
210
210
|
}
|
|
211
211
|
}]
|
|
212
212
|
},
|
|
213
|
+
{
|
|
214
|
+
description: 'The native token of Babylon Genesis.',
|
|
215
|
+
denom_units: [{
|
|
216
|
+
denom: 'ibc/42B08C3E209022A4D062EF96AEA94AEBD1C2C1F14398C421027F80D9FF4994FA',
|
|
217
|
+
exponent: 0,
|
|
218
|
+
aliases: ['ubbn']
|
|
219
|
+
}, {
|
|
220
|
+
denom: 'BABY',
|
|
221
|
+
exponent: 6
|
|
222
|
+
}],
|
|
223
|
+
base: 'ibc/42B08C3E209022A4D062EF96AEA94AEBD1C2C1F14398C421027F80D9FF4994FA',
|
|
224
|
+
name: 'BABY',
|
|
225
|
+
display: 'BABY',
|
|
226
|
+
symbol: 'BABY',
|
|
227
|
+
logo_URIs: {
|
|
228
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
229
|
+
},
|
|
230
|
+
images: [{
|
|
231
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
232
|
+
}],
|
|
233
|
+
coingecko_id: 'babylon',
|
|
234
|
+
type_asset: 'sdk.coin',
|
|
235
|
+
socials: {
|
|
236
|
+
website: 'https://babylonlabs.io/',
|
|
237
|
+
twitter: 'https://x.com/babylonlabs_io'
|
|
238
|
+
},
|
|
239
|
+
traces: [{
|
|
240
|
+
type: 'ibc',
|
|
241
|
+
counterparty: {
|
|
242
|
+
channel_id: 'channel-5',
|
|
243
|
+
base_denom: 'ubbn',
|
|
244
|
+
chain_name: 'babylon'
|
|
245
|
+
},
|
|
246
|
+
chain: {
|
|
247
|
+
channel_id: 'channel-6980'
|
|
248
|
+
}
|
|
249
|
+
}]
|
|
250
|
+
},
|
|
213
251
|
{
|
|
214
252
|
description: 'Celestia is a modular blockchain network focused on data availability, allowing developers to deploy their own customizable blockchains with ease.',
|
|
215
253
|
denom_units: [{
|
|
@@ -1437,6 +1475,44 @@ const assets = {
|
|
|
1437
1475
|
}
|
|
1438
1476
|
}]
|
|
1439
1477
|
},
|
|
1478
|
+
{
|
|
1479
|
+
description: 'The native token of Babylon Genesis.',
|
|
1480
|
+
denom_units: [{
|
|
1481
|
+
denom: 'ibc/42B08C3E209022A4D062EF96AEA94AEBD1C2C1F14398C421027F80D9FF4994FA',
|
|
1482
|
+
exponent: 0,
|
|
1483
|
+
aliases: ['ubbn']
|
|
1484
|
+
}, {
|
|
1485
|
+
denom: 'BABY',
|
|
1486
|
+
exponent: 6
|
|
1487
|
+
}],
|
|
1488
|
+
base: 'ibc/42B08C3E209022A4D062EF96AEA94AEBD1C2C1F14398C421027F80D9FF4994FA',
|
|
1489
|
+
name: 'BABY',
|
|
1490
|
+
display: 'BABY',
|
|
1491
|
+
symbol: 'BABY',
|
|
1492
|
+
logo_URIs: {
|
|
1493
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
1494
|
+
},
|
|
1495
|
+
images: [{
|
|
1496
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
1497
|
+
}],
|
|
1498
|
+
coingecko_id: 'babylon',
|
|
1499
|
+
type_asset: 'sdk.coin',
|
|
1500
|
+
socials: {
|
|
1501
|
+
website: 'https://babylonlabs.io/',
|
|
1502
|
+
twitter: 'https://x.com/babylonlabs_io'
|
|
1503
|
+
},
|
|
1504
|
+
traces: [{
|
|
1505
|
+
type: 'ibc',
|
|
1506
|
+
counterparty: {
|
|
1507
|
+
channel_id: 'channel-5',
|
|
1508
|
+
base_denom: 'ubbn',
|
|
1509
|
+
chain_name: 'babylon'
|
|
1510
|
+
},
|
|
1511
|
+
chain: {
|
|
1512
|
+
channel_id: 'channel-6980'
|
|
1513
|
+
}
|
|
1514
|
+
}]
|
|
1515
|
+
},
|
|
1440
1516
|
{
|
|
1441
1517
|
description: 'Celestia is a modular blockchain network focused on data availability, allowing developers to deploy their own customizable blockchains with ease.',
|
|
1442
1518
|
denom_units: [{
|
package/esm/mainnet/noble.js
CHANGED
|
@@ -217,7 +217,7 @@ const assets = {
|
|
|
217
217
|
exponent: 6
|
|
218
218
|
}],
|
|
219
219
|
base: 'ibc/0C817F0C77FAE08034E5354D1BDEF1672104ECC3E5B1B8811A580290A4A80614',
|
|
220
|
-
name: '
|
|
220
|
+
name: 'BABY',
|
|
221
221
|
display: 'BABY',
|
|
222
222
|
symbol: 'BABY',
|
|
223
223
|
logo_URIs: {
|
|
@@ -226,7 +226,12 @@ const assets = {
|
|
|
226
226
|
images: [{
|
|
227
227
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
228
228
|
}],
|
|
229
|
+
coingecko_id: 'babylon',
|
|
229
230
|
type_asset: 'sdk.coin',
|
|
231
|
+
socials: {
|
|
232
|
+
website: 'https://babylonlabs.io/',
|
|
233
|
+
twitter: 'https://x.com/babylonlabs_io'
|
|
234
|
+
},
|
|
230
235
|
traces: [{
|
|
231
236
|
type: 'ibc',
|
|
232
237
|
counterparty: {
|
|
@@ -2695,7 +2700,7 @@ const assets = {
|
|
|
2695
2700
|
exponent: 6
|
|
2696
2701
|
}],
|
|
2697
2702
|
base: 'ibc/0C817F0C77FAE08034E5354D1BDEF1672104ECC3E5B1B8811A580290A4A80614',
|
|
2698
|
-
name: '
|
|
2703
|
+
name: 'BABY',
|
|
2699
2704
|
display: 'BABY',
|
|
2700
2705
|
symbol: 'BABY',
|
|
2701
2706
|
logo_URIs: {
|
|
@@ -2704,7 +2709,12 @@ const assets = {
|
|
|
2704
2709
|
images: [{
|
|
2705
2710
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
2706
2711
|
}],
|
|
2712
|
+
coingecko_id: 'babylon',
|
|
2707
2713
|
type_asset: 'sdk.coin',
|
|
2714
|
+
socials: {
|
|
2715
|
+
website: 'https://babylonlabs.io/',
|
|
2716
|
+
twitter: 'https://x.com/babylonlabs_io'
|
|
2717
|
+
},
|
|
2708
2718
|
traces: [{
|
|
2709
2719
|
type: 'ibc',
|
|
2710
2720
|
counterparty: {
|
package/esm/mainnet/osmosis.js
CHANGED
|
@@ -685,7 +685,7 @@ const assets = {
|
|
|
685
685
|
exponent: 6
|
|
686
686
|
}],
|
|
687
687
|
base: 'ibc/EC3A4ACBA1CFBEE698472D3563B70985AEA5A7144C319B61B3EBDFB57B5E1535',
|
|
688
|
-
name: '
|
|
688
|
+
name: 'BABY',
|
|
689
689
|
display: 'BABY',
|
|
690
690
|
symbol: 'BABY',
|
|
691
691
|
logo_URIs: {
|
|
@@ -694,7 +694,12 @@ const assets = {
|
|
|
694
694
|
images: [{
|
|
695
695
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
696
696
|
}],
|
|
697
|
+
coingecko_id: 'babylon',
|
|
697
698
|
type_asset: 'sdk.coin',
|
|
699
|
+
socials: {
|
|
700
|
+
website: 'https://babylonlabs.io/',
|
|
701
|
+
twitter: 'https://x.com/babylonlabs_io'
|
|
702
|
+
},
|
|
698
703
|
traces: [{
|
|
699
704
|
type: 'ibc',
|
|
700
705
|
counterparty: {
|
|
@@ -7032,7 +7037,7 @@ const assets = {
|
|
|
7032
7037
|
exponent: 6
|
|
7033
7038
|
}],
|
|
7034
7039
|
base: 'ibc/EC3A4ACBA1CFBEE698472D3563B70985AEA5A7144C319B61B3EBDFB57B5E1535',
|
|
7035
|
-
name: '
|
|
7040
|
+
name: 'BABY',
|
|
7036
7041
|
display: 'BABY',
|
|
7037
7042
|
symbol: 'BABY',
|
|
7038
7043
|
logo_URIs: {
|
|
@@ -7041,7 +7046,12 @@ const assets = {
|
|
|
7041
7046
|
images: [{
|
|
7042
7047
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
7043
7048
|
}],
|
|
7049
|
+
coingecko_id: 'babylon',
|
|
7044
7050
|
type_asset: 'sdk.coin',
|
|
7051
|
+
socials: {
|
|
7052
|
+
website: 'https://babylonlabs.io/',
|
|
7053
|
+
twitter: 'https://x.com/babylonlabs_io'
|
|
7054
|
+
},
|
|
7045
7055
|
traces: [{
|
|
7046
7056
|
type: 'ibc',
|
|
7047
7057
|
counterparty: {
|
package/mainnet/assets.js
CHANGED
|
@@ -81,6 +81,7 @@ const kyve_1 = __importDefault(require("./kyve"));
|
|
|
81
81
|
const lambda_1 = __importDefault(require("./lambda"));
|
|
82
82
|
const lava_1 = __importDefault(require("./lava"));
|
|
83
83
|
const likecoin_1 = __importDefault(require("./likecoin"));
|
|
84
|
+
const lombardledger_1 = __importDefault(require("./lombardledger"));
|
|
84
85
|
const lorenzo_1 = __importDefault(require("./lorenzo"));
|
|
85
86
|
const lumnetwork_1 = __importDefault(require("./lumnetwork"));
|
|
86
87
|
const mande_1 = __importDefault(require("./mande"));
|
|
@@ -155,5 +156,5 @@ const uptick_1 = __importDefault(require("./uptick"));
|
|
|
155
156
|
const xion_1 = __importDefault(require("./xion"));
|
|
156
157
|
const xpla_1 = __importDefault(require("./xpla"));
|
|
157
158
|
const zenrock_1 = __importDefault(require("./zenrock"));
|
|
158
|
-
const assets = [ethereum_1.default, solana_1.default, aaronetwork_1.default, acrechain_1.default, agoric_1.default, aioz_1.default, akash_1.default, andromeda_1.default, archway_1.default, arkh_1.default, assetmantle_1.default, atomone_1.default, aura_1.default, axelar_1.default, babylon_1.default, bandchain_1.default, beezee_1.default, bitcanna_1.default, bitsong_1.default, bluzelle_1.default, bostrom_1.default, canto_1.default, carbon_1.default, celestia_1.default, chain4energy_1.default, cheqd_1.default, chihuahua_1.default, cifer_1.default, comdex_1.default, composable_1.default, conscious_1.default, coreum_1.default, cosmoshub_1.default, crescent_1.default, cronos_1.default, cryptoorgchain_1.default, decentr_1.default, desmos_1.default, dhealth_1.default, doravota_1.default, dungeon_1.default, dydx_1.default, dymension_1.default, dyson_1.default, echelon_1.default, elys_1.default, emoney_1.default, empowerchain_1.default, evmos_1.default, fetchhub_1.default, firmachain_1.default, furya_1.default, fxcore_1.default, galaxy_1.default, gateway_1.default, genesisl1_1.default, gitopia_1.default, gravitybridge_1.default, haqq_1.default, humans_1.default, impacthub_1.default, imversed_1.default, injective_1.default, int3face_1.default, irisnet_1.default, jackal_1.default, joltify_1.default, juno_1.default, kava_1.default, kichain_1.default, kimanetwork_1.default, konstellation_1.default, kopi_1.default, kujira_1.default, kyve_1.default, lambda_1.default, lava_1.default, likecoin_1.default, lorenzo_1.default, lumnetwork_1.default, mande_1.default, manifest_1.default, mantrachain_1.default, medasdigital_1.default, meme_1.default, migaloo_1.default, milkyway_1.default, neutaro_1.default, neutron_1.default, nibiru_1.default, nillion_1.default, nim_1.default, noble_1.default, nolus_1.default, nomic_1.default, nyx_1.default, odin_1.default, okexchain_1.default, omniflixhub_1.default, onex_1.default, onomy_1.default, oraichain_1.default, osmosis_1.default, panacea_1.default, passage_1.default, persistence_1.default, planq_1.default, point_1.default, provenance_1.default, pryzm_1.default, pundix_1.default, pylons_1.default, quasar_1.default, quicksilver_1.default, qwoyn_1.default, realio_1.default, rebus_1.default, regen_1.default, rizon_1.default, routerchain_1.default, saga_1.default, scorum_1.default, secretnetwork_1.default, seda_1.default, sei_1.default, self_1.default, sentinel_1.default, sge_1.default, shareledger_1.default, shentu_1.default, shido_1.default, sidechain_1.default, sifchain_1.default, sommelier_1.default, source_1.default, stafihub_1.default, stargaze_1.default, starname_1.default, stratos_1.default, stride_1.default, synternet_1.default, teritori_1.default, terra_1.default, terra2_1.default, tgrade_1.default, titan_1.default, umee_1.default, unification_1.default, uptick_1.default, xion_1.default, xpla_1.default, zenrock_1.default];
|
|
159
|
+
const assets = [ethereum_1.default, solana_1.default, aaronetwork_1.default, acrechain_1.default, agoric_1.default, aioz_1.default, akash_1.default, andromeda_1.default, archway_1.default, arkh_1.default, assetmantle_1.default, atomone_1.default, aura_1.default, axelar_1.default, babylon_1.default, bandchain_1.default, beezee_1.default, bitcanna_1.default, bitsong_1.default, bluzelle_1.default, bostrom_1.default, canto_1.default, carbon_1.default, celestia_1.default, chain4energy_1.default, cheqd_1.default, chihuahua_1.default, cifer_1.default, comdex_1.default, composable_1.default, conscious_1.default, coreum_1.default, cosmoshub_1.default, crescent_1.default, cronos_1.default, cryptoorgchain_1.default, decentr_1.default, desmos_1.default, dhealth_1.default, doravota_1.default, dungeon_1.default, dydx_1.default, dymension_1.default, dyson_1.default, echelon_1.default, elys_1.default, emoney_1.default, empowerchain_1.default, evmos_1.default, fetchhub_1.default, firmachain_1.default, furya_1.default, fxcore_1.default, galaxy_1.default, gateway_1.default, genesisl1_1.default, gitopia_1.default, gravitybridge_1.default, haqq_1.default, humans_1.default, impacthub_1.default, imversed_1.default, injective_1.default, int3face_1.default, irisnet_1.default, jackal_1.default, joltify_1.default, juno_1.default, kava_1.default, kichain_1.default, kimanetwork_1.default, konstellation_1.default, kopi_1.default, kujira_1.default, kyve_1.default, lambda_1.default, lava_1.default, likecoin_1.default, lombardledger_1.default, lorenzo_1.default, lumnetwork_1.default, mande_1.default, manifest_1.default, mantrachain_1.default, medasdigital_1.default, meme_1.default, migaloo_1.default, milkyway_1.default, neutaro_1.default, neutron_1.default, nibiru_1.default, nillion_1.default, nim_1.default, noble_1.default, nolus_1.default, nomic_1.default, nyx_1.default, odin_1.default, okexchain_1.default, omniflixhub_1.default, onex_1.default, onomy_1.default, oraichain_1.default, osmosis_1.default, panacea_1.default, passage_1.default, persistence_1.default, planq_1.default, point_1.default, provenance_1.default, pryzm_1.default, pundix_1.default, pylons_1.default, quasar_1.default, quicksilver_1.default, qwoyn_1.default, realio_1.default, rebus_1.default, regen_1.default, rizon_1.default, routerchain_1.default, saga_1.default, scorum_1.default, secretnetwork_1.default, seda_1.default, sei_1.default, self_1.default, sentinel_1.default, sge_1.default, shareledger_1.default, shentu_1.default, shido_1.default, sidechain_1.default, sifchain_1.default, sommelier_1.default, source_1.default, stafihub_1.default, stargaze_1.default, starname_1.default, stratos_1.default, stride_1.default, synternet_1.default, teritori_1.default, terra_1.default, terra2_1.default, tgrade_1.default, titan_1.default, umee_1.default, unification_1.default, uptick_1.default, xion_1.default, xpla_1.default, zenrock_1.default];
|
|
159
160
|
exports.default = assets;
|
package/mainnet/axelar.js
CHANGED
|
@@ -668,7 +668,7 @@ const assets = {
|
|
|
668
668
|
exponent: 6
|
|
669
669
|
}],
|
|
670
670
|
base: 'ibc/331F1904D36D53358B18AB6E26EFCAFB2156DE56374F947C6781A96CDFE9DBE9',
|
|
671
|
-
name: '
|
|
671
|
+
name: 'BABY',
|
|
672
672
|
display: 'BABY',
|
|
673
673
|
symbol: 'BABY',
|
|
674
674
|
logo_URIs: {
|
|
@@ -677,7 +677,12 @@ const assets = {
|
|
|
677
677
|
images: [{
|
|
678
678
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
679
679
|
}],
|
|
680
|
+
coingecko_id: 'babylon',
|
|
680
681
|
type_asset: 'sdk.coin',
|
|
682
|
+
socials: {
|
|
683
|
+
website: 'https://babylonlabs.io/',
|
|
684
|
+
twitter: 'https://x.com/babylonlabs_io'
|
|
685
|
+
},
|
|
681
686
|
traces: [{
|
|
682
687
|
type: 'ibc',
|
|
683
688
|
counterparty: {
|
|
@@ -8284,7 +8289,7 @@ const assets = {
|
|
|
8284
8289
|
exponent: 6
|
|
8285
8290
|
}],
|
|
8286
8291
|
base: 'ibc/331F1904D36D53358B18AB6E26EFCAFB2156DE56374F947C6781A96CDFE9DBE9',
|
|
8287
|
-
name: '
|
|
8292
|
+
name: 'BABY',
|
|
8288
8293
|
display: 'BABY',
|
|
8289
8294
|
symbol: 'BABY',
|
|
8290
8295
|
logo_URIs: {
|
|
@@ -8293,7 +8298,12 @@ const assets = {
|
|
|
8293
8298
|
images: [{
|
|
8294
8299
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg'
|
|
8295
8300
|
}],
|
|
8301
|
+
coingecko_id: 'babylon',
|
|
8296
8302
|
type_asset: 'sdk.coin',
|
|
8303
|
+
socials: {
|
|
8304
|
+
website: 'https://babylonlabs.io/',
|
|
8305
|
+
twitter: 'https://x.com/babylonlabs_io'
|
|
8306
|
+
},
|
|
8297
8307
|
traces: [{
|
|
8298
8308
|
type: 'ibc',
|
|
8299
8309
|
counterparty: {
|
package/mainnet/babylon.js
CHANGED
|
@@ -132,6 +132,159 @@ const assets = {
|
|
|
132
132
|
}
|
|
133
133
|
}]
|
|
134
134
|
},
|
|
135
|
+
{
|
|
136
|
+
description: 'Neutron is a smart contract blockchain within the Cosmos ecosystem, leveraging the Cosmos Hub\'s security to provide cross-chain DeFi applications.',
|
|
137
|
+
denom_units: [{
|
|
138
|
+
denom: 'ibc/81480F5459963F0E404057DBE46E39D34F3B7684F72F445398DB9C5E48D3E4D7',
|
|
139
|
+
exponent: 0,
|
|
140
|
+
aliases: ['untrn']
|
|
141
|
+
}, {
|
|
142
|
+
denom: 'ntrn',
|
|
143
|
+
exponent: 6
|
|
144
|
+
}],
|
|
145
|
+
base: 'ibc/81480F5459963F0E404057DBE46E39D34F3B7684F72F445398DB9C5E48D3E4D7',
|
|
146
|
+
name: 'Neutron',
|
|
147
|
+
display: 'ntrn',
|
|
148
|
+
symbol: 'NTRN',
|
|
149
|
+
logo_URIs: {
|
|
150
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png',
|
|
151
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg'
|
|
152
|
+
},
|
|
153
|
+
coingecko_id: 'neutron-3',
|
|
154
|
+
images: [{
|
|
155
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png',
|
|
156
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg',
|
|
157
|
+
theme: {
|
|
158
|
+
primary_color_hex: '#040404',
|
|
159
|
+
background_color_hex: '#000000',
|
|
160
|
+
circle: true
|
|
161
|
+
}
|
|
162
|
+
}],
|
|
163
|
+
socials: {
|
|
164
|
+
website: 'https://neutron.org/',
|
|
165
|
+
twitter: 'https://twitter.com/Neutron_org'
|
|
166
|
+
},
|
|
167
|
+
type_asset: 'sdk.coin',
|
|
168
|
+
traces: [{
|
|
169
|
+
type: 'ibc',
|
|
170
|
+
counterparty: {
|
|
171
|
+
channel_id: 'channel-6980',
|
|
172
|
+
base_denom: 'untrn',
|
|
173
|
+
chain_name: 'neutron'
|
|
174
|
+
},
|
|
175
|
+
chain: {
|
|
176
|
+
channel_id: 'channel-5'
|
|
177
|
+
}
|
|
178
|
+
}]
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
description: 'BITCOSMOS',
|
|
182
|
+
denom_units: [{
|
|
183
|
+
denom: 'ibc/25521C2DBF413BDA4B973BD7257E5E724808271FAD815A9A30A37BF73BFA6207',
|
|
184
|
+
exponent: 0,
|
|
185
|
+
aliases: ['neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj']
|
|
186
|
+
}, {
|
|
187
|
+
denom: 'bitcosmos',
|
|
188
|
+
exponent: 6
|
|
189
|
+
}],
|
|
190
|
+
base: 'ibc/25521C2DBF413BDA4B973BD7257E5E724808271FAD815A9A30A37BF73BFA6207',
|
|
191
|
+
name: 'Bitcosmos',
|
|
192
|
+
display: 'bitcosmos',
|
|
193
|
+
symbol: 'BTC',
|
|
194
|
+
logo_URIs: {
|
|
195
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png'
|
|
196
|
+
},
|
|
197
|
+
images: [{
|
|
198
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png',
|
|
199
|
+
theme: {
|
|
200
|
+
primary_color_hex: '#1b0847'
|
|
201
|
+
}
|
|
202
|
+
}],
|
|
203
|
+
type_asset: 'sdk.coin',
|
|
204
|
+
traces: [{
|
|
205
|
+
type: 'ibc',
|
|
206
|
+
counterparty: {
|
|
207
|
+
channel_id: 'channel-6980',
|
|
208
|
+
base_denom: 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj',
|
|
209
|
+
chain_name: 'neutron'
|
|
210
|
+
},
|
|
211
|
+
chain: {
|
|
212
|
+
channel_id: 'channel-5'
|
|
213
|
+
}
|
|
214
|
+
}]
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
description: 'What the Fuck',
|
|
218
|
+
denom_units: [{
|
|
219
|
+
denom: 'ibc/1B375F64BC62FA4F15C04B1FF28C2A6504A157AE7541DED5AF6C3EFC0A137D4A',
|
|
220
|
+
exponent: 0,
|
|
221
|
+
aliases: ['neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf']
|
|
222
|
+
}, {
|
|
223
|
+
denom: 'wtf',
|
|
224
|
+
exponent: 6
|
|
225
|
+
}],
|
|
226
|
+
base: 'ibc/1B375F64BC62FA4F15C04B1FF28C2A6504A157AE7541DED5AF6C3EFC0A137D4A',
|
|
227
|
+
name: 'wtf',
|
|
228
|
+
display: 'wtf',
|
|
229
|
+
symbol: 'WTF',
|
|
230
|
+
logo_URIs: {
|
|
231
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png'
|
|
232
|
+
},
|
|
233
|
+
images: [{
|
|
234
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png',
|
|
235
|
+
theme: {
|
|
236
|
+
primary_color_hex: '#dcd5ab'
|
|
237
|
+
}
|
|
238
|
+
}],
|
|
239
|
+
type_asset: 'sdk.coin',
|
|
240
|
+
traces: [{
|
|
241
|
+
type: 'ibc',
|
|
242
|
+
counterparty: {
|
|
243
|
+
channel_id: 'channel-6980',
|
|
244
|
+
base_denom: 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf',
|
|
245
|
+
chain_name: 'neutron'
|
|
246
|
+
},
|
|
247
|
+
chain: {
|
|
248
|
+
channel_id: 'channel-5'
|
|
249
|
+
}
|
|
250
|
+
}]
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
description: 'Astro BOY',
|
|
254
|
+
denom_units: [{
|
|
255
|
+
denom: 'ibc/027BA247B1906FD5B80B7EBF3F98ABAFCD5246A1B802EC2432F7D76447FA925D',
|
|
256
|
+
exponent: 0,
|
|
257
|
+
aliases: ['neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv']
|
|
258
|
+
}, {
|
|
259
|
+
denom: 'boy',
|
|
260
|
+
exponent: 6
|
|
261
|
+
}],
|
|
262
|
+
base: 'ibc/027BA247B1906FD5B80B7EBF3F98ABAFCD5246A1B802EC2432F7D76447FA925D',
|
|
263
|
+
name: 'boy',
|
|
264
|
+
display: 'boy',
|
|
265
|
+
symbol: 'BOY',
|
|
266
|
+
logo_URIs: {
|
|
267
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png'
|
|
268
|
+
},
|
|
269
|
+
images: [{
|
|
270
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png',
|
|
271
|
+
theme: {
|
|
272
|
+
primary_color_hex: '#333333'
|
|
273
|
+
}
|
|
274
|
+
}],
|
|
275
|
+
type_asset: 'sdk.coin',
|
|
276
|
+
traces: [{
|
|
277
|
+
type: 'ibc',
|
|
278
|
+
counterparty: {
|
|
279
|
+
channel_id: 'channel-6980',
|
|
280
|
+
base_denom: 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv',
|
|
281
|
+
chain_name: 'neutron'
|
|
282
|
+
},
|
|
283
|
+
chain: {
|
|
284
|
+
channel_id: 'channel-5'
|
|
285
|
+
}
|
|
286
|
+
}]
|
|
287
|
+
},
|
|
135
288
|
{
|
|
136
289
|
description: 'The permissioned staking asset for Noble Chain',
|
|
137
290
|
denom_units: [{
|
|
@@ -420,6 +573,159 @@ const assets = {
|
|
|
420
573
|
}
|
|
421
574
|
}]
|
|
422
575
|
},
|
|
576
|
+
{
|
|
577
|
+
description: 'Neutron is a smart contract blockchain within the Cosmos ecosystem, leveraging the Cosmos Hub\'s security to provide cross-chain DeFi applications.',
|
|
578
|
+
denom_units: [{
|
|
579
|
+
denom: 'ibc/81480F5459963F0E404057DBE46E39D34F3B7684F72F445398DB9C5E48D3E4D7',
|
|
580
|
+
exponent: 0,
|
|
581
|
+
aliases: ['untrn']
|
|
582
|
+
}, {
|
|
583
|
+
denom: 'ntrn',
|
|
584
|
+
exponent: 6
|
|
585
|
+
}],
|
|
586
|
+
base: 'ibc/81480F5459963F0E404057DBE46E39D34F3B7684F72F445398DB9C5E48D3E4D7',
|
|
587
|
+
name: 'Neutron',
|
|
588
|
+
display: 'ntrn',
|
|
589
|
+
symbol: 'NTRN',
|
|
590
|
+
logo_URIs: {
|
|
591
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png',
|
|
592
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg'
|
|
593
|
+
},
|
|
594
|
+
coingecko_id: 'neutron-3',
|
|
595
|
+
images: [{
|
|
596
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png',
|
|
597
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg',
|
|
598
|
+
theme: {
|
|
599
|
+
primary_color_hex: '#040404',
|
|
600
|
+
background_color_hex: '#000000',
|
|
601
|
+
circle: true
|
|
602
|
+
}
|
|
603
|
+
}],
|
|
604
|
+
socials: {
|
|
605
|
+
website: 'https://neutron.org/',
|
|
606
|
+
twitter: 'https://twitter.com/Neutron_org'
|
|
607
|
+
},
|
|
608
|
+
type_asset: 'sdk.coin',
|
|
609
|
+
traces: [{
|
|
610
|
+
type: 'ibc',
|
|
611
|
+
counterparty: {
|
|
612
|
+
channel_id: 'channel-6980',
|
|
613
|
+
base_denom: 'untrn',
|
|
614
|
+
chain_name: 'neutron'
|
|
615
|
+
},
|
|
616
|
+
chain: {
|
|
617
|
+
channel_id: 'channel-5'
|
|
618
|
+
}
|
|
619
|
+
}]
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
description: 'BITCOSMOS',
|
|
623
|
+
denom_units: [{
|
|
624
|
+
denom: 'ibc/25521C2DBF413BDA4B973BD7257E5E724808271FAD815A9A30A37BF73BFA6207',
|
|
625
|
+
exponent: 0,
|
|
626
|
+
aliases: ['neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj']
|
|
627
|
+
}, {
|
|
628
|
+
denom: 'bitcosmos',
|
|
629
|
+
exponent: 6
|
|
630
|
+
}],
|
|
631
|
+
base: 'ibc/25521C2DBF413BDA4B973BD7257E5E724808271FAD815A9A30A37BF73BFA6207',
|
|
632
|
+
name: 'Bitcosmos',
|
|
633
|
+
display: 'bitcosmos',
|
|
634
|
+
symbol: 'BTC',
|
|
635
|
+
logo_URIs: {
|
|
636
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png'
|
|
637
|
+
},
|
|
638
|
+
images: [{
|
|
639
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png',
|
|
640
|
+
theme: {
|
|
641
|
+
primary_color_hex: '#1b0847'
|
|
642
|
+
}
|
|
643
|
+
}],
|
|
644
|
+
type_asset: 'sdk.coin',
|
|
645
|
+
traces: [{
|
|
646
|
+
type: 'ibc',
|
|
647
|
+
counterparty: {
|
|
648
|
+
channel_id: 'channel-6980',
|
|
649
|
+
base_denom: 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj',
|
|
650
|
+
chain_name: 'neutron'
|
|
651
|
+
},
|
|
652
|
+
chain: {
|
|
653
|
+
channel_id: 'channel-5'
|
|
654
|
+
}
|
|
655
|
+
}]
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
description: 'What the Fuck',
|
|
659
|
+
denom_units: [{
|
|
660
|
+
denom: 'ibc/1B375F64BC62FA4F15C04B1FF28C2A6504A157AE7541DED5AF6C3EFC0A137D4A',
|
|
661
|
+
exponent: 0,
|
|
662
|
+
aliases: ['neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf']
|
|
663
|
+
}, {
|
|
664
|
+
denom: 'wtf',
|
|
665
|
+
exponent: 6
|
|
666
|
+
}],
|
|
667
|
+
base: 'ibc/1B375F64BC62FA4F15C04B1FF28C2A6504A157AE7541DED5AF6C3EFC0A137D4A',
|
|
668
|
+
name: 'wtf',
|
|
669
|
+
display: 'wtf',
|
|
670
|
+
symbol: 'WTF',
|
|
671
|
+
logo_URIs: {
|
|
672
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png'
|
|
673
|
+
},
|
|
674
|
+
images: [{
|
|
675
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png',
|
|
676
|
+
theme: {
|
|
677
|
+
primary_color_hex: '#dcd5ab'
|
|
678
|
+
}
|
|
679
|
+
}],
|
|
680
|
+
type_asset: 'sdk.coin',
|
|
681
|
+
traces: [{
|
|
682
|
+
type: 'ibc',
|
|
683
|
+
counterparty: {
|
|
684
|
+
channel_id: 'channel-6980',
|
|
685
|
+
base_denom: 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf',
|
|
686
|
+
chain_name: 'neutron'
|
|
687
|
+
},
|
|
688
|
+
chain: {
|
|
689
|
+
channel_id: 'channel-5'
|
|
690
|
+
}
|
|
691
|
+
}]
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
description: 'Astro BOY',
|
|
695
|
+
denom_units: [{
|
|
696
|
+
denom: 'ibc/027BA247B1906FD5B80B7EBF3F98ABAFCD5246A1B802EC2432F7D76447FA925D',
|
|
697
|
+
exponent: 0,
|
|
698
|
+
aliases: ['neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv']
|
|
699
|
+
}, {
|
|
700
|
+
denom: 'boy',
|
|
701
|
+
exponent: 6
|
|
702
|
+
}],
|
|
703
|
+
base: 'ibc/027BA247B1906FD5B80B7EBF3F98ABAFCD5246A1B802EC2432F7D76447FA925D',
|
|
704
|
+
name: 'boy',
|
|
705
|
+
display: 'boy',
|
|
706
|
+
symbol: 'BOY',
|
|
707
|
+
logo_URIs: {
|
|
708
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png'
|
|
709
|
+
},
|
|
710
|
+
images: [{
|
|
711
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png',
|
|
712
|
+
theme: {
|
|
713
|
+
primary_color_hex: '#333333'
|
|
714
|
+
}
|
|
715
|
+
}],
|
|
716
|
+
type_asset: 'sdk.coin',
|
|
717
|
+
traces: [{
|
|
718
|
+
type: 'ibc',
|
|
719
|
+
counterparty: {
|
|
720
|
+
channel_id: 'channel-6980',
|
|
721
|
+
base_denom: 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv',
|
|
722
|
+
chain_name: 'neutron'
|
|
723
|
+
},
|
|
724
|
+
chain: {
|
|
725
|
+
channel_id: 'channel-5'
|
|
726
|
+
}
|
|
727
|
+
}]
|
|
728
|
+
},
|
|
423
729
|
{
|
|
424
730
|
description: 'The permissioned staking asset for Noble Chain',
|
|
425
731
|
denom_units: [{
|