chain-registry 2.0.177 → 2.0.179
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/akash/asset-list.js +33 -0
- package/esm/mainnet/akash/chain.js +8 -8
- package/esm/mainnet/beezee/asset-list.js +39 -0
- package/esm/mainnet/beezee/ibc-data.js +31 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/kyve/chain.js +0 -8
- package/esm/mainnet/lumen/ibc-data.js +32 -0
- package/esm/mainnet/lumen/index.js +2 -0
- package/esm/mainnet/manifest/asset-list.js +23 -0
- package/esm/mainnet/manifest/chain.js +9 -3
- package/esm/mainnet/passage/chain.js +0 -8
- package/esm/testnet/manifesttestnet/asset-list.js +23 -0
- package/esm/testnet/manifesttestnet/chain.js +9 -3
- package/mainnet/akash/asset-list.js +33 -0
- package/mainnet/akash/chain.js +8 -8
- package/mainnet/beezee/asset-list.js +39 -0
- package/mainnet/beezee/ibc-data.js +31 -0
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/kyve/chain.js +0 -8
- package/mainnet/lumen/ibc-data.d.ts +3 -0
- package/mainnet/lumen/ibc-data.js +34 -0
- package/mainnet/lumen/index.d.ts +1 -0
- package/mainnet/lumen/index.js +3 -1
- package/mainnet/manifest/asset-list.js +23 -0
- package/mainnet/manifest/chain.js +9 -3
- package/mainnet/passage/chain.js +0 -8
- package/package.json +3 -3
- package/testnet/manifesttestnet/asset-list.js +23 -0
- package/testnet/manifesttestnet/chain.js +9 -3
|
@@ -29,6 +29,39 @@ const info = {
|
|
|
29
29
|
x: 'https://x.com/akashnet'
|
|
30
30
|
},
|
|
31
31
|
typeAsset: 'sdk.coin'
|
|
32
|
+
}, {
|
|
33
|
+
description: 'Akash Compute Token (ACT) is the native utility token for compute on the Akash Network.',
|
|
34
|
+
denomUnits: [
|
|
35
|
+
{
|
|
36
|
+
denom: 'uact',
|
|
37
|
+
exponent: 0
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
denom: 'mact',
|
|
41
|
+
exponent: 3
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
denom: 'act',
|
|
45
|
+
exponent: 6
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
base: 'uact',
|
|
49
|
+
name: 'Akash Compute Token',
|
|
50
|
+
display: 'act',
|
|
51
|
+
symbol: 'ACT',
|
|
52
|
+
logoURIs: {
|
|
53
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png',
|
|
54
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg'
|
|
55
|
+
},
|
|
56
|
+
images: [{
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png',
|
|
58
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg'
|
|
59
|
+
}],
|
|
60
|
+
socials: {
|
|
61
|
+
website: 'https://akash.network/',
|
|
62
|
+
x: 'https://x.com/akashnet'
|
|
63
|
+
},
|
|
64
|
+
typeAsset: 'sdk.coin'
|
|
32
65
|
}]
|
|
33
66
|
};
|
|
34
67
|
export default info;
|
|
@@ -27,28 +27,28 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
gitRepo: 'https://github.com/akash-network/node/',
|
|
30
|
-
recommendedVersion: '
|
|
31
|
-
compatibleVersions: ['
|
|
30
|
+
recommendedVersion: 'v2.0.1',
|
|
31
|
+
compatibleVersions: ['v2.0.1'],
|
|
32
32
|
binaries: {
|
|
33
|
-
"linux/amd64": 'https://github.com/akash-network/node/releases/download/
|
|
34
|
-
"linux/arm64": 'https://github.com/akash-network/node/releases/download/
|
|
33
|
+
"linux/amd64": 'https://github.com/akash-network/node/releases/download/v2.0.1/akash_linux_amd64.zip',
|
|
34
|
+
"linux/arm64": 'https://github.com/akash-network/node/releases/download/v2.0.1/akash_linux_arm64.zip'
|
|
35
35
|
},
|
|
36
36
|
consensus: {
|
|
37
37
|
type: 'cometbft',
|
|
38
|
-
version: 'v0.
|
|
38
|
+
version: 'v0.38.21',
|
|
39
39
|
repo: 'https://github.com/akash-network/cometbft',
|
|
40
|
-
tag: 'v0.
|
|
40
|
+
tag: 'v0.38.21-akash.1'
|
|
41
41
|
},
|
|
42
42
|
genesis: {
|
|
43
43
|
genesisUrl: 'https://raw.githubusercontent.com/akash-network/net/master/mainnet/genesis.json'
|
|
44
44
|
},
|
|
45
45
|
sdk: {
|
|
46
46
|
type: 'cosmos',
|
|
47
|
-
version: 'v0.
|
|
47
|
+
version: 'v0.53.5'
|
|
48
48
|
},
|
|
49
49
|
ibc: {
|
|
50
50
|
type: 'go',
|
|
51
|
-
version: '
|
|
51
|
+
version: 'v10.5.0'
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
logoURIs: {
|
|
@@ -102,6 +102,45 @@ const info = {
|
|
|
102
102
|
},
|
|
103
103
|
coingeckoId: 'osmosis'
|
|
104
104
|
},
|
|
105
|
+
{
|
|
106
|
+
description: 'LMN from Lumen',
|
|
107
|
+
denomUnits: [{
|
|
108
|
+
denom: 'ibc/693DDB2D9B4260D67C8136C22D837F37488E0FBD81857D8E9C6022332EA26E33',
|
|
109
|
+
exponent: 0,
|
|
110
|
+
aliases: ['ulmn']
|
|
111
|
+
}, {
|
|
112
|
+
denom: 'lmn',
|
|
113
|
+
exponent: 6,
|
|
114
|
+
aliases: []
|
|
115
|
+
}],
|
|
116
|
+
typeAsset: 'ics20',
|
|
117
|
+
base: 'ibc/693DDB2D9B4260D67C8136C22D837F37488E0FBD81857D8E9C6022332EA26E33',
|
|
118
|
+
name: 'Lumen',
|
|
119
|
+
display: 'lmn',
|
|
120
|
+
symbol: 'LMN',
|
|
121
|
+
traces: [{
|
|
122
|
+
type: 'ibc',
|
|
123
|
+
counterparty: {
|
|
124
|
+
chainName: 'lumen',
|
|
125
|
+
baseDenom: 'ulmn',
|
|
126
|
+
channelId: 'channel-0'
|
|
127
|
+
},
|
|
128
|
+
chain: {
|
|
129
|
+
channelId: 'channel-10',
|
|
130
|
+
path: 'transfer/channel-10/ulmn'
|
|
131
|
+
}
|
|
132
|
+
}],
|
|
133
|
+
images: [{
|
|
134
|
+
imageSync: {
|
|
135
|
+
chainName: 'lumen',
|
|
136
|
+
baseDenom: 'ulmn'
|
|
137
|
+
},
|
|
138
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
|
|
139
|
+
}],
|
|
140
|
+
logoURIs: {
|
|
141
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
|
|
142
|
+
}
|
|
143
|
+
},
|
|
105
144
|
{
|
|
106
145
|
description: 'Crypto2Mars Community Token',
|
|
107
146
|
denomUnits: [{
|
|
@@ -91,6 +91,37 @@ const info = [
|
|
|
91
91
|
}
|
|
92
92
|
}]
|
|
93
93
|
},
|
|
94
|
+
{
|
|
95
|
+
$schema: '../ibc_data.schema.json',
|
|
96
|
+
chain1: {
|
|
97
|
+
chainName: 'beezee',
|
|
98
|
+
chainId: 'beezee-1',
|
|
99
|
+
clientId: '07-tendermint-38',
|
|
100
|
+
connectionId: 'connection-10'
|
|
101
|
+
},
|
|
102
|
+
chain2: {
|
|
103
|
+
chainName: 'lumen',
|
|
104
|
+
chainId: 'lumen',
|
|
105
|
+
clientId: '07-tendermint-0',
|
|
106
|
+
connectionId: 'connection-0'
|
|
107
|
+
},
|
|
108
|
+
channels: [{
|
|
109
|
+
chain1: {
|
|
110
|
+
channelId: 'channel-10',
|
|
111
|
+
portId: 'transfer'
|
|
112
|
+
},
|
|
113
|
+
chain2: {
|
|
114
|
+
channelId: 'channel-0',
|
|
115
|
+
portId: 'transfer'
|
|
116
|
+
},
|
|
117
|
+
ordering: 'unordered',
|
|
118
|
+
version: 'ics20-1',
|
|
119
|
+
tags: {
|
|
120
|
+
preferred: true,
|
|
121
|
+
status: 'ACTIVE'
|
|
122
|
+
}
|
|
123
|
+
}]
|
|
124
|
+
},
|
|
94
125
|
{
|
|
95
126
|
$schema: '../ibc_data.schema.json',
|
|
96
127
|
chain1: {
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -91,6 +91,7 @@ import * as _lava from './lava';
|
|
|
91
91
|
import * as _likecoin from './likecoin';
|
|
92
92
|
import * as _lombardledger from './lombardledger';
|
|
93
93
|
import * as _lorenzo from './lorenzo';
|
|
94
|
+
import * as _lumen from './lumen';
|
|
94
95
|
import * as _lumera from './lumera';
|
|
95
96
|
import * as _lumnetwork from './lumnetwork';
|
|
96
97
|
import * as _mande from './mande';
|
|
@@ -269,6 +270,7 @@ const ibcData = [
|
|
|
269
270
|
..._likecoin.ibcData,
|
|
270
271
|
..._lombardledger.ibcData,
|
|
271
272
|
..._lorenzo.ibcData,
|
|
273
|
+
..._lumen.ibcData,
|
|
272
274
|
..._lumera.ibcData,
|
|
273
275
|
..._lumnetwork.ibcData,
|
|
274
276
|
..._mande.ibcData,
|
|
@@ -65,10 +65,6 @@ const info = {
|
|
|
65
65
|
address: 'https://rpc.kyve.network',
|
|
66
66
|
provider: 'kyve'
|
|
67
67
|
},
|
|
68
|
-
{
|
|
69
|
-
address: 'https://rpc-kyve.ecostake.com',
|
|
70
|
-
provider: 'ecostake'
|
|
71
|
-
},
|
|
72
68
|
{
|
|
73
69
|
address: 'https://rpc.lavenderfive.com:443/kyve',
|
|
74
70
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -123,10 +119,6 @@ const info = {
|
|
|
123
119
|
address: 'https://rest.lavenderfive.com:443/kyve',
|
|
124
120
|
provider: 'Lavender.Five Nodes 🐝'
|
|
125
121
|
},
|
|
126
|
-
{
|
|
127
|
-
address: 'https://rest-kyve.ecostake.com',
|
|
128
|
-
provider: 'ecostake'
|
|
129
|
-
},
|
|
130
122
|
{
|
|
131
123
|
address: 'https://lcd-kyve.imperator.co',
|
|
132
124
|
provider: 'Imperator.co'
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'beezee',
|
|
5
|
+
chainId: 'beezee-1',
|
|
6
|
+
clientId: '07-tendermint-38',
|
|
7
|
+
connectionId: 'connection-10'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'lumen',
|
|
11
|
+
chainId: 'lumen',
|
|
12
|
+
clientId: '07-tendermint-0',
|
|
13
|
+
connectionId: 'connection-0'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-10',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-0',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
|
@@ -53,6 +53,29 @@ const info = {
|
|
|
53
53
|
}],
|
|
54
54
|
typeAsset: 'sdk.coin'
|
|
55
55
|
},
|
|
56
|
+
{
|
|
57
|
+
description: 'Manifest Power token',
|
|
58
|
+
denomUnits: [{
|
|
59
|
+
denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
60
|
+
exponent: 0
|
|
61
|
+
}, {
|
|
62
|
+
denom: 'pwr',
|
|
63
|
+
exponent: 6
|
|
64
|
+
}],
|
|
65
|
+
base: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
66
|
+
name: 'Manifest Power Token',
|
|
67
|
+
display: 'pwr',
|
|
68
|
+
symbol: 'PWR',
|
|
69
|
+
logoURIs: {
|
|
70
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
71
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
|
|
72
|
+
},
|
|
73
|
+
images: [{
|
|
74
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
75
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
|
|
76
|
+
}],
|
|
77
|
+
typeAsset: 'sdk.coin'
|
|
78
|
+
},
|
|
56
79
|
{
|
|
57
80
|
description: 'The native token of Osmosis',
|
|
58
81
|
extendedDescription: 'Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.',
|
|
@@ -18,6 +18,12 @@ const info = {
|
|
|
18
18
|
lowGasPrice: 1.05,
|
|
19
19
|
averageGasPrice: 1.1,
|
|
20
20
|
highGasPrice: 3
|
|
21
|
+
}, {
|
|
22
|
+
denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
23
|
+
fixedMinGasPrice: 0.37,
|
|
24
|
+
lowGasPrice: 0.4,
|
|
25
|
+
averageGasPrice: 0.5,
|
|
26
|
+
highGasPrice: 1
|
|
21
27
|
}]
|
|
22
28
|
},
|
|
23
29
|
staking: {
|
|
@@ -27,10 +33,10 @@ const info = {
|
|
|
27
33
|
},
|
|
28
34
|
codebase: {
|
|
29
35
|
gitRepo: 'https://github.com/liftedinit/manifest-ledger',
|
|
30
|
-
recommendedVersion: 'v1.0.
|
|
31
|
-
compatibleVersions: ['v1.0.
|
|
36
|
+
recommendedVersion: 'v1.0.14',
|
|
37
|
+
compatibleVersions: ['v1.0.14'],
|
|
32
38
|
binaries: {
|
|
33
|
-
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.
|
|
39
|
+
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.14/manifest-ledger-v1.0.14-linux-amd64.tar.gz'
|
|
34
40
|
},
|
|
35
41
|
genesis: {
|
|
36
42
|
genesisUrl: 'https://nodes.liftedinit.app/manifest/rpc/genesis?'
|
|
@@ -60,10 +60,6 @@ const info = {
|
|
|
60
60
|
address: 'https://passage-rpc.staketab.org:443',
|
|
61
61
|
provider: 'Staketab'
|
|
62
62
|
},
|
|
63
|
-
{
|
|
64
|
-
address: 'https://rpc-passage.ecostake.com',
|
|
65
|
-
provider: 'ecostake'
|
|
66
|
-
},
|
|
67
63
|
{
|
|
68
64
|
address: 'https://rpc.lavenderfive.com:443/passage',
|
|
69
65
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -122,10 +118,6 @@ const info = {
|
|
|
122
118
|
address: 'https://passage-rest.staketab.org',
|
|
123
119
|
provider: 'Staketab'
|
|
124
120
|
},
|
|
125
|
-
{
|
|
126
|
-
address: 'https://rest-passage.ecostake.com',
|
|
127
|
-
provider: 'ecostake'
|
|
128
|
-
},
|
|
129
121
|
{
|
|
130
122
|
address: 'https://rest.lavenderfive.com:443/passage',
|
|
131
123
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -53,6 +53,29 @@ const info = {
|
|
|
53
53
|
}],
|
|
54
54
|
typeAsset: 'sdk.coin'
|
|
55
55
|
},
|
|
56
|
+
{
|
|
57
|
+
description: 'Manifest Power token',
|
|
58
|
+
denomUnits: [{
|
|
59
|
+
denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
60
|
+
exponent: 0
|
|
61
|
+
}, {
|
|
62
|
+
denom: 'pwr',
|
|
63
|
+
exponent: 6
|
|
64
|
+
}],
|
|
65
|
+
base: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
66
|
+
name: 'Manifest Power Token',
|
|
67
|
+
display: 'pwr',
|
|
68
|
+
symbol: 'PWR',
|
|
69
|
+
logoURIs: {
|
|
70
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
71
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
|
|
72
|
+
},
|
|
73
|
+
images: [{
|
|
74
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
75
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
|
|
76
|
+
}],
|
|
77
|
+
typeAsset: 'sdk.coin'
|
|
78
|
+
},
|
|
56
79
|
{
|
|
57
80
|
description: 'Osmosis token on Manifest Ledger Testnet',
|
|
58
81
|
denomUnits: [{
|
|
@@ -18,6 +18,12 @@ const info = {
|
|
|
18
18
|
lowGasPrice: 1.05,
|
|
19
19
|
averageGasPrice: 1.1,
|
|
20
20
|
highGasPrice: 3
|
|
21
|
+
}, {
|
|
22
|
+
denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
23
|
+
fixedMinGasPrice: 0.37,
|
|
24
|
+
lowGasPrice: 0.4,
|
|
25
|
+
averageGasPrice: 0.5,
|
|
26
|
+
highGasPrice: 1
|
|
21
27
|
}]
|
|
22
28
|
},
|
|
23
29
|
staking: {
|
|
@@ -27,10 +33,10 @@ const info = {
|
|
|
27
33
|
},
|
|
28
34
|
codebase: {
|
|
29
35
|
gitRepo: 'https://github.com/liftedinit/manifest-ledger',
|
|
30
|
-
recommendedVersion: '
|
|
31
|
-
compatibleVersions: ['
|
|
36
|
+
recommendedVersion: 'v2.0.1',
|
|
37
|
+
compatibleVersions: ['v2.0.1'],
|
|
32
38
|
binaries: {
|
|
33
|
-
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/
|
|
39
|
+
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v2.0.1/manifest-ledger-v2.0.1-linux-amd64.tar.gz'
|
|
34
40
|
},
|
|
35
41
|
genesis: {
|
|
36
42
|
genesisUrl: 'https://nodes.liftedinit.tech/manifest/testnet/rpc/genesis?'
|
|
@@ -31,6 +31,39 @@ const info = {
|
|
|
31
31
|
x: 'https://x.com/akashnet'
|
|
32
32
|
},
|
|
33
33
|
typeAsset: 'sdk.coin'
|
|
34
|
+
}, {
|
|
35
|
+
description: 'Akash Compute Token (ACT) is the native utility token for compute on the Akash Network.',
|
|
36
|
+
denomUnits: [
|
|
37
|
+
{
|
|
38
|
+
denom: 'uact',
|
|
39
|
+
exponent: 0
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
denom: 'mact',
|
|
43
|
+
exponent: 3
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
denom: 'act',
|
|
47
|
+
exponent: 6
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
base: 'uact',
|
|
51
|
+
name: 'Akash Compute Token',
|
|
52
|
+
display: 'act',
|
|
53
|
+
symbol: 'ACT',
|
|
54
|
+
logoURIs: {
|
|
55
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png',
|
|
56
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg'
|
|
57
|
+
},
|
|
58
|
+
images: [{
|
|
59
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png',
|
|
60
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg'
|
|
61
|
+
}],
|
|
62
|
+
socials: {
|
|
63
|
+
website: 'https://akash.network/',
|
|
64
|
+
x: 'https://x.com/akashnet'
|
|
65
|
+
},
|
|
66
|
+
typeAsset: 'sdk.coin'
|
|
34
67
|
}]
|
|
35
68
|
};
|
|
36
69
|
exports.default = info;
|
package/mainnet/akash/chain.js
CHANGED
|
@@ -29,28 +29,28 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
gitRepo: 'https://github.com/akash-network/node/',
|
|
32
|
-
recommendedVersion: '
|
|
33
|
-
compatibleVersions: ['
|
|
32
|
+
recommendedVersion: 'v2.0.1',
|
|
33
|
+
compatibleVersions: ['v2.0.1'],
|
|
34
34
|
binaries: {
|
|
35
|
-
"linux/amd64": 'https://github.com/akash-network/node/releases/download/
|
|
36
|
-
"linux/arm64": 'https://github.com/akash-network/node/releases/download/
|
|
35
|
+
"linux/amd64": 'https://github.com/akash-network/node/releases/download/v2.0.1/akash_linux_amd64.zip',
|
|
36
|
+
"linux/arm64": 'https://github.com/akash-network/node/releases/download/v2.0.1/akash_linux_arm64.zip'
|
|
37
37
|
},
|
|
38
38
|
consensus: {
|
|
39
39
|
type: 'cometbft',
|
|
40
|
-
version: 'v0.
|
|
40
|
+
version: 'v0.38.21',
|
|
41
41
|
repo: 'https://github.com/akash-network/cometbft',
|
|
42
|
-
tag: 'v0.
|
|
42
|
+
tag: 'v0.38.21-akash.1'
|
|
43
43
|
},
|
|
44
44
|
genesis: {
|
|
45
45
|
genesisUrl: 'https://raw.githubusercontent.com/akash-network/net/master/mainnet/genesis.json'
|
|
46
46
|
},
|
|
47
47
|
sdk: {
|
|
48
48
|
type: 'cosmos',
|
|
49
|
-
version: 'v0.
|
|
49
|
+
version: 'v0.53.5'
|
|
50
50
|
},
|
|
51
51
|
ibc: {
|
|
52
52
|
type: 'go',
|
|
53
|
-
version: '
|
|
53
|
+
version: 'v10.5.0'
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
56
|
logoURIs: {
|
|
@@ -104,6 +104,45 @@ const info = {
|
|
|
104
104
|
},
|
|
105
105
|
coingeckoId: 'osmosis'
|
|
106
106
|
},
|
|
107
|
+
{
|
|
108
|
+
description: 'LMN from Lumen',
|
|
109
|
+
denomUnits: [{
|
|
110
|
+
denom: 'ibc/693DDB2D9B4260D67C8136C22D837F37488E0FBD81857D8E9C6022332EA26E33',
|
|
111
|
+
exponent: 0,
|
|
112
|
+
aliases: ['ulmn']
|
|
113
|
+
}, {
|
|
114
|
+
denom: 'lmn',
|
|
115
|
+
exponent: 6,
|
|
116
|
+
aliases: []
|
|
117
|
+
}],
|
|
118
|
+
typeAsset: 'ics20',
|
|
119
|
+
base: 'ibc/693DDB2D9B4260D67C8136C22D837F37488E0FBD81857D8E9C6022332EA26E33',
|
|
120
|
+
name: 'Lumen',
|
|
121
|
+
display: 'lmn',
|
|
122
|
+
symbol: 'LMN',
|
|
123
|
+
traces: [{
|
|
124
|
+
type: 'ibc',
|
|
125
|
+
counterparty: {
|
|
126
|
+
chainName: 'lumen',
|
|
127
|
+
baseDenom: 'ulmn',
|
|
128
|
+
channelId: 'channel-0'
|
|
129
|
+
},
|
|
130
|
+
chain: {
|
|
131
|
+
channelId: 'channel-10',
|
|
132
|
+
path: 'transfer/channel-10/ulmn'
|
|
133
|
+
}
|
|
134
|
+
}],
|
|
135
|
+
images: [{
|
|
136
|
+
imageSync: {
|
|
137
|
+
chainName: 'lumen',
|
|
138
|
+
baseDenom: 'ulmn'
|
|
139
|
+
},
|
|
140
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
|
|
141
|
+
}],
|
|
142
|
+
logoURIs: {
|
|
143
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
|
|
144
|
+
}
|
|
145
|
+
},
|
|
107
146
|
{
|
|
108
147
|
description: 'Crypto2Mars Community Token',
|
|
109
148
|
denomUnits: [{
|
|
@@ -93,6 +93,37 @@ const info = [
|
|
|
93
93
|
}
|
|
94
94
|
}]
|
|
95
95
|
},
|
|
96
|
+
{
|
|
97
|
+
$schema: '../ibc_data.schema.json',
|
|
98
|
+
chain1: {
|
|
99
|
+
chainName: 'beezee',
|
|
100
|
+
chainId: 'beezee-1',
|
|
101
|
+
clientId: '07-tendermint-38',
|
|
102
|
+
connectionId: 'connection-10'
|
|
103
|
+
},
|
|
104
|
+
chain2: {
|
|
105
|
+
chainName: 'lumen',
|
|
106
|
+
chainId: 'lumen',
|
|
107
|
+
clientId: '07-tendermint-0',
|
|
108
|
+
connectionId: 'connection-0'
|
|
109
|
+
},
|
|
110
|
+
channels: [{
|
|
111
|
+
chain1: {
|
|
112
|
+
channelId: 'channel-10',
|
|
113
|
+
portId: 'transfer'
|
|
114
|
+
},
|
|
115
|
+
chain2: {
|
|
116
|
+
channelId: 'channel-0',
|
|
117
|
+
portId: 'transfer'
|
|
118
|
+
},
|
|
119
|
+
ordering: 'unordered',
|
|
120
|
+
version: 'ics20-1',
|
|
121
|
+
tags: {
|
|
122
|
+
preferred: true,
|
|
123
|
+
status: 'ACTIVE'
|
|
124
|
+
}
|
|
125
|
+
}]
|
|
126
|
+
},
|
|
96
127
|
{
|
|
97
128
|
$schema: '../ibc_data.schema.json',
|
|
98
129
|
chain1: {
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -116,6 +116,7 @@ const _lava = __importStar(require("./lava"));
|
|
|
116
116
|
const _likecoin = __importStar(require("./likecoin"));
|
|
117
117
|
const _lombardledger = __importStar(require("./lombardledger"));
|
|
118
118
|
const _lorenzo = __importStar(require("./lorenzo"));
|
|
119
|
+
const _lumen = __importStar(require("./lumen"));
|
|
119
120
|
const _lumera = __importStar(require("./lumera"));
|
|
120
121
|
const _lumnetwork = __importStar(require("./lumnetwork"));
|
|
121
122
|
const _mande = __importStar(require("./mande"));
|
|
@@ -294,6 +295,7 @@ const ibcData = [
|
|
|
294
295
|
..._likecoin.ibcData,
|
|
295
296
|
..._lombardledger.ibcData,
|
|
296
297
|
..._lorenzo.ibcData,
|
|
298
|
+
..._lumen.ibcData,
|
|
297
299
|
..._lumera.ibcData,
|
|
298
300
|
..._lumnetwork.ibcData,
|
|
299
301
|
..._mande.ibcData,
|
package/mainnet/kyve/chain.js
CHANGED
|
@@ -67,10 +67,6 @@ const info = {
|
|
|
67
67
|
address: 'https://rpc.kyve.network',
|
|
68
68
|
provider: 'kyve'
|
|
69
69
|
},
|
|
70
|
-
{
|
|
71
|
-
address: 'https://rpc-kyve.ecostake.com',
|
|
72
|
-
provider: 'ecostake'
|
|
73
|
-
},
|
|
74
70
|
{
|
|
75
71
|
address: 'https://rpc.lavenderfive.com:443/kyve',
|
|
76
72
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -125,10 +121,6 @@ const info = {
|
|
|
125
121
|
address: 'https://rest.lavenderfive.com:443/kyve',
|
|
126
122
|
provider: 'Lavender.Five Nodes 🐝'
|
|
127
123
|
},
|
|
128
|
-
{
|
|
129
|
-
address: 'https://rest-kyve.ecostake.com',
|
|
130
|
-
provider: 'ecostake'
|
|
131
|
-
},
|
|
132
124
|
{
|
|
133
125
|
address: 'https://lcd-kyve.imperator.co',
|
|
134
126
|
provider: 'Imperator.co'
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'beezee',
|
|
7
|
+
chainId: 'beezee-1',
|
|
8
|
+
clientId: '07-tendermint-38',
|
|
9
|
+
connectionId: 'connection-10'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'lumen',
|
|
13
|
+
chainId: 'lumen',
|
|
14
|
+
clientId: '07-tendermint-0',
|
|
15
|
+
connectionId: 'connection-0'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-10',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-0',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}];
|
|
34
|
+
exports.default = info;
|
package/mainnet/lumen/index.d.ts
CHANGED
package/mainnet/lumen/index.js
CHANGED
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assetList = void 0;
|
|
6
|
+
exports.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
9
10
|
exports.assetList = asset_list_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
|
@@ -55,6 +55,29 @@ const info = {
|
|
|
55
55
|
}],
|
|
56
56
|
typeAsset: 'sdk.coin'
|
|
57
57
|
},
|
|
58
|
+
{
|
|
59
|
+
description: 'Manifest Power token',
|
|
60
|
+
denomUnits: [{
|
|
61
|
+
denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
62
|
+
exponent: 0
|
|
63
|
+
}, {
|
|
64
|
+
denom: 'pwr',
|
|
65
|
+
exponent: 6
|
|
66
|
+
}],
|
|
67
|
+
base: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
68
|
+
name: 'Manifest Power Token',
|
|
69
|
+
display: 'pwr',
|
|
70
|
+
symbol: 'PWR',
|
|
71
|
+
logoURIs: {
|
|
72
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
73
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
|
|
74
|
+
},
|
|
75
|
+
images: [{
|
|
76
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
77
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
|
|
78
|
+
}],
|
|
79
|
+
typeAsset: 'sdk.coin'
|
|
80
|
+
},
|
|
58
81
|
{
|
|
59
82
|
description: 'The native token of Osmosis',
|
|
60
83
|
extendedDescription: 'Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.',
|
|
@@ -20,6 +20,12 @@ const info = {
|
|
|
20
20
|
lowGasPrice: 1.05,
|
|
21
21
|
averageGasPrice: 1.1,
|
|
22
22
|
highGasPrice: 3
|
|
23
|
+
}, {
|
|
24
|
+
denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
25
|
+
fixedMinGasPrice: 0.37,
|
|
26
|
+
lowGasPrice: 0.4,
|
|
27
|
+
averageGasPrice: 0.5,
|
|
28
|
+
highGasPrice: 1
|
|
23
29
|
}]
|
|
24
30
|
},
|
|
25
31
|
staking: {
|
|
@@ -29,10 +35,10 @@ const info = {
|
|
|
29
35
|
},
|
|
30
36
|
codebase: {
|
|
31
37
|
gitRepo: 'https://github.com/liftedinit/manifest-ledger',
|
|
32
|
-
recommendedVersion: 'v1.0.
|
|
33
|
-
compatibleVersions: ['v1.0.
|
|
38
|
+
recommendedVersion: 'v1.0.14',
|
|
39
|
+
compatibleVersions: ['v1.0.14'],
|
|
34
40
|
binaries: {
|
|
35
|
-
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.
|
|
41
|
+
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.14/manifest-ledger-v1.0.14-linux-amd64.tar.gz'
|
|
36
42
|
},
|
|
37
43
|
genesis: {
|
|
38
44
|
genesisUrl: 'https://nodes.liftedinit.app/manifest/rpc/genesis?'
|
package/mainnet/passage/chain.js
CHANGED
|
@@ -62,10 +62,6 @@ const info = {
|
|
|
62
62
|
address: 'https://passage-rpc.staketab.org:443',
|
|
63
63
|
provider: 'Staketab'
|
|
64
64
|
},
|
|
65
|
-
{
|
|
66
|
-
address: 'https://rpc-passage.ecostake.com',
|
|
67
|
-
provider: 'ecostake'
|
|
68
|
-
},
|
|
69
65
|
{
|
|
70
66
|
address: 'https://rpc.lavenderfive.com:443/passage',
|
|
71
67
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -124,10 +120,6 @@ const info = {
|
|
|
124
120
|
address: 'https://passage-rest.staketab.org',
|
|
125
121
|
provider: 'Staketab'
|
|
126
122
|
},
|
|
127
|
-
{
|
|
128
|
-
address: 'https://rest-passage.ecostake.com',
|
|
129
|
-
provider: 'ecostake'
|
|
130
|
-
},
|
|
131
123
|
{
|
|
132
124
|
address: 'https://rest.lavenderfive.com:443/passage',
|
|
133
125
|
provider: 'Lavender.Five Nodes 🐝'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.179",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.179"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "037b6974875ab951c4a96eff5d3f2fe7833679e0"
|
|
43
43
|
}
|
|
@@ -55,6 +55,29 @@ const info = {
|
|
|
55
55
|
}],
|
|
56
56
|
typeAsset: 'sdk.coin'
|
|
57
57
|
},
|
|
58
|
+
{
|
|
59
|
+
description: 'Manifest Power token',
|
|
60
|
+
denomUnits: [{
|
|
61
|
+
denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
62
|
+
exponent: 0
|
|
63
|
+
}, {
|
|
64
|
+
denom: 'pwr',
|
|
65
|
+
exponent: 6
|
|
66
|
+
}],
|
|
67
|
+
base: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
68
|
+
name: 'Manifest Power Token',
|
|
69
|
+
display: 'pwr',
|
|
70
|
+
symbol: 'PWR',
|
|
71
|
+
logoURIs: {
|
|
72
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
73
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
|
|
74
|
+
},
|
|
75
|
+
images: [{
|
|
76
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
77
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
|
|
78
|
+
}],
|
|
79
|
+
typeAsset: 'sdk.coin'
|
|
80
|
+
},
|
|
58
81
|
{
|
|
59
82
|
description: 'Osmosis token on Manifest Ledger Testnet',
|
|
60
83
|
denomUnits: [{
|
|
@@ -20,6 +20,12 @@ const info = {
|
|
|
20
20
|
lowGasPrice: 1.05,
|
|
21
21
|
averageGasPrice: 1.1,
|
|
22
22
|
highGasPrice: 3
|
|
23
|
+
}, {
|
|
24
|
+
denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
|
|
25
|
+
fixedMinGasPrice: 0.37,
|
|
26
|
+
lowGasPrice: 0.4,
|
|
27
|
+
averageGasPrice: 0.5,
|
|
28
|
+
highGasPrice: 1
|
|
23
29
|
}]
|
|
24
30
|
},
|
|
25
31
|
staking: {
|
|
@@ -29,10 +35,10 @@ const info = {
|
|
|
29
35
|
},
|
|
30
36
|
codebase: {
|
|
31
37
|
gitRepo: 'https://github.com/liftedinit/manifest-ledger',
|
|
32
|
-
recommendedVersion: '
|
|
33
|
-
compatibleVersions: ['
|
|
38
|
+
recommendedVersion: 'v2.0.1',
|
|
39
|
+
compatibleVersions: ['v2.0.1'],
|
|
34
40
|
binaries: {
|
|
35
|
-
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/
|
|
41
|
+
"linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v2.0.1/manifest-ledger-v2.0.1-linux-amd64.tar.gz'
|
|
36
42
|
},
|
|
37
43
|
genesis: {
|
|
38
44
|
genesisUrl: 'https://nodes.liftedinit.tech/manifest/testnet/rpc/genesis?'
|