@chain-registry/assets 1.42.8 → 1.42.10
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/acrechain.js +2 -2
- package/esm/mainnet/agoric.js +2 -2
- package/esm/mainnet/archway.js +86 -0
- package/esm/mainnet/axelar.js +120 -2
- package/esm/mainnet/bandchain.js +8 -0
- package/esm/mainnet/bitsong.js +8 -0
- package/esm/mainnet/carbon.js +10 -2
- package/esm/mainnet/celestia.js +2 -2
- package/esm/mainnet/composable.js +2005 -825
- package/esm/mainnet/coreum.js +2 -2
- package/esm/mainnet/cosmoshub.js +50 -2
- package/esm/mainnet/crescent.js +2 -2
- package/esm/mainnet/cryptoorgchain.js +2 -2
- package/esm/mainnet/doravota.js +8 -0
- package/esm/mainnet/dydx.js +10 -2
- package/esm/mainnet/dymension.js +2 -2
- package/esm/mainnet/evmos.js +24 -0
- package/esm/mainnet/gateway.js +2 -2
- package/esm/mainnet/gravitybridge.js +42 -2
- package/esm/mainnet/injective.js +2 -2
- package/esm/mainnet/juno.js +116 -0
- package/esm/mainnet/kava.js +10 -2
- package/esm/mainnet/kujira.js +42 -2
- package/esm/mainnet/migaloo.js +160 -0
- package/esm/mainnet/neutron.js +18 -2
- package/esm/mainnet/noble.js +10 -2
- package/esm/mainnet/oraichain.js +32 -0
- package/esm/mainnet/osmosis.js +122 -10
- package/esm/mainnet/persistence.js +16 -0
- package/esm/mainnet/saga.js +78 -0
- package/esm/mainnet/secretnetwork.js +112 -2
- package/esm/mainnet/shido.js +82 -4
- package/esm/mainnet/stargaze.js +18 -2
- package/esm/mainnet/stride.js +20 -4
- package/esm/mainnet/terra.js +16 -0
- package/esm/mainnet/terra2.js +32 -0
- package/esm/mainnet/tgrade.js +2 -2
- package/esm/noncosmos/assets.js +2 -1
- package/esm/noncosmos/ethereum.js +5 -0
- package/esm/noncosmos/index.js +1 -0
- package/index.d.ts +1 -1
- package/mainnet/acrechain.js +2 -2
- package/mainnet/agoric.js +2 -2
- package/mainnet/archway.js +86 -0
- package/mainnet/axelar.js +120 -2
- package/mainnet/bandchain.js +8 -0
- package/mainnet/bitsong.js +8 -0
- package/mainnet/carbon.js +10 -2
- package/mainnet/celestia.js +2 -2
- package/mainnet/composable.js +2005 -825
- package/mainnet/coreum.js +2 -2
- package/mainnet/cosmoshub.js +50 -2
- package/mainnet/crescent.js +2 -2
- package/mainnet/cryptoorgchain.js +2 -2
- package/mainnet/doravota.js +8 -0
- package/mainnet/dydx.js +10 -2
- package/mainnet/dymension.js +2 -2
- package/mainnet/evmos.js +24 -0
- package/mainnet/gateway.js +2 -2
- package/mainnet/gravitybridge.js +42 -2
- package/mainnet/injective.js +2 -2
- package/mainnet/juno.js +116 -0
- package/mainnet/kava.js +10 -2
- package/mainnet/kujira.js +42 -2
- package/mainnet/migaloo.js +160 -0
- package/mainnet/neutron.js +18 -2
- package/mainnet/noble.js +10 -2
- package/mainnet/oraichain.js +32 -0
- package/mainnet/osmosis.js +122 -10
- package/mainnet/persistence.js +16 -0
- package/mainnet/saga.js +78 -0
- package/mainnet/secretnetwork.js +112 -2
- package/mainnet/shido.js +82 -4
- package/mainnet/stargaze.js +18 -2
- package/mainnet/stride.js +20 -4
- package/mainnet/terra.js +16 -0
- package/mainnet/terra2.js +32 -0
- package/mainnet/tgrade.js +2 -2
- package/noncosmos/assets.js +2 -1
- package/noncosmos/ethereum.d.ts +3 -0
- package/noncosmos/ethereum.js +7 -0
- package/noncosmos/index.d.ts +1 -0
- package/noncosmos/index.js +2 -1
- package/package.json +5 -5
|
@@ -477,6 +477,10 @@ const assets = {
|
|
|
477
477
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
|
|
478
478
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
|
|
479
479
|
}],
|
|
480
|
+
socials: {
|
|
481
|
+
website: 'https://www.coreum.com/',
|
|
482
|
+
twitter: 'https://twitter.com/CoreumOfficial'
|
|
483
|
+
},
|
|
480
484
|
traces: [{
|
|
481
485
|
type: 'ibc',
|
|
482
486
|
counterparty: {
|
|
@@ -700,7 +704,7 @@ const assets = {
|
|
|
700
704
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
701
705
|
}],
|
|
702
706
|
socials: {
|
|
703
|
-
|
|
707
|
+
website: 'https://www.neokingdom.org/',
|
|
704
708
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
705
709
|
},
|
|
706
710
|
traces: [{
|
|
@@ -1512,6 +1516,57 @@ const assets = {
|
|
|
1512
1516
|
}
|
|
1513
1517
|
}]
|
|
1514
1518
|
},
|
|
1519
|
+
{
|
|
1520
|
+
description: 'The native staking and governance token of Saga.',
|
|
1521
|
+
extended_description: 'Saga is a Layer 1 protocol that allows developers to automatically spin up VM-agnostic, parallelized and interoperable dedicated chains, or “Chainlets,” that provide applications with infinite horizontal scalability. Each Chainlet is a replica of the Saga Mainnet, with the same validator set and security model.\n\nSaga’s mission is to enable the next 1000 chains in gaming and entertainment as part of the growing Saga Multiverse.',
|
|
1522
|
+
denom_units: [{
|
|
1523
|
+
denom: 'ibc/5938378D6974EF73519C90789CBBFFFAEC43992A3D2B5E3F465F5DA96E434029',
|
|
1524
|
+
exponent: 0,
|
|
1525
|
+
aliases: ['usaga']
|
|
1526
|
+
}, {
|
|
1527
|
+
denom: 'saga',
|
|
1528
|
+
exponent: 6
|
|
1529
|
+
}],
|
|
1530
|
+
base: 'ibc/5938378D6974EF73519C90789CBBFFFAEC43992A3D2B5E3F465F5DA96E434029',
|
|
1531
|
+
name: 'Saga',
|
|
1532
|
+
display: 'saga',
|
|
1533
|
+
symbol: 'SAGA',
|
|
1534
|
+
logo_URIs: {
|
|
1535
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
|
|
1536
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg'
|
|
1537
|
+
},
|
|
1538
|
+
coingecko_id: 'saga-2',
|
|
1539
|
+
images: [{
|
|
1540
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
|
|
1541
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg',
|
|
1542
|
+
theme: {
|
|
1543
|
+
primary_color_hex: '#000000',
|
|
1544
|
+
dark_mode: false
|
|
1545
|
+
}
|
|
1546
|
+
}, {
|
|
1547
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png',
|
|
1548
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg',
|
|
1549
|
+
theme: {
|
|
1550
|
+
primary_color_hex: '#FFFFFF',
|
|
1551
|
+
dark_mode: true
|
|
1552
|
+
}
|
|
1553
|
+
}],
|
|
1554
|
+
socials: {
|
|
1555
|
+
website: 'https://www.saga.xyz/',
|
|
1556
|
+
twitter: 'https://twitter.com/Sagaxyz__'
|
|
1557
|
+
},
|
|
1558
|
+
traces: [{
|
|
1559
|
+
type: 'ibc',
|
|
1560
|
+
counterparty: {
|
|
1561
|
+
channel_id: 'channel-17',
|
|
1562
|
+
base_denom: 'usaga',
|
|
1563
|
+
chain_name: 'saga'
|
|
1564
|
+
},
|
|
1565
|
+
chain: {
|
|
1566
|
+
channel_id: 'channel-152'
|
|
1567
|
+
}
|
|
1568
|
+
}]
|
|
1569
|
+
},
|
|
1515
1570
|
{
|
|
1516
1571
|
description: 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.',
|
|
1517
1572
|
denom_units: [{
|
|
@@ -1988,6 +2043,10 @@ const assets = {
|
|
|
1988
2043
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
|
|
1989
2044
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
|
|
1990
2045
|
}],
|
|
2046
|
+
socials: {
|
|
2047
|
+
website: 'https://www.coreum.com/',
|
|
2048
|
+
twitter: 'https://twitter.com/CoreumOfficial'
|
|
2049
|
+
},
|
|
1991
2050
|
traces: [{
|
|
1992
2051
|
type: 'ibc',
|
|
1993
2052
|
counterparty: {
|
|
@@ -2211,7 +2270,7 @@ const assets = {
|
|
|
2211
2270
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
2212
2271
|
}],
|
|
2213
2272
|
socials: {
|
|
2214
|
-
|
|
2273
|
+
website: 'https://www.neokingdom.org/',
|
|
2215
2274
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
2216
2275
|
},
|
|
2217
2276
|
traces: [{
|
|
@@ -3023,6 +3082,57 @@ const assets = {
|
|
|
3023
3082
|
}
|
|
3024
3083
|
}]
|
|
3025
3084
|
},
|
|
3085
|
+
{
|
|
3086
|
+
description: 'The native staking and governance token of Saga.',
|
|
3087
|
+
extended_description: 'Saga is a Layer 1 protocol that allows developers to automatically spin up VM-agnostic, parallelized and interoperable dedicated chains, or “Chainlets,” that provide applications with infinite horizontal scalability. Each Chainlet is a replica of the Saga Mainnet, with the same validator set and security model.\n\nSaga’s mission is to enable the next 1000 chains in gaming and entertainment as part of the growing Saga Multiverse.',
|
|
3088
|
+
denom_units: [{
|
|
3089
|
+
denom: 'ibc/5938378D6974EF73519C90789CBBFFFAEC43992A3D2B5E3F465F5DA96E434029',
|
|
3090
|
+
exponent: 0,
|
|
3091
|
+
aliases: ['usaga']
|
|
3092
|
+
}, {
|
|
3093
|
+
denom: 'saga',
|
|
3094
|
+
exponent: 6
|
|
3095
|
+
}],
|
|
3096
|
+
base: 'ibc/5938378D6974EF73519C90789CBBFFFAEC43992A3D2B5E3F465F5DA96E434029',
|
|
3097
|
+
name: 'Saga',
|
|
3098
|
+
display: 'saga',
|
|
3099
|
+
symbol: 'SAGA',
|
|
3100
|
+
logo_URIs: {
|
|
3101
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
|
|
3102
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg'
|
|
3103
|
+
},
|
|
3104
|
+
coingecko_id: 'saga-2',
|
|
3105
|
+
images: [{
|
|
3106
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png',
|
|
3107
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg',
|
|
3108
|
+
theme: {
|
|
3109
|
+
primary_color_hex: '#000000',
|
|
3110
|
+
dark_mode: false
|
|
3111
|
+
}
|
|
3112
|
+
}, {
|
|
3113
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png',
|
|
3114
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg',
|
|
3115
|
+
theme: {
|
|
3116
|
+
primary_color_hex: '#FFFFFF',
|
|
3117
|
+
dark_mode: true
|
|
3118
|
+
}
|
|
3119
|
+
}],
|
|
3120
|
+
socials: {
|
|
3121
|
+
website: 'https://www.saga.xyz/',
|
|
3122
|
+
twitter: 'https://twitter.com/Sagaxyz__'
|
|
3123
|
+
},
|
|
3124
|
+
traces: [{
|
|
3125
|
+
type: 'ibc',
|
|
3126
|
+
counterparty: {
|
|
3127
|
+
channel_id: 'channel-17',
|
|
3128
|
+
base_denom: 'usaga',
|
|
3129
|
+
chain_name: 'saga'
|
|
3130
|
+
},
|
|
3131
|
+
chain: {
|
|
3132
|
+
channel_id: 'channel-152'
|
|
3133
|
+
}
|
|
3134
|
+
}]
|
|
3135
|
+
},
|
|
3026
3136
|
{
|
|
3027
3137
|
description: 'DVPN is the native token of the Sentinel Hub.',
|
|
3028
3138
|
denom_units: [{
|
package/esm/mainnet/shido.js
CHANGED
|
@@ -1,6 +1,45 @@
|
|
|
1
1
|
const assets = {
|
|
2
2
|
chain_name: 'shido',
|
|
3
3
|
assets: [
|
|
4
|
+
{
|
|
5
|
+
description: 'The native token of Axelar',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98',
|
|
8
|
+
exponent: 0,
|
|
9
|
+
aliases: ['uaxl']
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'axl',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98',
|
|
15
|
+
name: 'Axelar',
|
|
16
|
+
display: 'axl',
|
|
17
|
+
symbol: 'AXL',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
21
|
+
},
|
|
22
|
+
coingecko_id: 'axelar',
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
26
|
+
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://axelar.network/',
|
|
29
|
+
twitter: 'https://twitter.com/axelarnetwork'
|
|
30
|
+
},
|
|
31
|
+
traces: [{
|
|
32
|
+
type: 'ibc',
|
|
33
|
+
counterparty: {
|
|
34
|
+
channel_id: 'channel-148',
|
|
35
|
+
base_denom: 'uaxl',
|
|
36
|
+
chain_name: 'axelar'
|
|
37
|
+
},
|
|
38
|
+
chain: {
|
|
39
|
+
channel_id: 'channel-1'
|
|
40
|
+
}
|
|
41
|
+
}]
|
|
42
|
+
},
|
|
4
43
|
{
|
|
5
44
|
description: 'The native token of Osmosis',
|
|
6
45
|
denom_units: [{
|
|
@@ -33,7 +72,7 @@ const assets = {
|
|
|
33
72
|
traces: [{
|
|
34
73
|
type: 'ibc',
|
|
35
74
|
counterparty: {
|
|
36
|
-
channel_id: 'channel-
|
|
75
|
+
channel_id: 'channel-73755',
|
|
37
76
|
base_denom: 'uosmo',
|
|
38
77
|
chain_name: 'osmosis'
|
|
39
78
|
},
|
|
@@ -73,7 +112,7 @@ const assets = {
|
|
|
73
112
|
traces: [{
|
|
74
113
|
type: 'ibc',
|
|
75
114
|
counterparty: {
|
|
76
|
-
channel_id: 'channel-
|
|
115
|
+
channel_id: 'channel-73755',
|
|
77
116
|
base_denom: 'uion',
|
|
78
117
|
chain_name: 'osmosis'
|
|
79
118
|
},
|
|
@@ -82,6 +121,45 @@ const assets = {
|
|
|
82
121
|
}
|
|
83
122
|
}]
|
|
84
123
|
},
|
|
124
|
+
{
|
|
125
|
+
description: 'The native token of Axelar',
|
|
126
|
+
denom_units: [{
|
|
127
|
+
denom: 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98',
|
|
128
|
+
exponent: 0,
|
|
129
|
+
aliases: ['uaxl']
|
|
130
|
+
}, {
|
|
131
|
+
denom: 'axl',
|
|
132
|
+
exponent: 6
|
|
133
|
+
}],
|
|
134
|
+
base: 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98',
|
|
135
|
+
name: 'Axelar',
|
|
136
|
+
display: 'axl',
|
|
137
|
+
symbol: 'AXL',
|
|
138
|
+
logo_URIs: {
|
|
139
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
140
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
141
|
+
},
|
|
142
|
+
coingecko_id: 'axelar',
|
|
143
|
+
images: [{
|
|
144
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
145
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
146
|
+
}],
|
|
147
|
+
socials: {
|
|
148
|
+
website: 'https://axelar.network/',
|
|
149
|
+
twitter: 'https://twitter.com/axelarnetwork'
|
|
150
|
+
},
|
|
151
|
+
traces: [{
|
|
152
|
+
type: 'ibc',
|
|
153
|
+
counterparty: {
|
|
154
|
+
channel_id: 'channel-148',
|
|
155
|
+
base_denom: 'uaxl',
|
|
156
|
+
chain_name: 'axelar'
|
|
157
|
+
},
|
|
158
|
+
chain: {
|
|
159
|
+
channel_id: 'channel-1'
|
|
160
|
+
}
|
|
161
|
+
}]
|
|
162
|
+
},
|
|
85
163
|
{
|
|
86
164
|
description: 'The native token of Osmosis',
|
|
87
165
|
denom_units: [{
|
|
@@ -114,7 +192,7 @@ const assets = {
|
|
|
114
192
|
traces: [{
|
|
115
193
|
type: 'ibc',
|
|
116
194
|
counterparty: {
|
|
117
|
-
channel_id: 'channel-
|
|
195
|
+
channel_id: 'channel-73755',
|
|
118
196
|
base_denom: 'uosmo',
|
|
119
197
|
chain_name: 'osmosis'
|
|
120
198
|
},
|
|
@@ -154,7 +232,7 @@ const assets = {
|
|
|
154
232
|
traces: [{
|
|
155
233
|
type: 'ibc',
|
|
156
234
|
counterparty: {
|
|
157
|
-
channel_id: 'channel-
|
|
235
|
+
channel_id: 'channel-73755',
|
|
158
236
|
base_denom: 'uion',
|
|
159
237
|
chain_name: 'osmosis'
|
|
160
238
|
},
|
package/esm/mainnet/stargaze.js
CHANGED
|
@@ -24,6 +24,10 @@ const assets = {
|
|
|
24
24
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
25
25
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
26
26
|
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://arable.finance/',
|
|
29
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
30
|
+
},
|
|
27
31
|
traces: [{
|
|
28
32
|
type: 'ibc',
|
|
29
33
|
counterparty: {
|
|
@@ -59,6 +63,10 @@ const assets = {
|
|
|
59
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
60
64
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
61
65
|
}],
|
|
66
|
+
socials: {
|
|
67
|
+
website: 'https://arable.finance/',
|
|
68
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
69
|
+
},
|
|
62
70
|
traces: [{
|
|
63
71
|
type: 'ibc',
|
|
64
72
|
counterparty: {
|
|
@@ -461,7 +469,7 @@ const assets = {
|
|
|
461
469
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
462
470
|
}],
|
|
463
471
|
socials: {
|
|
464
|
-
|
|
472
|
+
website: 'https://www.neokingdom.org/',
|
|
465
473
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
466
474
|
},
|
|
467
475
|
traces: [{
|
|
@@ -1180,6 +1188,10 @@ const assets = {
|
|
|
1180
1188
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
1181
1189
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
1182
1190
|
}],
|
|
1191
|
+
socials: {
|
|
1192
|
+
website: 'https://arable.finance/',
|
|
1193
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
1194
|
+
},
|
|
1183
1195
|
traces: [{
|
|
1184
1196
|
type: 'ibc',
|
|
1185
1197
|
counterparty: {
|
|
@@ -1215,6 +1227,10 @@ const assets = {
|
|
|
1215
1227
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
1216
1228
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
1217
1229
|
}],
|
|
1230
|
+
socials: {
|
|
1231
|
+
website: 'https://arable.finance/',
|
|
1232
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
1233
|
+
},
|
|
1218
1234
|
traces: [{
|
|
1219
1235
|
type: 'ibc',
|
|
1220
1236
|
counterparty: {
|
|
@@ -1617,7 +1633,7 @@ const assets = {
|
|
|
1617
1633
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
1618
1634
|
}],
|
|
1619
1635
|
socials: {
|
|
1620
|
-
|
|
1636
|
+
website: 'https://www.neokingdom.org/',
|
|
1621
1637
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
1622
1638
|
},
|
|
1623
1639
|
traces: [{
|
package/esm/mainnet/stride.js
CHANGED
|
@@ -24,6 +24,10 @@ const assets = {
|
|
|
24
24
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
25
25
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
26
26
|
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://arable.finance/',
|
|
29
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
30
|
+
},
|
|
27
31
|
traces: [{
|
|
28
32
|
type: 'ibc',
|
|
29
33
|
counterparty: {
|
|
@@ -59,6 +63,10 @@ const assets = {
|
|
|
59
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
60
64
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
61
65
|
}],
|
|
66
|
+
socials: {
|
|
67
|
+
website: 'https://arable.finance/',
|
|
68
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
69
|
+
},
|
|
62
70
|
traces: [{
|
|
63
71
|
type: 'ibc',
|
|
64
72
|
counterparty: {
|
|
@@ -727,7 +735,7 @@ const assets = {
|
|
|
727
735
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
728
736
|
}],
|
|
729
737
|
socials: {
|
|
730
|
-
|
|
738
|
+
website: 'https://www.neokingdom.org/',
|
|
731
739
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
732
740
|
},
|
|
733
741
|
traces: [{
|
|
@@ -1286,7 +1294,7 @@ const assets = {
|
|
|
1286
1294
|
}
|
|
1287
1295
|
}],
|
|
1288
1296
|
socials: {
|
|
1289
|
-
|
|
1297
|
+
website: 'https://www.saga.xyz/',
|
|
1290
1298
|
twitter: 'https://twitter.com/Sagaxyz__'
|
|
1291
1299
|
},
|
|
1292
1300
|
traces: [{
|
|
@@ -1520,6 +1528,10 @@ const assets = {
|
|
|
1520
1528
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
1521
1529
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
1522
1530
|
}],
|
|
1531
|
+
socials: {
|
|
1532
|
+
website: 'https://arable.finance/',
|
|
1533
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
1534
|
+
},
|
|
1523
1535
|
traces: [{
|
|
1524
1536
|
type: 'ibc',
|
|
1525
1537
|
counterparty: {
|
|
@@ -1555,6 +1567,10 @@ const assets = {
|
|
|
1555
1567
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
1556
1568
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
1557
1569
|
}],
|
|
1570
|
+
socials: {
|
|
1571
|
+
website: 'https://arable.finance/',
|
|
1572
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
1573
|
+
},
|
|
1558
1574
|
traces: [{
|
|
1559
1575
|
type: 'ibc',
|
|
1560
1576
|
counterparty: {
|
|
@@ -2223,7 +2239,7 @@ const assets = {
|
|
|
2223
2239
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
2224
2240
|
}],
|
|
2225
2241
|
socials: {
|
|
2226
|
-
|
|
2242
|
+
website: 'https://www.neokingdom.org/',
|
|
2227
2243
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
2228
2244
|
},
|
|
2229
2245
|
traces: [{
|
|
@@ -2782,7 +2798,7 @@ const assets = {
|
|
|
2782
2798
|
}
|
|
2783
2799
|
}],
|
|
2784
2800
|
socials: {
|
|
2785
|
-
|
|
2801
|
+
website: 'https://www.saga.xyz/',
|
|
2786
2802
|
twitter: 'https://twitter.com/Sagaxyz__'
|
|
2787
2803
|
},
|
|
2788
2804
|
traces: [{
|
package/esm/mainnet/terra.js
CHANGED
|
@@ -24,6 +24,10 @@ const assets = {
|
|
|
24
24
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
25
25
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
26
26
|
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://arable.finance/',
|
|
29
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
30
|
+
},
|
|
27
31
|
traces: [{
|
|
28
32
|
type: 'ibc',
|
|
29
33
|
counterparty: {
|
|
@@ -59,6 +63,10 @@ const assets = {
|
|
|
59
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
60
64
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
61
65
|
}],
|
|
66
|
+
socials: {
|
|
67
|
+
website: 'https://arable.finance/',
|
|
68
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
69
|
+
},
|
|
62
70
|
traces: [{
|
|
63
71
|
type: 'ibc',
|
|
64
72
|
counterparty: {
|
|
@@ -357,6 +365,10 @@ const assets = {
|
|
|
357
365
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
358
366
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
359
367
|
}],
|
|
368
|
+
socials: {
|
|
369
|
+
website: 'https://arable.finance/',
|
|
370
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
371
|
+
},
|
|
360
372
|
traces: [{
|
|
361
373
|
type: 'ibc',
|
|
362
374
|
counterparty: {
|
|
@@ -392,6 +404,10 @@ const assets = {
|
|
|
392
404
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
393
405
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
394
406
|
}],
|
|
407
|
+
socials: {
|
|
408
|
+
website: 'https://arable.finance/',
|
|
409
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
410
|
+
},
|
|
395
411
|
traces: [{
|
|
396
412
|
type: 'ibc',
|
|
397
413
|
counterparty: {
|
package/esm/mainnet/terra2.js
CHANGED
|
@@ -24,6 +24,10 @@ const assets = {
|
|
|
24
24
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
25
25
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
26
26
|
}],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://arable.finance/',
|
|
29
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
30
|
+
},
|
|
27
31
|
traces: [{
|
|
28
32
|
type: 'ibc',
|
|
29
33
|
counterparty: {
|
|
@@ -59,6 +63,10 @@ const assets = {
|
|
|
59
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
60
64
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
61
65
|
}],
|
|
66
|
+
socials: {
|
|
67
|
+
website: 'https://arable.finance/',
|
|
68
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
69
|
+
},
|
|
62
70
|
traces: [{
|
|
63
71
|
type: 'ibc',
|
|
64
72
|
counterparty: {
|
|
@@ -2665,6 +2673,10 @@ const assets = {
|
|
|
2665
2673
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
|
|
2666
2674
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
|
|
2667
2675
|
}],
|
|
2676
|
+
socials: {
|
|
2677
|
+
website: 'https://arable.finance/',
|
|
2678
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
2679
|
+
},
|
|
2668
2680
|
traces: [{
|
|
2669
2681
|
type: 'ibc',
|
|
2670
2682
|
counterparty: {
|
|
@@ -2700,6 +2712,10 @@ const assets = {
|
|
|
2700
2712
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
|
|
2701
2713
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
|
|
2702
2714
|
}],
|
|
2715
|
+
socials: {
|
|
2716
|
+
website: 'https://arable.finance/',
|
|
2717
|
+
twitter: 'https://twitter.com/ArableProtocol'
|
|
2718
|
+
},
|
|
2703
2719
|
traces: [{
|
|
2704
2720
|
type: 'ibc',
|
|
2705
2721
|
counterparty: {
|
|
@@ -5574,6 +5590,10 @@ const assets = {
|
|
|
5574
5590
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
|
|
5575
5591
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
|
|
5576
5592
|
}],
|
|
5593
|
+
socials: {
|
|
5594
|
+
website: 'http://alter.network/',
|
|
5595
|
+
twitter: 'https://twitter.com/AlterDapp'
|
|
5596
|
+
},
|
|
5577
5597
|
traces: [{
|
|
5578
5598
|
type: 'ibc-cw20',
|
|
5579
5599
|
counterparty: {
|
|
@@ -5612,6 +5632,10 @@ const assets = {
|
|
|
5612
5632
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
|
|
5613
5633
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
|
|
5614
5634
|
}],
|
|
5635
|
+
socials: {
|
|
5636
|
+
website: 'http://amber.money/',
|
|
5637
|
+
twitter: 'https://twitter.com/AmberDAO_'
|
|
5638
|
+
},
|
|
5615
5639
|
traces: [{
|
|
5616
5640
|
type: 'ibc-cw20',
|
|
5617
5641
|
counterparty: {
|
|
@@ -5955,6 +5979,10 @@ const assets = {
|
|
|
5955
5979
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
|
|
5956
5980
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
|
|
5957
5981
|
}],
|
|
5982
|
+
socials: {
|
|
5983
|
+
website: 'http://alter.network/',
|
|
5984
|
+
twitter: 'https://twitter.com/AlterDapp'
|
|
5985
|
+
},
|
|
5958
5986
|
traces: [{
|
|
5959
5987
|
type: 'ibc-cw20',
|
|
5960
5988
|
counterparty: {
|
|
@@ -5993,6 +6021,10 @@ const assets = {
|
|
|
5993
6021
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
|
|
5994
6022
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
|
|
5995
6023
|
}],
|
|
6024
|
+
socials: {
|
|
6025
|
+
website: 'http://amber.money/',
|
|
6026
|
+
twitter: 'https://twitter.com/AmberDAO_'
|
|
6027
|
+
},
|
|
5996
6028
|
traces: [{
|
|
5997
6029
|
type: 'ibc-cw20',
|
|
5998
6030
|
counterparty: {
|
package/esm/mainnet/tgrade.js
CHANGED
|
@@ -64,7 +64,7 @@ const assets = {
|
|
|
64
64
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
65
65
|
}],
|
|
66
66
|
socials: {
|
|
67
|
-
|
|
67
|
+
website: 'https://www.neokingdom.org/',
|
|
68
68
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
69
69
|
},
|
|
70
70
|
traces: [{
|
|
@@ -295,7 +295,7 @@ const assets = {
|
|
|
295
295
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
296
296
|
}],
|
|
297
297
|
socials: {
|
|
298
|
-
|
|
298
|
+
website: 'https://www.neokingdom.org/',
|
|
299
299
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
300
300
|
},
|
|
301
301
|
traces: [{
|
package/esm/noncosmos/assets.js
CHANGED
package/esm/noncosmos/index.js
CHANGED
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 };
|
package/mainnet/acrechain.js
CHANGED
|
@@ -144,7 +144,7 @@ const assets = {
|
|
|
144
144
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
145
145
|
}],
|
|
146
146
|
socials: {
|
|
147
|
-
|
|
147
|
+
website: 'https://www.neokingdom.org/',
|
|
148
148
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
149
149
|
},
|
|
150
150
|
traces: [{
|
|
@@ -1674,7 +1674,7 @@ const assets = {
|
|
|
1674
1674
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
1675
1675
|
}],
|
|
1676
1676
|
socials: {
|
|
1677
|
-
|
|
1677
|
+
website: 'https://www.neokingdom.org/',
|
|
1678
1678
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
1679
1679
|
},
|
|
1680
1680
|
traces: [{
|
package/mainnet/agoric.js
CHANGED
|
@@ -260,7 +260,7 @@ const assets = {
|
|
|
260
260
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
261
261
|
}],
|
|
262
262
|
socials: {
|
|
263
|
-
|
|
263
|
+
website: 'https://www.neokingdom.org/',
|
|
264
264
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
265
265
|
},
|
|
266
266
|
traces: [{
|
|
@@ -1022,7 +1022,7 @@ const assets = {
|
|
|
1022
1022
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
|
|
1023
1023
|
}],
|
|
1024
1024
|
socials: {
|
|
1025
|
-
|
|
1025
|
+
website: 'https://www.neokingdom.org/',
|
|
1026
1026
|
twitter: 'https://twitter.com/NEOKingdomDAO'
|
|
1027
1027
|
},
|
|
1028
1028
|
traces: [{
|