chain-registry 1.46.0 → 1.46.2
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 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/dymension/assets.js +23 -0
- package/esm/mainnet/juno/assets.js +59 -0
- package/esm/mainnet/juno/chain.js +1 -1
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/onex/assets.js +28 -0
- package/esm/mainnet/onex/chain.js +59 -0
- package/esm/mainnet/onex/index.js +4 -0
- package/esm/mainnet/osmosis/assets.js +23 -0
- package/esm/mainnet/saga/chain.js +12 -0
- package/esm/mainnet/sei/chain.js +2 -2
- package/mainnet/assets.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/dymension/assets.js +23 -0
- package/mainnet/juno/assets.js +59 -0
- package/mainnet/juno/chain.js +1 -1
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +3 -2
- package/mainnet/onex/assets.d.ts +3 -0
- package/mainnet/onex/assets.js +30 -0
- package/mainnet/onex/chain.d.ts +3 -0
- package/mainnet/onex/chain.js +61 -0
- package/mainnet/onex/index.d.ts +2 -0
- package/mainnet/onex/index.js +10 -0
- package/mainnet/osmosis/assets.js +23 -0
- package/mainnet/saga/chain.js +12 -0
- package/mainnet/sei/chain.js +2 -2
- package/package.json +4 -4
package/esm/mainnet/assets.js
CHANGED
|
@@ -106,6 +106,7 @@ import * as _octa from './octa';
|
|
|
106
106
|
import * as _odin from './odin';
|
|
107
107
|
import * as _okexchain from './okexchain';
|
|
108
108
|
import * as _omniflixhub from './omniflixhub';
|
|
109
|
+
import * as _onex from './onex';
|
|
109
110
|
import * as _onomy from './onomy';
|
|
110
111
|
import * as _oraichain from './oraichain';
|
|
111
112
|
import * as _osmosis from './osmosis';
|
|
@@ -266,6 +267,7 @@ const assets = [
|
|
|
266
267
|
_odin.assets,
|
|
267
268
|
_okexchain.assets,
|
|
268
269
|
_omniflixhub.assets,
|
|
270
|
+
_onex.assets,
|
|
269
271
|
_onomy.assets,
|
|
270
272
|
_oraichain.assets,
|
|
271
273
|
_osmosis.assets,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -107,6 +107,7 @@ import * as _octa from './octa';
|
|
|
107
107
|
import * as _odin from './odin';
|
|
108
108
|
import * as _okexchain from './okexchain';
|
|
109
109
|
import * as _omniflixhub from './omniflixhub';
|
|
110
|
+
import * as _onex from './onex';
|
|
110
111
|
import * as _onomy from './onomy';
|
|
111
112
|
import * as _oraichain from './oraichain';
|
|
112
113
|
import * as _osmosis from './osmosis';
|
|
@@ -269,6 +270,7 @@ const chains = [
|
|
|
269
270
|
_odin.chain,
|
|
270
271
|
_okexchain.chain,
|
|
271
272
|
_omniflixhub.chain,
|
|
273
|
+
_onex.chain,
|
|
272
274
|
_onomy.chain,
|
|
273
275
|
_oraichain.chain,
|
|
274
276
|
_osmosis.chain,
|
|
@@ -27,6 +27,29 @@ const info = {
|
|
|
27
27
|
website: 'https://portal.dymension.xyz',
|
|
28
28
|
twitter: 'https://twitter.com/dymension'
|
|
29
29
|
}
|
|
30
|
+
}, {
|
|
31
|
+
description: 'The native token of Nim Network.',
|
|
32
|
+
extended_description: 'Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.',
|
|
33
|
+
denom_units: [{
|
|
34
|
+
denom: 'anim',
|
|
35
|
+
exponent: 0
|
|
36
|
+
}, {
|
|
37
|
+
denom: 'nim',
|
|
38
|
+
exponent: 18
|
|
39
|
+
}],
|
|
40
|
+
base: 'anim',
|
|
41
|
+
name: 'NIM Network',
|
|
42
|
+
display: 'nim',
|
|
43
|
+
symbol: 'NIM',
|
|
44
|
+
images: [{
|
|
45
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/nim.png',
|
|
46
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/nim.svg'
|
|
47
|
+
}],
|
|
48
|
+
socials: {
|
|
49
|
+
website: 'https://nim.network/',
|
|
50
|
+
twitter: 'https://twitter.com/nim_network'
|
|
51
|
+
},
|
|
52
|
+
keywords: ['gaming', 'AI']
|
|
30
53
|
}]
|
|
31
54
|
};
|
|
32
55
|
export default info;
|
|
@@ -1721,6 +1721,65 @@ const info = {
|
|
|
1721
1721
|
path: 'transfer/channel-224/uusdc'
|
|
1722
1722
|
}
|
|
1723
1723
|
}]
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
denom_units: [{
|
|
1727
|
+
denom: 'ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2',
|
|
1728
|
+
exponent: 0,
|
|
1729
|
+
aliases: ['factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk']
|
|
1730
|
+
}, {
|
|
1731
|
+
denom: 'rstk',
|
|
1732
|
+
exponent: 6
|
|
1733
|
+
}],
|
|
1734
|
+
type_asset: 'ics20',
|
|
1735
|
+
base: 'ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2',
|
|
1736
|
+
name: 'Restake DAO Token',
|
|
1737
|
+
display: 'rstk',
|
|
1738
|
+
symbol: 'RSTK',
|
|
1739
|
+
traces: [{
|
|
1740
|
+
type: 'ibc',
|
|
1741
|
+
counterparty: {
|
|
1742
|
+
chain_name: 'migaloo',
|
|
1743
|
+
base_denom: 'factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk',
|
|
1744
|
+
channel_id: 'channel-1'
|
|
1745
|
+
},
|
|
1746
|
+
chain: {
|
|
1747
|
+
channel_id: 'channel-210',
|
|
1748
|
+
path: 'transfer/channel-210/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk'
|
|
1749
|
+
}
|
|
1750
|
+
}],
|
|
1751
|
+
images: [{
|
|
1752
|
+
image_sync: {
|
|
1753
|
+
chain_name: 'migaloo',
|
|
1754
|
+
base_denom: 'factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk'
|
|
1755
|
+
},
|
|
1756
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png',
|
|
1757
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg'
|
|
1758
|
+
}],
|
|
1759
|
+
logo_URIs: {
|
|
1760
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png',
|
|
1761
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg'
|
|
1762
|
+
}
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
denom_units: [{
|
|
1766
|
+
denom: 'factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind',
|
|
1767
|
+
exponent: 0
|
|
1768
|
+
}, {
|
|
1769
|
+
denom: 'wind',
|
|
1770
|
+
exponent: 6
|
|
1771
|
+
}],
|
|
1772
|
+
address: 'juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq',
|
|
1773
|
+
base: 'factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind',
|
|
1774
|
+
name: 'Wind Token',
|
|
1775
|
+
display: 'wind',
|
|
1776
|
+
symbol: 'WIND',
|
|
1777
|
+
logo_URIs: {
|
|
1778
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png'
|
|
1779
|
+
},
|
|
1780
|
+
images: [{
|
|
1781
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png'
|
|
1782
|
+
}]
|
|
1724
1783
|
}
|
|
1725
1784
|
]
|
|
1726
1785
|
};
|
package/esm/mainnet/named.js
CHANGED
|
@@ -107,6 +107,7 @@ export * as octa from './octa';
|
|
|
107
107
|
export * as odin from './odin';
|
|
108
108
|
export * as okexchain from './okexchain';
|
|
109
109
|
export * as omniflixhub from './omniflixhub';
|
|
110
|
+
export * as onex from './onex';
|
|
110
111
|
export * as onomy from './onomy';
|
|
111
112
|
export * as oraichain from './oraichain';
|
|
112
113
|
export * as osmosis from './osmosis';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'onex',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of ONEX',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'aonex',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'onex',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
base: 'aonex',
|
|
14
|
+
name: 'ONEX',
|
|
15
|
+
display: 'onex',
|
|
16
|
+
symbol: 'ONEX',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png',
|
|
19
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.svg'
|
|
20
|
+
},
|
|
21
|
+
keywords: ['dex'],
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.svg'
|
|
25
|
+
}]
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
export default info;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'onex',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://app.onomy.io/',
|
|
6
|
+
network_type: 'mainnet',
|
|
7
|
+
pretty_name: 'ONEX',
|
|
8
|
+
chain_id: 'onex-mainnet-1',
|
|
9
|
+
bech32_prefix: 'onomy',
|
|
10
|
+
daemon_name: 'onexd',
|
|
11
|
+
node_home: '$HOME/.onomy_onex',
|
|
12
|
+
key_algos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
fee_tokens: [{
|
|
16
|
+
denom: 'aonex',
|
|
17
|
+
fixed_min_gas_price: 0,
|
|
18
|
+
low_gas_price: 0,
|
|
19
|
+
average_gas_price: 0.025,
|
|
20
|
+
high_gas_price: 0.04
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
staking_tokens: [{
|
|
25
|
+
denom: 'aonex'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
cosmos_sdk_version: '0.45.16'
|
|
30
|
+
},
|
|
31
|
+
images: [{
|
|
32
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png',
|
|
33
|
+
theme: {
|
|
34
|
+
primary_color_hex: '#000000'
|
|
35
|
+
}
|
|
36
|
+
}],
|
|
37
|
+
apis: {
|
|
38
|
+
rpc: [{
|
|
39
|
+
address: 'https://rpc.mainnet.onex.onomy.io',
|
|
40
|
+
provider: 'pendulum'
|
|
41
|
+
}],
|
|
42
|
+
rest: [{
|
|
43
|
+
address: 'https://rest.mainnet.onex.onomy.io',
|
|
44
|
+
provider: 'pendulum'
|
|
45
|
+
}],
|
|
46
|
+
grpc: [{
|
|
47
|
+
address: 'a.node.mainnet.onomy.io:19091',
|
|
48
|
+
provider: 'pendulum'
|
|
49
|
+
}]
|
|
50
|
+
},
|
|
51
|
+
explorers: [{
|
|
52
|
+
kind: 'Dexplorer - must enter rpc link provided above',
|
|
53
|
+
url: 'https://dexplorer.cakralabs.site',
|
|
54
|
+
tx_page: 'https://dexplorer.cakralabs.site/txs/${txHash}',
|
|
55
|
+
account_page: 'https://dexplorer.cakralabs.site/${accountAddress}'
|
|
56
|
+
}],
|
|
57
|
+
keywords: ['dex']
|
|
58
|
+
};
|
|
59
|
+
export default info;
|
|
@@ -13214,6 +13214,29 @@ const info = {
|
|
|
13214
13214
|
images: [{
|
|
13215
13215
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png'
|
|
13216
13216
|
}]
|
|
13217
|
+
},
|
|
13218
|
+
{
|
|
13219
|
+
description: 'wLibra',
|
|
13220
|
+
extended_description: 'wLibra is a wrapped version of Libra Coin from https://librabridge.com. Libra Coin is a fork from Facebook\'s Diem (Libra) blockchain that was announced in 2019. Libra Coin operates on its own high-performance Layer 1 blockchain, known as the 0L Network. In October 2021, Libra Coin began mining.\n\n Like Bitcoin, there were no pre-mined coins or dedicated token allocation to any parties; all coins were minted through a mining process. Unlike Bitcoin, which undergoes continuous issuance, Libra Coin has a fixed supply. By December 2023, all the Libra Coin had been issued, establishing a capped supply and making the coin permanently deflationary.\n\n Fiercely independent, the project has a long-term view because it is unburdened by venture capital funding, labs entities, a foundation, and the influence of other blockchain ecosystems. Carpe diem.',
|
|
13221
|
+
denom_units: [{
|
|
13222
|
+
denom: 'factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA',
|
|
13223
|
+
exponent: 0
|
|
13224
|
+
}, {
|
|
13225
|
+
denom: 'wLIBRA',
|
|
13226
|
+
exponent: 6
|
|
13227
|
+
}],
|
|
13228
|
+
type_asset: 'sdk.coin',
|
|
13229
|
+
address: 'osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p',
|
|
13230
|
+
base: 'factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA',
|
|
13231
|
+
name: 'wLIBRA',
|
|
13232
|
+
display: 'wLIBRA',
|
|
13233
|
+
symbol: 'wLIBRA',
|
|
13234
|
+
logo_URIs: {
|
|
13235
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/libra.png'
|
|
13236
|
+
},
|
|
13237
|
+
images: [{
|
|
13238
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/libra.png'
|
|
13239
|
+
}]
|
|
13217
13240
|
}
|
|
13218
13241
|
]
|
|
13219
13242
|
};
|
|
@@ -52,6 +52,10 @@ const info = {
|
|
|
52
52
|
{
|
|
53
53
|
address: 'https://saga.rpc.kjnodes.com',
|
|
54
54
|
provider: 'kjnodes'
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
address: 'https://rpc.saga.bronbro.io:443',
|
|
58
|
+
provider: 'Bro_n_Bro'
|
|
55
59
|
}
|
|
56
60
|
],
|
|
57
61
|
rest: [
|
|
@@ -70,6 +74,10 @@ const info = {
|
|
|
70
74
|
{
|
|
71
75
|
address: 'https://saga.api.kjnodes.com',
|
|
72
76
|
provider: 'kjnodes'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://lcd.saga.bronbro.io:443',
|
|
80
|
+
provider: 'Bro_n_Bro'
|
|
73
81
|
}
|
|
74
82
|
],
|
|
75
83
|
grpc: [
|
|
@@ -88,6 +96,10 @@ const info = {
|
|
|
88
96
|
{
|
|
89
97
|
address: 'saga.grpc.kjnodes.com:443',
|
|
90
98
|
provider: 'kjnodes'
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
address: 'grpc.saga.bronbro.io:443',
|
|
102
|
+
provider: 'Bro_n_Bro'
|
|
91
103
|
}
|
|
92
104
|
]
|
|
93
105
|
},
|
package/esm/mainnet/sei/chain.js
CHANGED
|
@@ -26,9 +26,9 @@ const info = {
|
|
|
26
26
|
}]
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
|
-
cosmos_sdk_version: 'sei-cosmos v0.2.
|
|
29
|
+
cosmos_sdk_version: 'sei-cosmos v0.2.83',
|
|
30
30
|
cosmwasm_enabled: true,
|
|
31
|
-
cosmwasm_version: 'sei-wasmd v0.
|
|
31
|
+
cosmwasm_version: 'sei-wasmd v0.1.1'
|
|
32
32
|
},
|
|
33
33
|
logo_URIs: {
|
|
34
34
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
|
package/mainnet/assets.js
CHANGED
|
@@ -131,6 +131,7 @@ const _octa = __importStar(require("./octa"));
|
|
|
131
131
|
const _odin = __importStar(require("./odin"));
|
|
132
132
|
const _okexchain = __importStar(require("./okexchain"));
|
|
133
133
|
const _omniflixhub = __importStar(require("./omniflixhub"));
|
|
134
|
+
const _onex = __importStar(require("./onex"));
|
|
134
135
|
const _onomy = __importStar(require("./onomy"));
|
|
135
136
|
const _oraichain = __importStar(require("./oraichain"));
|
|
136
137
|
const _osmosis = __importStar(require("./osmosis"));
|
|
@@ -291,6 +292,7 @@ const assets = [
|
|
|
291
292
|
_odin.assets,
|
|
292
293
|
_okexchain.assets,
|
|
293
294
|
_omniflixhub.assets,
|
|
295
|
+
_onex.assets,
|
|
294
296
|
_onomy.assets,
|
|
295
297
|
_oraichain.assets,
|
|
296
298
|
_osmosis.assets,
|
package/mainnet/chains.js
CHANGED
|
@@ -132,6 +132,7 @@ const _octa = __importStar(require("./octa"));
|
|
|
132
132
|
const _odin = __importStar(require("./odin"));
|
|
133
133
|
const _okexchain = __importStar(require("./okexchain"));
|
|
134
134
|
const _omniflixhub = __importStar(require("./omniflixhub"));
|
|
135
|
+
const _onex = __importStar(require("./onex"));
|
|
135
136
|
const _onomy = __importStar(require("./onomy"));
|
|
136
137
|
const _oraichain = __importStar(require("./oraichain"));
|
|
137
138
|
const _osmosis = __importStar(require("./osmosis"));
|
|
@@ -294,6 +295,7 @@ const chains = [
|
|
|
294
295
|
_odin.chain,
|
|
295
296
|
_okexchain.chain,
|
|
296
297
|
_omniflixhub.chain,
|
|
298
|
+
_onex.chain,
|
|
297
299
|
_onomy.chain,
|
|
298
300
|
_oraichain.chain,
|
|
299
301
|
_osmosis.chain,
|
|
@@ -29,6 +29,29 @@ const info = {
|
|
|
29
29
|
website: 'https://portal.dymension.xyz',
|
|
30
30
|
twitter: 'https://twitter.com/dymension'
|
|
31
31
|
}
|
|
32
|
+
}, {
|
|
33
|
+
description: 'The native token of Nim Network.',
|
|
34
|
+
extended_description: 'Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.',
|
|
35
|
+
denom_units: [{
|
|
36
|
+
denom: 'anim',
|
|
37
|
+
exponent: 0
|
|
38
|
+
}, {
|
|
39
|
+
denom: 'nim',
|
|
40
|
+
exponent: 18
|
|
41
|
+
}],
|
|
42
|
+
base: 'anim',
|
|
43
|
+
name: 'NIM Network',
|
|
44
|
+
display: 'nim',
|
|
45
|
+
symbol: 'NIM',
|
|
46
|
+
images: [{
|
|
47
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/nim.png',
|
|
48
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/nim.svg'
|
|
49
|
+
}],
|
|
50
|
+
socials: {
|
|
51
|
+
website: 'https://nim.network/',
|
|
52
|
+
twitter: 'https://twitter.com/nim_network'
|
|
53
|
+
},
|
|
54
|
+
keywords: ['gaming', 'AI']
|
|
32
55
|
}]
|
|
33
56
|
};
|
|
34
57
|
exports.default = info;
|
package/mainnet/juno/assets.js
CHANGED
|
@@ -1723,6 +1723,65 @@ const info = {
|
|
|
1723
1723
|
path: 'transfer/channel-224/uusdc'
|
|
1724
1724
|
}
|
|
1725
1725
|
}]
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
denom_units: [{
|
|
1729
|
+
denom: 'ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2',
|
|
1730
|
+
exponent: 0,
|
|
1731
|
+
aliases: ['factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk']
|
|
1732
|
+
}, {
|
|
1733
|
+
denom: 'rstk',
|
|
1734
|
+
exponent: 6
|
|
1735
|
+
}],
|
|
1736
|
+
type_asset: 'ics20',
|
|
1737
|
+
base: 'ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2',
|
|
1738
|
+
name: 'Restake DAO Token',
|
|
1739
|
+
display: 'rstk',
|
|
1740
|
+
symbol: 'RSTK',
|
|
1741
|
+
traces: [{
|
|
1742
|
+
type: 'ibc',
|
|
1743
|
+
counterparty: {
|
|
1744
|
+
chain_name: 'migaloo',
|
|
1745
|
+
base_denom: 'factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk',
|
|
1746
|
+
channel_id: 'channel-1'
|
|
1747
|
+
},
|
|
1748
|
+
chain: {
|
|
1749
|
+
channel_id: 'channel-210',
|
|
1750
|
+
path: 'transfer/channel-210/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk'
|
|
1751
|
+
}
|
|
1752
|
+
}],
|
|
1753
|
+
images: [{
|
|
1754
|
+
image_sync: {
|
|
1755
|
+
chain_name: 'migaloo',
|
|
1756
|
+
base_denom: 'factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk'
|
|
1757
|
+
},
|
|
1758
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png',
|
|
1759
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg'
|
|
1760
|
+
}],
|
|
1761
|
+
logo_URIs: {
|
|
1762
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png',
|
|
1763
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg'
|
|
1764
|
+
}
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
denom_units: [{
|
|
1768
|
+
denom: 'factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind',
|
|
1769
|
+
exponent: 0
|
|
1770
|
+
}, {
|
|
1771
|
+
denom: 'wind',
|
|
1772
|
+
exponent: 6
|
|
1773
|
+
}],
|
|
1774
|
+
address: 'juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq',
|
|
1775
|
+
base: 'factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind',
|
|
1776
|
+
name: 'Wind Token',
|
|
1777
|
+
display: 'wind',
|
|
1778
|
+
symbol: 'WIND',
|
|
1779
|
+
logo_URIs: {
|
|
1780
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png'
|
|
1781
|
+
},
|
|
1782
|
+
images: [{
|
|
1783
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png'
|
|
1784
|
+
}]
|
|
1726
1785
|
}
|
|
1727
1786
|
]
|
|
1728
1787
|
};
|
package/mainnet/juno/chain.js
CHANGED
package/mainnet/named.d.ts
CHANGED
|
@@ -107,6 +107,7 @@ export * as octa from './octa';
|
|
|
107
107
|
export * as odin from './odin';
|
|
108
108
|
export * as okexchain from './okexchain';
|
|
109
109
|
export * as omniflixhub from './omniflixhub';
|
|
110
|
+
export * as onex from './onex';
|
|
110
111
|
export * as onomy from './onomy';
|
|
111
112
|
export * as oraichain from './oraichain';
|
|
112
113
|
export * as osmosis from './osmosis';
|
package/mainnet/named.js
CHANGED
|
@@ -25,8 +25,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.doravota = exports.dig = exports.dhealth = exports.desmos = exports.decentr = exports.cudos = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cifer1 = exports.cifer = exports.chronicnetwork = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.cerberus = exports.celestia = exports.carbon = exports.canto = exports.bostrom = exports.bluzelle = exports.bitsong = exports.bitcanna = exports.beezee = exports.bandchain = exports.axelar = exports.aura = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda1 = exports.andromeda = exports.akiro = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports._8ball = void 0;
|
|
27
27
|
exports.nibiru = exports.neutron = exports.neutaro = exports.mythos = exports.mun = exports.mises = exports.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.lumnetwork = exports.lumenx = exports.loyal = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kichain = exports.kava = exports.juno = exports.jackal = exports.irisnet = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.empowerchain = exports.emoney = void 0;
|
|
28
|
-
exports.
|
|
29
|
-
exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = void 0;
|
|
28
|
+
exports.terpnetwork = exports.teritori = exports.tenet = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.sei = exports.secretnetwork = exports.scorum = exports.saga = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.pylons = exports.pundix = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage1 = exports.passage = exports.panacea = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.nois = exports.noble = void 0;
|
|
29
|
+
exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = exports.unification = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = void 0;
|
|
30
30
|
exports._8ball = __importStar(require("./8ball"));
|
|
31
31
|
exports.acrechain = __importStar(require("./acrechain"));
|
|
32
32
|
exports.agoric = __importStar(require("./agoric"));
|
|
@@ -136,6 +136,7 @@ exports.octa = __importStar(require("./octa"));
|
|
|
136
136
|
exports.odin = __importStar(require("./odin"));
|
|
137
137
|
exports.okexchain = __importStar(require("./okexchain"));
|
|
138
138
|
exports.omniflixhub = __importStar(require("./omniflixhub"));
|
|
139
|
+
exports.onex = __importStar(require("./onex"));
|
|
139
140
|
exports.onomy = __importStar(require("./onomy"));
|
|
140
141
|
exports.oraichain = __importStar(require("./oraichain"));
|
|
141
142
|
exports.osmosis = __importStar(require("./osmosis"));
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'onex',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of ONEX',
|
|
8
|
+
denom_units: [{
|
|
9
|
+
denom: 'aonex',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'onex',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
base: 'aonex',
|
|
16
|
+
name: 'ONEX',
|
|
17
|
+
display: 'onex',
|
|
18
|
+
symbol: 'ONEX',
|
|
19
|
+
logo_URIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png',
|
|
21
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.svg'
|
|
22
|
+
},
|
|
23
|
+
keywords: ['dex'],
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.svg'
|
|
27
|
+
}]
|
|
28
|
+
}]
|
|
29
|
+
};
|
|
30
|
+
exports.default = info;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'onex',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://app.onomy.io/',
|
|
8
|
+
network_type: 'mainnet',
|
|
9
|
+
pretty_name: 'ONEX',
|
|
10
|
+
chain_id: 'onex-mainnet-1',
|
|
11
|
+
bech32_prefix: 'onomy',
|
|
12
|
+
daemon_name: 'onexd',
|
|
13
|
+
node_home: '$HOME/.onomy_onex',
|
|
14
|
+
key_algos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
16
|
+
fees: {
|
|
17
|
+
fee_tokens: [{
|
|
18
|
+
denom: 'aonex',
|
|
19
|
+
fixed_min_gas_price: 0,
|
|
20
|
+
low_gas_price: 0,
|
|
21
|
+
average_gas_price: 0.025,
|
|
22
|
+
high_gas_price: 0.04
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
staking_tokens: [{
|
|
27
|
+
denom: 'aonex'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
cosmos_sdk_version: '0.45.16'
|
|
32
|
+
},
|
|
33
|
+
images: [{
|
|
34
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onex/images/onex.png',
|
|
35
|
+
theme: {
|
|
36
|
+
primary_color_hex: '#000000'
|
|
37
|
+
}
|
|
38
|
+
}],
|
|
39
|
+
apis: {
|
|
40
|
+
rpc: [{
|
|
41
|
+
address: 'https://rpc.mainnet.onex.onomy.io',
|
|
42
|
+
provider: 'pendulum'
|
|
43
|
+
}],
|
|
44
|
+
rest: [{
|
|
45
|
+
address: 'https://rest.mainnet.onex.onomy.io',
|
|
46
|
+
provider: 'pendulum'
|
|
47
|
+
}],
|
|
48
|
+
grpc: [{
|
|
49
|
+
address: 'a.node.mainnet.onomy.io:19091',
|
|
50
|
+
provider: 'pendulum'
|
|
51
|
+
}]
|
|
52
|
+
},
|
|
53
|
+
explorers: [{
|
|
54
|
+
kind: 'Dexplorer - must enter rpc link provided above',
|
|
55
|
+
url: 'https://dexplorer.cakralabs.site',
|
|
56
|
+
tx_page: 'https://dexplorer.cakralabs.site/txs/${txHash}',
|
|
57
|
+
account_page: 'https://dexplorer.cakralabs.site/${accountAddress}'
|
|
58
|
+
}],
|
|
59
|
+
keywords: ['dex']
|
|
60
|
+
};
|
|
61
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.chain = exports.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assets = assets_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
|
@@ -13216,6 +13216,29 @@ const info = {
|
|
|
13216
13216
|
images: [{
|
|
13217
13217
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png'
|
|
13218
13218
|
}]
|
|
13219
|
+
},
|
|
13220
|
+
{
|
|
13221
|
+
description: 'wLibra',
|
|
13222
|
+
extended_description: 'wLibra is a wrapped version of Libra Coin from https://librabridge.com. Libra Coin is a fork from Facebook\'s Diem (Libra) blockchain that was announced in 2019. Libra Coin operates on its own high-performance Layer 1 blockchain, known as the 0L Network. In October 2021, Libra Coin began mining.\n\n Like Bitcoin, there were no pre-mined coins or dedicated token allocation to any parties; all coins were minted through a mining process. Unlike Bitcoin, which undergoes continuous issuance, Libra Coin has a fixed supply. By December 2023, all the Libra Coin had been issued, establishing a capped supply and making the coin permanently deflationary.\n\n Fiercely independent, the project has a long-term view because it is unburdened by venture capital funding, labs entities, a foundation, and the influence of other blockchain ecosystems. Carpe diem.',
|
|
13223
|
+
denom_units: [{
|
|
13224
|
+
denom: 'factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA',
|
|
13225
|
+
exponent: 0
|
|
13226
|
+
}, {
|
|
13227
|
+
denom: 'wLIBRA',
|
|
13228
|
+
exponent: 6
|
|
13229
|
+
}],
|
|
13230
|
+
type_asset: 'sdk.coin',
|
|
13231
|
+
address: 'osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p',
|
|
13232
|
+
base: 'factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA',
|
|
13233
|
+
name: 'wLIBRA',
|
|
13234
|
+
display: 'wLIBRA',
|
|
13235
|
+
symbol: 'wLIBRA',
|
|
13236
|
+
logo_URIs: {
|
|
13237
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/libra.png'
|
|
13238
|
+
},
|
|
13239
|
+
images: [{
|
|
13240
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/libra.png'
|
|
13241
|
+
}]
|
|
13219
13242
|
}
|
|
13220
13243
|
]
|
|
13221
13244
|
};
|
package/mainnet/saga/chain.js
CHANGED
|
@@ -54,6 +54,10 @@ const info = {
|
|
|
54
54
|
{
|
|
55
55
|
address: 'https://saga.rpc.kjnodes.com',
|
|
56
56
|
provider: 'kjnodes'
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
address: 'https://rpc.saga.bronbro.io:443',
|
|
60
|
+
provider: 'Bro_n_Bro'
|
|
57
61
|
}
|
|
58
62
|
],
|
|
59
63
|
rest: [
|
|
@@ -72,6 +76,10 @@ const info = {
|
|
|
72
76
|
{
|
|
73
77
|
address: 'https://saga.api.kjnodes.com',
|
|
74
78
|
provider: 'kjnodes'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
address: 'https://lcd.saga.bronbro.io:443',
|
|
82
|
+
provider: 'Bro_n_Bro'
|
|
75
83
|
}
|
|
76
84
|
],
|
|
77
85
|
grpc: [
|
|
@@ -90,6 +98,10 @@ const info = {
|
|
|
90
98
|
{
|
|
91
99
|
address: 'saga.grpc.kjnodes.com:443',
|
|
92
100
|
provider: 'kjnodes'
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
address: 'grpc.saga.bronbro.io:443',
|
|
104
|
+
provider: 'Bro_n_Bro'
|
|
93
105
|
}
|
|
94
106
|
]
|
|
95
107
|
},
|
package/mainnet/sei/chain.js
CHANGED
|
@@ -28,9 +28,9 @@ const info = {
|
|
|
28
28
|
}]
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
|
-
cosmos_sdk_version: 'sei-cosmos v0.2.
|
|
31
|
+
cosmos_sdk_version: 'sei-cosmos v0.2.83',
|
|
32
32
|
cosmwasm_enabled: true,
|
|
33
|
-
cosmwasm_version: 'sei-wasmd v0.
|
|
33
|
+
cosmwasm_version: 'sei-wasmd v0.1.1'
|
|
34
34
|
},
|
|
35
35
|
logo_URIs: {
|
|
36
36
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.46.
|
|
3
|
+
"version": "1.46.2",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.29.
|
|
32
|
+
"@chain-registry/utils": "^1.29.7",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.28.
|
|
36
|
+
"@chain-registry/types": "^0.28.7"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "ec3f24e38d0b578a709de2775e027dd1c99e21f0"
|
|
47
47
|
}
|