@chain-registry/assets 1.63.5 → 1.63.7
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 +8 -0
- package/esm/mainnet/cosmoshub.js +70 -0
- package/esm/mainnet/index.js +1 -0
- package/esm/mainnet/joltify.js +288 -0
- package/esm/mainnet/noble.js +78 -0
- package/esm/mainnet/osmosis.js +8 -0
- package/esm/testnet/assets.js +2 -1
- package/esm/testnet/index.js +1 -0
- package/esm/testnet/jackaltestnet2.js +69 -0
- package/index.d.ts +1 -1
- package/mainnet/assets.js +2 -1
- package/mainnet/axelar.js +8 -0
- package/mainnet/cosmoshub.js +70 -0
- package/mainnet/index.d.ts +1 -0
- package/mainnet/index.js +3 -2
- package/mainnet/joltify.d.ts +3 -0
- package/mainnet/joltify.js +290 -0
- package/mainnet/noble.js +78 -0
- package/mainnet/osmosis.js +8 -0
- package/package.json +5 -5
- package/testnet/assets.js +2 -1
- package/testnet/index.d.ts +1 -0
- package/testnet/index.js +2 -1
- package/testnet/jackaltestnet2.d.ts +3 -0
- package/testnet/jackaltestnet2.js +71 -0
package/esm/mainnet/assets.js
CHANGED
|
@@ -59,6 +59,7 @@ import _imversed from './imversed';
|
|
|
59
59
|
import _injective from './injective';
|
|
60
60
|
import _irisnet from './irisnet';
|
|
61
61
|
import _jackal from './jackal';
|
|
62
|
+
import _joltify from './joltify';
|
|
62
63
|
import _juno from './juno';
|
|
63
64
|
import _kava from './kava';
|
|
64
65
|
import _kichain from './kichain';
|
|
@@ -131,5 +132,5 @@ import _unification from './unification';
|
|
|
131
132
|
import _uptick from './uptick';
|
|
132
133
|
import _vidulum from './vidulum';
|
|
133
134
|
import _xpla from './xpla';
|
|
134
|
-
const assets = [_8ball, _acrechain, _agoric, _aioz, _akash, _andromeda, _archway, _arkh, _assetmantle, _aura, _axelar, _bandchain, _beezee, _bitcanna, _bitsong, _bluzelle, _bostrom, _canto, _carbon, _celestia, _cerberus, _chain4energy, _cheqd, _chihuahua, _cifer, _comdex, _composable, _conscious, _coreum, _cosmoshub, _crescent, _cronos, _cryptoorgchain, _cudos, _decentr, _desmos, _dhealth, _dig, _doravota, _dydx, _dymension, _dyson, _echelon, _emoney, _empowerchain, _evmos, _fetchhub, _furya, _fxcore, _galaxy, _gateway, _genesisl1, _gitopia, _gravitybridge, _haqq, _humans, _impacthub, _imversed, _injective, _irisnet, _jackal, _juno, _kava, _kichain, _konstellation, _kujira, _kyve, _lambda, _likecoin, _lumenx, _lumnetwork, _mars, _medasdigital, _meme, _microtick, _migaloo, _neutron, _nibiru, _nim, _noble, _nois, _nolus, _nomic, _nyx, _odin, _okexchain, _omniflixhub, _onex, _onomy, _oraichain, _osmosis, _panacea, _passage, _persistence, _planq, _point, _provenance, _pryzm, _pundix, _pylons, _quasar, _quicksilver, _qwoyn, _realio, _rebus, _regen, _rizon, _saga, _scorum, _secretnetwork, _seda, _sei, _sentinel, _sge, _shareledger, _shentu, _shido, _sifchain, _sommelier, _source, _stafihub, _stargaze, _starname, _stride, _teritori, _terra, _terra2, _tgrade, _umee, _unification, _uptick, _vidulum, _xpla];
|
|
135
|
+
const assets = [_8ball, _acrechain, _agoric, _aioz, _akash, _andromeda, _archway, _arkh, _assetmantle, _aura, _axelar, _bandchain, _beezee, _bitcanna, _bitsong, _bluzelle, _bostrom, _canto, _carbon, _celestia, _cerberus, _chain4energy, _cheqd, _chihuahua, _cifer, _comdex, _composable, _conscious, _coreum, _cosmoshub, _crescent, _cronos, _cryptoorgchain, _cudos, _decentr, _desmos, _dhealth, _dig, _doravota, _dydx, _dymension, _dyson, _echelon, _emoney, _empowerchain, _evmos, _fetchhub, _furya, _fxcore, _galaxy, _gateway, _genesisl1, _gitopia, _gravitybridge, _haqq, _humans, _impacthub, _imversed, _injective, _irisnet, _jackal, _joltify, _juno, _kava, _kichain, _konstellation, _kujira, _kyve, _lambda, _likecoin, _lumenx, _lumnetwork, _mars, _medasdigital, _meme, _microtick, _migaloo, _neutron, _nibiru, _nim, _noble, _nois, _nolus, _nomic, _nyx, _odin, _okexchain, _omniflixhub, _onex, _onomy, _oraichain, _osmosis, _panacea, _passage, _persistence, _planq, _point, _provenance, _pryzm, _pundix, _pylons, _quasar, _quicksilver, _qwoyn, _realio, _rebus, _regen, _rizon, _saga, _scorum, _secretnetwork, _seda, _sei, _sentinel, _sge, _shareledger, _shentu, _shido, _sifchain, _sommelier, _source, _stafihub, _stargaze, _starname, _stride, _teritori, _terra, _terra2, _tgrade, _umee, _unification, _uptick, _vidulum, _xpla];
|
|
135
136
|
export default assets;
|
package/esm/mainnet/axelar.js
CHANGED
|
@@ -1709,6 +1709,10 @@ const assets = {
|
|
|
1709
1709
|
},
|
|
1710
1710
|
{
|
|
1711
1711
|
description: 'The native token of Nibiru network',
|
|
1712
|
+
socials: {
|
|
1713
|
+
website: 'https://nibiru.fi',
|
|
1714
|
+
twitter: 'https://twitter.com/nibiruchain'
|
|
1715
|
+
},
|
|
1712
1716
|
denom_units: [{
|
|
1713
1717
|
denom: 'ibc/52C9B73B0D9665A4FA1E973B001A83FCFF3B6062E44B564230D20536F1103112',
|
|
1714
1718
|
exponent: 0,
|
|
@@ -3649,6 +3653,10 @@ const assets = {
|
|
|
3649
3653
|
},
|
|
3650
3654
|
{
|
|
3651
3655
|
description: 'The native token of Nibiru network',
|
|
3656
|
+
socials: {
|
|
3657
|
+
website: 'https://nibiru.fi',
|
|
3658
|
+
twitter: 'https://twitter.com/nibiruchain'
|
|
3659
|
+
},
|
|
3652
3660
|
denom_units: [{
|
|
3653
3661
|
denom: 'ibc/52C9B73B0D9665A4FA1E973B001A83FCFF3B6062E44B564230D20536F1103112',
|
|
3654
3662
|
exponent: 0,
|
package/esm/mainnet/cosmoshub.js
CHANGED
|
@@ -2297,6 +2297,41 @@ const assets = {
|
|
|
2297
2297
|
}
|
|
2298
2298
|
}]
|
|
2299
2299
|
},
|
|
2300
|
+
{
|
|
2301
|
+
description: 'The native staking and governance token of Joltify',
|
|
2302
|
+
denom_units: [{
|
|
2303
|
+
denom: 'ibc/9B76DFC21CF8F4DF5B8514CE82D2CCE79415C4F8525E04509BB48B487CB213DE',
|
|
2304
|
+
exponent: 0,
|
|
2305
|
+
aliases: ['ujolt']
|
|
2306
|
+
}, {
|
|
2307
|
+
denom: 'jolt',
|
|
2308
|
+
exponent: 6
|
|
2309
|
+
}],
|
|
2310
|
+
base: 'ibc/9B76DFC21CF8F4DF5B8514CE82D2CCE79415C4F8525E04509BB48B487CB213DE',
|
|
2311
|
+
name: 'Joltify',
|
|
2312
|
+
display: 'jolt',
|
|
2313
|
+
symbol: 'JOLT',
|
|
2314
|
+
images: [{
|
|
2315
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/joltify/images/jolt.png'
|
|
2316
|
+
}],
|
|
2317
|
+
coingecko_id: 'joltify',
|
|
2318
|
+
keywords: ['staking'],
|
|
2319
|
+
socials: {
|
|
2320
|
+
website: 'https://www.joltify.io/',
|
|
2321
|
+
twitter: 'https://twitter.com/joltify_finance'
|
|
2322
|
+
},
|
|
2323
|
+
traces: [{
|
|
2324
|
+
type: 'ibc',
|
|
2325
|
+
counterparty: {
|
|
2326
|
+
channel_id: 'channel-2',
|
|
2327
|
+
base_denom: 'ujolt',
|
|
2328
|
+
chain_name: 'joltify'
|
|
2329
|
+
},
|
|
2330
|
+
chain: {
|
|
2331
|
+
channel_id: 'channel-866'
|
|
2332
|
+
}
|
|
2333
|
+
}]
|
|
2334
|
+
},
|
|
2300
2335
|
{
|
|
2301
2336
|
description: 'The native token of JUNO Chain',
|
|
2302
2337
|
denom_units: [{
|
|
@@ -4859,6 +4894,41 @@ const assets = {
|
|
|
4859
4894
|
}
|
|
4860
4895
|
}]
|
|
4861
4896
|
},
|
|
4897
|
+
{
|
|
4898
|
+
description: 'The native staking and governance token of Joltify',
|
|
4899
|
+
denom_units: [{
|
|
4900
|
+
denom: 'ibc/9B76DFC21CF8F4DF5B8514CE82D2CCE79415C4F8525E04509BB48B487CB213DE',
|
|
4901
|
+
exponent: 0,
|
|
4902
|
+
aliases: ['ujolt']
|
|
4903
|
+
}, {
|
|
4904
|
+
denom: 'jolt',
|
|
4905
|
+
exponent: 6
|
|
4906
|
+
}],
|
|
4907
|
+
base: 'ibc/9B76DFC21CF8F4DF5B8514CE82D2CCE79415C4F8525E04509BB48B487CB213DE',
|
|
4908
|
+
name: 'Joltify',
|
|
4909
|
+
display: 'jolt',
|
|
4910
|
+
symbol: 'JOLT',
|
|
4911
|
+
images: [{
|
|
4912
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/joltify/images/jolt.png'
|
|
4913
|
+
}],
|
|
4914
|
+
coingecko_id: 'joltify',
|
|
4915
|
+
keywords: ['staking'],
|
|
4916
|
+
socials: {
|
|
4917
|
+
website: 'https://www.joltify.io/',
|
|
4918
|
+
twitter: 'https://twitter.com/joltify_finance'
|
|
4919
|
+
},
|
|
4920
|
+
traces: [{
|
|
4921
|
+
type: 'ibc',
|
|
4922
|
+
counterparty: {
|
|
4923
|
+
channel_id: 'channel-2',
|
|
4924
|
+
base_denom: 'ujolt',
|
|
4925
|
+
chain_name: 'joltify'
|
|
4926
|
+
},
|
|
4927
|
+
chain: {
|
|
4928
|
+
channel_id: 'channel-866'
|
|
4929
|
+
}
|
|
4930
|
+
}]
|
|
4931
|
+
},
|
|
4862
4932
|
{
|
|
4863
4933
|
description: 'The native token of JUNO Chain',
|
|
4864
4934
|
denom_units: [{
|
package/esm/mainnet/index.js
CHANGED
|
@@ -59,6 +59,7 @@ export * as imversed from './imversed';
|
|
|
59
59
|
export * as injective from './injective';
|
|
60
60
|
export * as irisnet from './irisnet';
|
|
61
61
|
export * as jackal from './jackal';
|
|
62
|
+
export * as joltify from './joltify';
|
|
62
63
|
export * as juno from './juno';
|
|
63
64
|
export * as kava from './kava';
|
|
64
65
|
export * as kichain from './kichain';
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
const assets = {
|
|
2
|
+
chain_name: 'joltify',
|
|
3
|
+
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'The native staking and governance token of the Cosmos Hub.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['uatom']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'atom',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E',
|
|
15
|
+
name: 'Cosmos Hub Atom',
|
|
16
|
+
display: 'atom',
|
|
17
|
+
symbol: 'ATOM',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
21
|
+
},
|
|
22
|
+
coingecko_id: 'cosmos',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
26
|
+
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://cosmos.network',
|
|
29
|
+
twitter: 'https://twitter.com/cosmoshub'
|
|
30
|
+
},
|
|
31
|
+
traces: [{
|
|
32
|
+
type: 'ibc',
|
|
33
|
+
counterparty: {
|
|
34
|
+
channel_id: 'channel-866',
|
|
35
|
+
base_denom: 'uatom',
|
|
36
|
+
chain_name: 'cosmoshub'
|
|
37
|
+
},
|
|
38
|
+
chain: {
|
|
39
|
+
channel_id: 'channel-2'
|
|
40
|
+
}
|
|
41
|
+
}]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
description: 'The native staking and governance token of the Cosmos Hub.',
|
|
45
|
+
denom_units: [{
|
|
46
|
+
denom: 'ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E',
|
|
47
|
+
exponent: 0,
|
|
48
|
+
aliases: ['uatom']
|
|
49
|
+
}, {
|
|
50
|
+
denom: 'atom',
|
|
51
|
+
exponent: 6
|
|
52
|
+
}],
|
|
53
|
+
base: 'ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E',
|
|
54
|
+
name: 'Cosmos Hub Atom',
|
|
55
|
+
display: 'atom',
|
|
56
|
+
symbol: 'ATOM',
|
|
57
|
+
logo_URIs: {
|
|
58
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
59
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
60
|
+
},
|
|
61
|
+
coingecko_id: 'cosmos',
|
|
62
|
+
images: [{
|
|
63
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
64
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
65
|
+
}],
|
|
66
|
+
socials: {
|
|
67
|
+
website: 'https://cosmos.network',
|
|
68
|
+
twitter: 'https://twitter.com/cosmoshub'
|
|
69
|
+
},
|
|
70
|
+
traces: [{
|
|
71
|
+
type: 'ibc',
|
|
72
|
+
counterparty: {
|
|
73
|
+
channel_id: 'channel-866',
|
|
74
|
+
base_denom: 'uatom',
|
|
75
|
+
chain_name: 'cosmoshub'
|
|
76
|
+
},
|
|
77
|
+
chain: {
|
|
78
|
+
channel_id: 'channel-2'
|
|
79
|
+
}
|
|
80
|
+
}]
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
description: 'The permissioned staking asset for Noble Chain',
|
|
84
|
+
denom_units: [{
|
|
85
|
+
denom: 'ibc/6A61F05E85E8EED6B50B6F197E70001A297962BF646549BF4B99DD77E81D52DB',
|
|
86
|
+
exponent: 0,
|
|
87
|
+
aliases: ['ustake']
|
|
88
|
+
}, {
|
|
89
|
+
denom: 'stake',
|
|
90
|
+
exponent: 6
|
|
91
|
+
}],
|
|
92
|
+
base: 'ibc/6A61F05E85E8EED6B50B6F197E70001A297962BF646549BF4B99DD77E81D52DB',
|
|
93
|
+
name: 'Stake',
|
|
94
|
+
display: 'stake',
|
|
95
|
+
symbol: 'STAKE',
|
|
96
|
+
logo_URIs: {
|
|
97
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png',
|
|
98
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg'
|
|
99
|
+
},
|
|
100
|
+
images: [{
|
|
101
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png',
|
|
102
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg'
|
|
103
|
+
}],
|
|
104
|
+
traces: [{
|
|
105
|
+
type: 'ibc',
|
|
106
|
+
counterparty: {
|
|
107
|
+
channel_id: 'channel-81',
|
|
108
|
+
base_denom: 'ustake',
|
|
109
|
+
chain_name: 'noble'
|
|
110
|
+
},
|
|
111
|
+
chain: {
|
|
112
|
+
channel_id: 'channel-1'
|
|
113
|
+
}
|
|
114
|
+
}]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
description: 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.',
|
|
118
|
+
denom_units: [{
|
|
119
|
+
denom: 'ibc/AE8475CF1E64C5EC37897E8C1DA8339BD046EFF42BEC7D840359DE66084F1CCD',
|
|
120
|
+
exponent: 0,
|
|
121
|
+
aliases: ['ufrienzies']
|
|
122
|
+
}, {
|
|
123
|
+
denom: 'frienzies',
|
|
124
|
+
exponent: 6
|
|
125
|
+
}],
|
|
126
|
+
base: 'ibc/AE8475CF1E64C5EC37897E8C1DA8339BD046EFF42BEC7D840359DE66084F1CCD',
|
|
127
|
+
display: 'frienzies',
|
|
128
|
+
name: 'Frienzies',
|
|
129
|
+
symbol: 'FRNZ',
|
|
130
|
+
logo_URIs: {
|
|
131
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png',
|
|
132
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg'
|
|
133
|
+
},
|
|
134
|
+
images: [{
|
|
135
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png',
|
|
136
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg'
|
|
137
|
+
}],
|
|
138
|
+
traces: [{
|
|
139
|
+
type: 'ibc',
|
|
140
|
+
counterparty: {
|
|
141
|
+
channel_id: 'channel-81',
|
|
142
|
+
base_denom: 'ufrienzies',
|
|
143
|
+
chain_name: 'noble'
|
|
144
|
+
},
|
|
145
|
+
chain: {
|
|
146
|
+
channel_id: 'channel-1'
|
|
147
|
+
}
|
|
148
|
+
}]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
description: 'USDLR is a fiat-backed stablecoin issued by Stable. Stable pays DeFi protocols who distribute USDLR.',
|
|
152
|
+
denom_units: [{
|
|
153
|
+
denom: 'ibc/128B2D3B75F7FFBF545F14EEBEF2A508773FC066995EB034B79B5A65A7F1CEF2',
|
|
154
|
+
exponent: 0,
|
|
155
|
+
aliases: ['uusdlr']
|
|
156
|
+
}, {
|
|
157
|
+
denom: 'usdlr',
|
|
158
|
+
exponent: 6
|
|
159
|
+
}],
|
|
160
|
+
base: 'ibc/128B2D3B75F7FFBF545F14EEBEF2A508773FC066995EB034B79B5A65A7F1CEF2',
|
|
161
|
+
display: 'usdlr',
|
|
162
|
+
name: 'USDLR by Stable',
|
|
163
|
+
symbol: 'USDLR',
|
|
164
|
+
logo_URIs: {
|
|
165
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png',
|
|
166
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg'
|
|
167
|
+
},
|
|
168
|
+
images: [{
|
|
169
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png',
|
|
170
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg'
|
|
171
|
+
}],
|
|
172
|
+
traces: [{
|
|
173
|
+
type: 'ibc',
|
|
174
|
+
counterparty: {
|
|
175
|
+
channel_id: 'channel-81',
|
|
176
|
+
base_denom: 'uusdlr',
|
|
177
|
+
chain_name: 'noble'
|
|
178
|
+
},
|
|
179
|
+
chain: {
|
|
180
|
+
channel_id: 'channel-1'
|
|
181
|
+
}
|
|
182
|
+
}]
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
description: 'The permissioned staking asset for Noble Chain',
|
|
186
|
+
denom_units: [{
|
|
187
|
+
denom: 'ibc/6A61F05E85E8EED6B50B6F197E70001A297962BF646549BF4B99DD77E81D52DB',
|
|
188
|
+
exponent: 0,
|
|
189
|
+
aliases: ['ustake']
|
|
190
|
+
}, {
|
|
191
|
+
denom: 'stake',
|
|
192
|
+
exponent: 6
|
|
193
|
+
}],
|
|
194
|
+
base: 'ibc/6A61F05E85E8EED6B50B6F197E70001A297962BF646549BF4B99DD77E81D52DB',
|
|
195
|
+
name: 'Stake',
|
|
196
|
+
display: 'stake',
|
|
197
|
+
symbol: 'STAKE',
|
|
198
|
+
logo_URIs: {
|
|
199
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png',
|
|
200
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg'
|
|
201
|
+
},
|
|
202
|
+
images: [{
|
|
203
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png',
|
|
204
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg'
|
|
205
|
+
}],
|
|
206
|
+
traces: [{
|
|
207
|
+
type: 'ibc',
|
|
208
|
+
counterparty: {
|
|
209
|
+
channel_id: 'channel-81',
|
|
210
|
+
base_denom: 'ustake',
|
|
211
|
+
chain_name: 'noble'
|
|
212
|
+
},
|
|
213
|
+
chain: {
|
|
214
|
+
channel_id: 'channel-1'
|
|
215
|
+
}
|
|
216
|
+
}]
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
description: 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.',
|
|
220
|
+
denom_units: [{
|
|
221
|
+
denom: 'ibc/AE8475CF1E64C5EC37897E8C1DA8339BD046EFF42BEC7D840359DE66084F1CCD',
|
|
222
|
+
exponent: 0,
|
|
223
|
+
aliases: ['ufrienzies']
|
|
224
|
+
}, {
|
|
225
|
+
denom: 'frienzies',
|
|
226
|
+
exponent: 6
|
|
227
|
+
}],
|
|
228
|
+
base: 'ibc/AE8475CF1E64C5EC37897E8C1DA8339BD046EFF42BEC7D840359DE66084F1CCD',
|
|
229
|
+
display: 'frienzies',
|
|
230
|
+
name: 'Frienzies',
|
|
231
|
+
symbol: 'FRNZ',
|
|
232
|
+
logo_URIs: {
|
|
233
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png',
|
|
234
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg'
|
|
235
|
+
},
|
|
236
|
+
images: [{
|
|
237
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png',
|
|
238
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg'
|
|
239
|
+
}],
|
|
240
|
+
traces: [{
|
|
241
|
+
type: 'ibc',
|
|
242
|
+
counterparty: {
|
|
243
|
+
channel_id: 'channel-81',
|
|
244
|
+
base_denom: 'ufrienzies',
|
|
245
|
+
chain_name: 'noble'
|
|
246
|
+
},
|
|
247
|
+
chain: {
|
|
248
|
+
channel_id: 'channel-1'
|
|
249
|
+
}
|
|
250
|
+
}]
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
description: 'USDLR is a fiat-backed stablecoin issued by Stable. Stable pays DeFi protocols who distribute USDLR.',
|
|
254
|
+
denom_units: [{
|
|
255
|
+
denom: 'ibc/128B2D3B75F7FFBF545F14EEBEF2A508773FC066995EB034B79B5A65A7F1CEF2',
|
|
256
|
+
exponent: 0,
|
|
257
|
+
aliases: ['uusdlr']
|
|
258
|
+
}, {
|
|
259
|
+
denom: 'usdlr',
|
|
260
|
+
exponent: 6
|
|
261
|
+
}],
|
|
262
|
+
base: 'ibc/128B2D3B75F7FFBF545F14EEBEF2A508773FC066995EB034B79B5A65A7F1CEF2',
|
|
263
|
+
display: 'usdlr',
|
|
264
|
+
name: 'USDLR by Stable',
|
|
265
|
+
symbol: 'USDLR',
|
|
266
|
+
logo_URIs: {
|
|
267
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png',
|
|
268
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg'
|
|
269
|
+
},
|
|
270
|
+
images: [{
|
|
271
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png',
|
|
272
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg'
|
|
273
|
+
}],
|
|
274
|
+
traces: [{
|
|
275
|
+
type: 'ibc',
|
|
276
|
+
counterparty: {
|
|
277
|
+
channel_id: 'channel-81',
|
|
278
|
+
base_denom: 'uusdlr',
|
|
279
|
+
chain_name: 'noble'
|
|
280
|
+
},
|
|
281
|
+
chain: {
|
|
282
|
+
channel_id: 'channel-1'
|
|
283
|
+
}
|
|
284
|
+
}]
|
|
285
|
+
}
|
|
286
|
+
]
|
|
287
|
+
};
|
|
288
|
+
export default assets;
|
package/esm/mainnet/noble.js
CHANGED
|
@@ -905,6 +905,41 @@ const assets = {
|
|
|
905
905
|
}
|
|
906
906
|
}]
|
|
907
907
|
},
|
|
908
|
+
{
|
|
909
|
+
description: 'The native staking and governance token of Joltify',
|
|
910
|
+
denom_units: [{
|
|
911
|
+
denom: 'ibc/65EA348F02942489EDA268CF050DBD03F1842C97C60DB2F598F54CAAFC90FF0F',
|
|
912
|
+
exponent: 0,
|
|
913
|
+
aliases: ['ujolt']
|
|
914
|
+
}, {
|
|
915
|
+
denom: 'jolt',
|
|
916
|
+
exponent: 6
|
|
917
|
+
}],
|
|
918
|
+
base: 'ibc/65EA348F02942489EDA268CF050DBD03F1842C97C60DB2F598F54CAAFC90FF0F',
|
|
919
|
+
name: 'Joltify',
|
|
920
|
+
display: 'jolt',
|
|
921
|
+
symbol: 'JOLT',
|
|
922
|
+
images: [{
|
|
923
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/joltify/images/jolt.png'
|
|
924
|
+
}],
|
|
925
|
+
coingecko_id: 'joltify',
|
|
926
|
+
keywords: ['staking'],
|
|
927
|
+
socials: {
|
|
928
|
+
website: 'https://www.joltify.io/',
|
|
929
|
+
twitter: 'https://twitter.com/joltify_finance'
|
|
930
|
+
},
|
|
931
|
+
traces: [{
|
|
932
|
+
type: 'ibc',
|
|
933
|
+
counterparty: {
|
|
934
|
+
channel_id: 'channel-1',
|
|
935
|
+
base_denom: 'ujolt',
|
|
936
|
+
chain_name: 'joltify'
|
|
937
|
+
},
|
|
938
|
+
chain: {
|
|
939
|
+
channel_id: 'channel-81'
|
|
940
|
+
}
|
|
941
|
+
}]
|
|
942
|
+
},
|
|
908
943
|
{
|
|
909
944
|
description: 'The native token of JUNO Chain',
|
|
910
945
|
denom_units: [{
|
|
@@ -1155,6 +1190,10 @@ const assets = {
|
|
|
1155
1190
|
},
|
|
1156
1191
|
{
|
|
1157
1192
|
description: 'The native token of Nibiru network',
|
|
1193
|
+
socials: {
|
|
1194
|
+
website: 'https://nibiru.fi',
|
|
1195
|
+
twitter: 'https://twitter.com/nibiruchain'
|
|
1196
|
+
},
|
|
1158
1197
|
denom_units: [{
|
|
1159
1198
|
denom: 'ibc/A77035AF12BBB11C0340BE804798C4B49F5332EA8C7523F471850C202C0742C5',
|
|
1160
1199
|
exponent: 0,
|
|
@@ -2161,6 +2200,41 @@ const assets = {
|
|
|
2161
2200
|
}
|
|
2162
2201
|
}]
|
|
2163
2202
|
},
|
|
2203
|
+
{
|
|
2204
|
+
description: 'The native staking and governance token of Joltify',
|
|
2205
|
+
denom_units: [{
|
|
2206
|
+
denom: 'ibc/65EA348F02942489EDA268CF050DBD03F1842C97C60DB2F598F54CAAFC90FF0F',
|
|
2207
|
+
exponent: 0,
|
|
2208
|
+
aliases: ['ujolt']
|
|
2209
|
+
}, {
|
|
2210
|
+
denom: 'jolt',
|
|
2211
|
+
exponent: 6
|
|
2212
|
+
}],
|
|
2213
|
+
base: 'ibc/65EA348F02942489EDA268CF050DBD03F1842C97C60DB2F598F54CAAFC90FF0F',
|
|
2214
|
+
name: 'Joltify',
|
|
2215
|
+
display: 'jolt',
|
|
2216
|
+
symbol: 'JOLT',
|
|
2217
|
+
images: [{
|
|
2218
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/joltify/images/jolt.png'
|
|
2219
|
+
}],
|
|
2220
|
+
coingecko_id: 'joltify',
|
|
2221
|
+
keywords: ['staking'],
|
|
2222
|
+
socials: {
|
|
2223
|
+
website: 'https://www.joltify.io/',
|
|
2224
|
+
twitter: 'https://twitter.com/joltify_finance'
|
|
2225
|
+
},
|
|
2226
|
+
traces: [{
|
|
2227
|
+
type: 'ibc',
|
|
2228
|
+
counterparty: {
|
|
2229
|
+
channel_id: 'channel-1',
|
|
2230
|
+
base_denom: 'ujolt',
|
|
2231
|
+
chain_name: 'joltify'
|
|
2232
|
+
},
|
|
2233
|
+
chain: {
|
|
2234
|
+
channel_id: 'channel-81'
|
|
2235
|
+
}
|
|
2236
|
+
}]
|
|
2237
|
+
},
|
|
2164
2238
|
{
|
|
2165
2239
|
description: 'The native token of JUNO Chain',
|
|
2166
2240
|
denom_units: [{
|
|
@@ -2411,6 +2485,10 @@ const assets = {
|
|
|
2411
2485
|
},
|
|
2412
2486
|
{
|
|
2413
2487
|
description: 'The native token of Nibiru network',
|
|
2488
|
+
socials: {
|
|
2489
|
+
website: 'https://nibiru.fi',
|
|
2490
|
+
twitter: 'https://twitter.com/nibiruchain'
|
|
2491
|
+
},
|
|
2414
2492
|
denom_units: [{
|
|
2415
2493
|
denom: 'ibc/A77035AF12BBB11C0340BE804798C4B49F5332EA8C7523F471850C202C0742C5',
|
|
2416
2494
|
exponent: 0,
|
package/esm/mainnet/osmosis.js
CHANGED
|
@@ -4032,6 +4032,10 @@ const assets = {
|
|
|
4032
4032
|
},
|
|
4033
4033
|
{
|
|
4034
4034
|
description: 'The native token of Nibiru network',
|
|
4035
|
+
socials: {
|
|
4036
|
+
website: 'https://nibiru.fi',
|
|
4037
|
+
twitter: 'https://twitter.com/nibiruchain'
|
|
4038
|
+
},
|
|
4035
4039
|
denom_units: [{
|
|
4036
4040
|
denom: 'ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF',
|
|
4037
4041
|
exponent: 0,
|
|
@@ -8724,6 +8728,10 @@ const assets = {
|
|
|
8724
8728
|
},
|
|
8725
8729
|
{
|
|
8726
8730
|
description: 'The native token of Nibiru network',
|
|
8731
|
+
socials: {
|
|
8732
|
+
website: 'https://nibiru.fi',
|
|
8733
|
+
twitter: 'https://twitter.com/nibiruchain'
|
|
8734
|
+
},
|
|
8727
8735
|
denom_units: [{
|
|
8728
8736
|
denom: 'ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF',
|
|
8729
8737
|
exponent: 0,
|
package/esm/testnet/assets.js
CHANGED
|
@@ -13,6 +13,7 @@ import _empowertestnet from './empowertestnet';
|
|
|
13
13
|
import _entrypointtestnet from './entrypointtestnet';
|
|
14
14
|
import _impacthubtestnet from './impacthubtestnet';
|
|
15
15
|
import _injectivetestnet from './injectivetestnet';
|
|
16
|
+
import _jackaltestnet2 from './jackaltestnet2';
|
|
16
17
|
import _junotestnet from './junotestnet';
|
|
17
18
|
import _kujiratestnet from './kujiratestnet';
|
|
18
19
|
import _kyvetestnet from './kyvetestnet';
|
|
@@ -34,5 +35,5 @@ import _stargazetestnet from './stargazetestnet';
|
|
|
34
35
|
import _terra2testnet from './terra2testnet';
|
|
35
36
|
import _titantestnet from './titantestnet';
|
|
36
37
|
import _xiontestnet from './xiontestnet';
|
|
37
|
-
const assets = [_akashtestnet, _archwaytestnet, _axelartestnet, _celestiatestnet3, _chain4energytestnet, _composabletestnet, _coreumtestnet, _cosmoshubtestnet, _doravotatestnet, _dydxtestnet, _elystestnet, _empowertestnet, _entrypointtestnet, _impacthubtestnet, _injectivetestnet, _junotestnet, _kujiratestnet, _kyvetestnet, _lavatestnet, _likecointestnet, _mantrachaintestnet, _marstestnet, _neutrontestnet, _nobletestnet, _noistestnet, _nolustestnet, _osmosistestnet, _osmosistestnet4, _persistencetestnet2, _quicksilvertestnet, _sagatestnet, _sgetestnet, _stargazetestnet, _terra2testnet, _titantestnet, _xiontestnet];
|
|
38
|
+
const assets = [_akashtestnet, _archwaytestnet, _axelartestnet, _celestiatestnet3, _chain4energytestnet, _composabletestnet, _coreumtestnet, _cosmoshubtestnet, _doravotatestnet, _dydxtestnet, _elystestnet, _empowertestnet, _entrypointtestnet, _impacthubtestnet, _injectivetestnet, _jackaltestnet2, _junotestnet, _kujiratestnet, _kyvetestnet, _lavatestnet, _likecointestnet, _mantrachaintestnet, _marstestnet, _neutrontestnet, _nobletestnet, _noistestnet, _nolustestnet, _osmosistestnet, _osmosistestnet4, _persistencetestnet2, _quicksilvertestnet, _sagatestnet, _sgetestnet, _stargazetestnet, _terra2testnet, _titantestnet, _xiontestnet];
|
|
38
39
|
export default assets;
|
package/esm/testnet/index.js
CHANGED
|
@@ -13,6 +13,7 @@ export * as empowertestnet from './empowertestnet';
|
|
|
13
13
|
export * as entrypointtestnet from './entrypointtestnet';
|
|
14
14
|
export * as impacthubtestnet from './impacthubtestnet';
|
|
15
15
|
export * as injectivetestnet from './injectivetestnet';
|
|
16
|
+
export * as jackaltestnet2 from './jackaltestnet2';
|
|
16
17
|
export * as junotestnet from './junotestnet';
|
|
17
18
|
export * as kujiratestnet from './kujiratestnet';
|
|
18
19
|
export * as kyvetestnet from './kyvetestnet';
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
const assets = {
|
|
2
|
+
chain_name: 'jackaltestnet2',
|
|
3
|
+
assets: [{
|
|
4
|
+
description: 'The native token of Archway testnetwork',
|
|
5
|
+
denom_units: [
|
|
6
|
+
{
|
|
7
|
+
denom: 'ibc/1C27F15E55A5190BB8272C1D3F3A165391209048922CF38C456C5D8E247FD7E7',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['aconst']
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
denom: 'uconst',
|
|
13
|
+
exponent: 12
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
denom: 'const',
|
|
17
|
+
exponent: 18
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
base: 'ibc/1C27F15E55A5190BB8272C1D3F3A165391209048922CF38C456C5D8E247FD7E7',
|
|
21
|
+
name: 'Archway',
|
|
22
|
+
display: 'const',
|
|
23
|
+
symbol: 'CONST',
|
|
24
|
+
traces: [{
|
|
25
|
+
type: 'ibc',
|
|
26
|
+
counterparty: {
|
|
27
|
+
channel_id: 'channel-368',
|
|
28
|
+
base_denom: 'aconst',
|
|
29
|
+
chain_name: 'archwaytestnet'
|
|
30
|
+
},
|
|
31
|
+
chain: {
|
|
32
|
+
channel_id: 'channel-1'
|
|
33
|
+
}
|
|
34
|
+
}]
|
|
35
|
+
}, {
|
|
36
|
+
description: 'The native token of Archway testnetwork',
|
|
37
|
+
denom_units: [
|
|
38
|
+
{
|
|
39
|
+
denom: 'ibc/1C27F15E55A5190BB8272C1D3F3A165391209048922CF38C456C5D8E247FD7E7',
|
|
40
|
+
exponent: 0,
|
|
41
|
+
aliases: ['aconst']
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
denom: 'uconst',
|
|
45
|
+
exponent: 12
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
denom: 'const',
|
|
49
|
+
exponent: 18
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
base: 'ibc/1C27F15E55A5190BB8272C1D3F3A165391209048922CF38C456C5D8E247FD7E7',
|
|
53
|
+
name: 'Archway',
|
|
54
|
+
display: 'const',
|
|
55
|
+
symbol: 'CONST',
|
|
56
|
+
traces: [{
|
|
57
|
+
type: 'ibc',
|
|
58
|
+
counterparty: {
|
|
59
|
+
channel_id: 'channel-368',
|
|
60
|
+
base_denom: 'aconst',
|
|
61
|
+
chain_name: 'archwaytestnet'
|
|
62
|
+
},
|
|
63
|
+
chain: {
|
|
64
|
+
channel_id: 'channel-1'
|
|
65
|
+
}
|
|
66
|
+
}]
|
|
67
|
+
}]
|
|
68
|
+
};
|
|
69
|
+
export default assets;
|
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export * from './testnet';
|
|
|
3
3
|
export * from './noncosmos';
|
|
4
4
|
import asset_lists from './asset_lists';
|
|
5
5
|
declare const _default: {
|
|
6
|
-
asset_lists: AssetList[];
|
|
6
|
+
asset_lists: import("@chain-registry/types").AssetList[];
|
|
7
7
|
};
|
|
8
8
|
export default _default;
|
|
9
9
|
export { asset_lists };
|