chain-registry 2.0.25 → 2.0.26
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/asset-lists.js +2 -0
- package/esm/mainnet/axone/asset-list.js +31 -0
- package/esm/mainnet/axone/chain.js +73 -0
- package/esm/mainnet/axone/index.js +4 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/chain.js +1 -1
- package/esm/mainnet/elys/chain.js +7 -0
- package/esm/mainnet/realio/chain.js +7 -7
- package/esm/mainnet/routerchain/chain.js +4 -4
- package/esm/noncosmos/picasso/asset-list.js +1 -1
- package/esm/testnet/cosmosicsprovidertestnet/chain.js +7 -7
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/axone/asset-list.d.ts +3 -0
- package/mainnet/axone/asset-list.js +33 -0
- package/mainnet/axone/chain.d.ts +3 -0
- package/mainnet/axone/chain.js +75 -0
- package/mainnet/axone/index.d.ts +2 -0
- package/mainnet/axone/index.js +10 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/chain.js +1 -1
- package/mainnet/elys/chain.js +7 -0
- package/mainnet/realio/chain.js +7 -7
- package/mainnet/routerchain/chain.js +4 -4
- package/noncosmos/picasso/asset-list.js +1 -1
- package/package.json +3 -3
- package/testnet/cosmosicsprovidertestnet/chain.js +7 -7
|
@@ -19,6 +19,7 @@ import * as _assetmantle from './assetmantle';
|
|
|
19
19
|
import * as _atomone from './atomone';
|
|
20
20
|
import * as _aura from './aura';
|
|
21
21
|
import * as _axelar from './axelar';
|
|
22
|
+
import * as _axone from './axone';
|
|
22
23
|
import * as _babylon from './babylon';
|
|
23
24
|
import * as _bandchain from './bandchain';
|
|
24
25
|
import * as _beezee from './beezee';
|
|
@@ -229,6 +230,7 @@ const assetList = [
|
|
|
229
230
|
_atomone.assetList,
|
|
230
231
|
_aura.assetList,
|
|
231
232
|
_axelar.assetList,
|
|
233
|
+
_axone.assetList,
|
|
232
234
|
_babylon.assetList,
|
|
233
235
|
_bandchain.assetList,
|
|
234
236
|
_beezee.assetList,
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'axone',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of Axone.',
|
|
6
|
+
extendedDescription: 'Axone is a layer-1 designed for collaborative AI training, governance and monetization at scale.',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'uaxone',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'axone',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'uaxone',
|
|
15
|
+
name: 'Axone',
|
|
16
|
+
display: 'axone',
|
|
17
|
+
symbol: 'AXONE',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
20
|
+
},
|
|
21
|
+
images: [{
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
23
|
+
}],
|
|
24
|
+
typeAsset: 'sdk.coin',
|
|
25
|
+
socials: {
|
|
26
|
+
website: 'https://axone.xyz',
|
|
27
|
+
twitter: 'https://x.com/axonexyz'
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
export default info;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'axone',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'http://axone.xyz/',
|
|
6
|
+
networkType: 'mainnet',
|
|
7
|
+
prettyName: 'Axone',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'axone-1',
|
|
10
|
+
bech32Prefix: 'axone',
|
|
11
|
+
slip44: 118,
|
|
12
|
+
daemonName: 'axoned',
|
|
13
|
+
nodeHome: '$HOME/.axoned',
|
|
14
|
+
keyAlgos: ['secp256k1'],
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'uaxone',
|
|
18
|
+
lowGasPrice: 0.001,
|
|
19
|
+
averageGasPrice: 0.005,
|
|
20
|
+
highGasPrice: 0.01
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
stakingTokens: [{
|
|
25
|
+
denom: 'uaxone'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
gitRepo: 'https://github.com/axone-protocol/axoned',
|
|
30
|
+
recommendedVersion: 'v12.0.0',
|
|
31
|
+
compatibleVersions: ['v12.0.0'],
|
|
32
|
+
genesis: {
|
|
33
|
+
genesisUrl: 'https://raw.githubusercontent.com/axone-protocol/networks/refs/heads/main/chains/1/genesis.json'
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
logoURIs: {
|
|
37
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
38
|
+
},
|
|
39
|
+
apis: {
|
|
40
|
+
rpc: [{
|
|
41
|
+
address: 'https://rpc.axone.cumulo.com.es',
|
|
42
|
+
provider: 'cumulo'
|
|
43
|
+
}, {
|
|
44
|
+
address: 'https://axone-rpc.highstakes.ch',
|
|
45
|
+
provider: 'High Stakes 🇨🇭'
|
|
46
|
+
}],
|
|
47
|
+
rest: [{
|
|
48
|
+
address: 'https://api.axone.cumulo.com.es',
|
|
49
|
+
provider: 'cumulo'
|
|
50
|
+
}, {
|
|
51
|
+
address: 'https://axone-api.highstakes.ch',
|
|
52
|
+
provider: 'High Stakes 🇨🇭'
|
|
53
|
+
}],
|
|
54
|
+
grpc: [{
|
|
55
|
+
address: 'grpc.axone.cumulo.com.es:443',
|
|
56
|
+
provider: 'cumulo'
|
|
57
|
+
}, {
|
|
58
|
+
address: 'https://axone-grpc.highstakes.ch',
|
|
59
|
+
provider: 'High Stakes 🇨🇭'
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
explorers: [{
|
|
63
|
+
kind: 'valopers',
|
|
64
|
+
url: 'https://axone.valopers.com/',
|
|
65
|
+
txPage: 'https://axone.valopers.com/transactions/${txHash}',
|
|
66
|
+
accountPage: 'https://axone.valopers.com/account/${accountAddress}'
|
|
67
|
+
}],
|
|
68
|
+
images: [{
|
|
69
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
70
|
+
}],
|
|
71
|
+
description: 'Axone is a layer-1 designed for collaborative AI training, governance and monetization at scale.'
|
|
72
|
+
};
|
|
73
|
+
export default info;
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -19,6 +19,7 @@ import * as _assetmantle from './assetmantle';
|
|
|
19
19
|
import * as _atomone from './atomone';
|
|
20
20
|
import * as _aura from './aura';
|
|
21
21
|
import * as _axelar from './axelar';
|
|
22
|
+
import * as _axone from './axone';
|
|
22
23
|
import * as _babylon from './babylon';
|
|
23
24
|
import * as _bandchain from './bandchain';
|
|
24
25
|
import * as _beezee from './beezee';
|
|
@@ -229,6 +230,7 @@ const chains = [
|
|
|
229
230
|
_atomone.chain,
|
|
230
231
|
_aura.chain,
|
|
231
232
|
_axelar.chain,
|
|
233
|
+
_axone.chain,
|
|
232
234
|
_babylon.chain,
|
|
233
235
|
_bandchain.chain,
|
|
234
236
|
_beezee.chain,
|
|
@@ -61,7 +61,7 @@ const info = {
|
|
|
61
61
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
62
62
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
63
63
|
},
|
|
64
|
-
description: '
|
|
64
|
+
description: 'The Cosmos Hub is the flagship blockchain of the Cosmos ecosystem, launched in 2019. Today, it provides multichain services to other Cosmos blockchains, including the IBC Eureka bridge between the Cosmos ecosystem and Ethereum.',
|
|
65
65
|
apis: {
|
|
66
66
|
rpc: [
|
|
67
67
|
{
|
|
@@ -41,6 +41,13 @@ const info = {
|
|
|
41
41
|
lowGasPrice: 0.01,
|
|
42
42
|
averageGasPrice: 0.025,
|
|
43
43
|
highGasPrice: 0.03
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
denom: 'ibc/8464A63954C0350A26C8588E20719F3A0AC8705E4CA0F7450B60C3F16B2D3421',
|
|
47
|
+
fixedMinGasPrice: 11395000000,
|
|
48
|
+
lowGasPrice: 11395000000,
|
|
49
|
+
averageGasPrice: 21395000000,
|
|
50
|
+
highGasPrice: 31395000000
|
|
44
51
|
}
|
|
45
52
|
]
|
|
46
53
|
},
|
|
@@ -30,14 +30,14 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/realiotech/realio-network',
|
|
33
|
-
recommendedVersion: 'v1.0
|
|
34
|
-
compatibleVersions: ['v1.0
|
|
33
|
+
recommendedVersion: 'v1.3.0',
|
|
34
|
+
compatibleVersions: ['v1.3.0'],
|
|
35
35
|
binaries: {
|
|
36
|
-
"linux/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
37
|
-
"linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
38
|
-
"darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
39
|
-
"darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
40
|
-
"windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
36
|
+
"linux/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Linux_x86_64.tar.gz',
|
|
37
|
+
"linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Linux_arm64.tar.gz',
|
|
38
|
+
"darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Darwin_x86_64.tar.gz',
|
|
39
|
+
"darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Darwin_arm64.tar.gz',
|
|
40
|
+
"windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Windows_x86_64.zip'
|
|
41
41
|
},
|
|
42
42
|
consensus: {
|
|
43
43
|
type: 'cometbft',
|
|
@@ -28,15 +28,15 @@ const info = {
|
|
|
28
28
|
}]
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
|
-
recommendedVersion: 'v2.2.
|
|
32
|
-
compatibleVersions: ['v2.2.
|
|
31
|
+
recommendedVersion: 'v2.2.8',
|
|
32
|
+
compatibleVersions: ['v2.2.8'],
|
|
33
33
|
consensus: {
|
|
34
34
|
type: 'cometbft',
|
|
35
35
|
version: '0.37.5'
|
|
36
36
|
},
|
|
37
37
|
binaries: {
|
|
38
|
-
"linux/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.
|
|
39
|
-
"darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.
|
|
38
|
+
"linux/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.8/linux/routerd.tar.gz',
|
|
39
|
+
"darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.8/debian/routerd.tar.gz'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
42
|
genesisUrl: 'https://sentry.tm.rpc.routerprotocol.com/genesis'
|
|
@@ -27,24 +27,24 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
gitRepo: 'https://github.com/cosmos/gaia',
|
|
30
|
-
recommendedVersion: 'v25.
|
|
31
|
-
compatibleVersions: ['v25.
|
|
30
|
+
recommendedVersion: 'v25.1.0',
|
|
31
|
+
compatibleVersions: ['v25.1.0'],
|
|
32
32
|
consensus: {
|
|
33
33
|
type: 'cometbft',
|
|
34
34
|
version: 'v0.38.17'
|
|
35
35
|
},
|
|
36
36
|
binaries: {
|
|
37
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
38
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
39
|
-
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
37
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-linux-amd64',
|
|
38
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-darwin-amd64',
|
|
39
|
+
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-darwin-arm64'
|
|
40
40
|
},
|
|
41
41
|
genesis: {
|
|
42
42
|
genesisUrl: 'https://raw.githubusercontent.com/cosmos/testnets/master/interchain-security/provider/provider-genesis.json'
|
|
43
43
|
},
|
|
44
44
|
sdk: {
|
|
45
45
|
type: 'cosmos',
|
|
46
|
-
version: 'v0.53.
|
|
47
|
-
tag: 'v0.53.
|
|
46
|
+
version: 'v0.53.3',
|
|
47
|
+
tag: 'v0.53.3'
|
|
48
48
|
},
|
|
49
49
|
ibc: {
|
|
50
50
|
type: 'go',
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -44,6 +44,7 @@ const _assetmantle = __importStar(require("./assetmantle"));
|
|
|
44
44
|
const _atomone = __importStar(require("./atomone"));
|
|
45
45
|
const _aura = __importStar(require("./aura"));
|
|
46
46
|
const _axelar = __importStar(require("./axelar"));
|
|
47
|
+
const _axone = __importStar(require("./axone"));
|
|
47
48
|
const _babylon = __importStar(require("./babylon"));
|
|
48
49
|
const _bandchain = __importStar(require("./bandchain"));
|
|
49
50
|
const _beezee = __importStar(require("./beezee"));
|
|
@@ -254,6 +255,7 @@ const assetList = [
|
|
|
254
255
|
_atomone.assetList,
|
|
255
256
|
_aura.assetList,
|
|
256
257
|
_axelar.assetList,
|
|
258
|
+
_axone.assetList,
|
|
257
259
|
_babylon.assetList,
|
|
258
260
|
_bandchain.assetList,
|
|
259
261
|
_beezee.assetList,
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'axone',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of Axone.',
|
|
8
|
+
extendedDescription: 'Axone is a layer-1 designed for collaborative AI training, governance and monetization at scale.',
|
|
9
|
+
denomUnits: [{
|
|
10
|
+
denom: 'uaxone',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'axone',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'uaxone',
|
|
17
|
+
name: 'Axone',
|
|
18
|
+
display: 'axone',
|
|
19
|
+
symbol: 'AXONE',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
25
|
+
}],
|
|
26
|
+
typeAsset: 'sdk.coin',
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://axone.xyz',
|
|
29
|
+
twitter: 'https://x.com/axonexyz'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
};
|
|
33
|
+
exports.default = info;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'axone',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'http://axone.xyz/',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
prettyName: 'Axone',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'axone-1',
|
|
12
|
+
bech32Prefix: 'axone',
|
|
13
|
+
slip44: 118,
|
|
14
|
+
daemonName: 'axoned',
|
|
15
|
+
nodeHome: '$HOME/.axoned',
|
|
16
|
+
keyAlgos: ['secp256k1'],
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'uaxone',
|
|
20
|
+
lowGasPrice: 0.001,
|
|
21
|
+
averageGasPrice: 0.005,
|
|
22
|
+
highGasPrice: 0.01
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'uaxone'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
gitRepo: 'https://github.com/axone-protocol/axoned',
|
|
32
|
+
recommendedVersion: 'v12.0.0',
|
|
33
|
+
compatibleVersions: ['v12.0.0'],
|
|
34
|
+
genesis: {
|
|
35
|
+
genesisUrl: 'https://raw.githubusercontent.com/axone-protocol/networks/refs/heads/main/chains/1/genesis.json'
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
logoURIs: {
|
|
39
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
40
|
+
},
|
|
41
|
+
apis: {
|
|
42
|
+
rpc: [{
|
|
43
|
+
address: 'https://rpc.axone.cumulo.com.es',
|
|
44
|
+
provider: 'cumulo'
|
|
45
|
+
}, {
|
|
46
|
+
address: 'https://axone-rpc.highstakes.ch',
|
|
47
|
+
provider: 'High Stakes 🇨🇭'
|
|
48
|
+
}],
|
|
49
|
+
rest: [{
|
|
50
|
+
address: 'https://api.axone.cumulo.com.es',
|
|
51
|
+
provider: 'cumulo'
|
|
52
|
+
}, {
|
|
53
|
+
address: 'https://axone-api.highstakes.ch',
|
|
54
|
+
provider: 'High Stakes 🇨🇭'
|
|
55
|
+
}],
|
|
56
|
+
grpc: [{
|
|
57
|
+
address: 'grpc.axone.cumulo.com.es:443',
|
|
58
|
+
provider: 'cumulo'
|
|
59
|
+
}, {
|
|
60
|
+
address: 'https://axone-grpc.highstakes.ch',
|
|
61
|
+
provider: 'High Stakes 🇨🇭'
|
|
62
|
+
}]
|
|
63
|
+
},
|
|
64
|
+
explorers: [{
|
|
65
|
+
kind: 'valopers',
|
|
66
|
+
url: 'https://axone.valopers.com/',
|
|
67
|
+
txPage: 'https://axone.valopers.com/transactions/${txHash}',
|
|
68
|
+
accountPage: 'https://axone.valopers.com/account/${accountAddress}'
|
|
69
|
+
}],
|
|
70
|
+
images: [{
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
72
|
+
}],
|
|
73
|
+
description: 'Axone is a layer-1 designed for collaborative AI training, governance and monetization at scale.'
|
|
74
|
+
};
|
|
75
|
+
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.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assetList = asset_list_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/mainnet/chains.js
CHANGED
|
@@ -44,6 +44,7 @@ const _assetmantle = __importStar(require("./assetmantle"));
|
|
|
44
44
|
const _atomone = __importStar(require("./atomone"));
|
|
45
45
|
const _aura = __importStar(require("./aura"));
|
|
46
46
|
const _axelar = __importStar(require("./axelar"));
|
|
47
|
+
const _axone = __importStar(require("./axone"));
|
|
47
48
|
const _babylon = __importStar(require("./babylon"));
|
|
48
49
|
const _bandchain = __importStar(require("./bandchain"));
|
|
49
50
|
const _beezee = __importStar(require("./beezee"));
|
|
@@ -254,6 +255,7 @@ const chains = [
|
|
|
254
255
|
_atomone.chain,
|
|
255
256
|
_aura.chain,
|
|
256
257
|
_axelar.chain,
|
|
258
|
+
_axone.chain,
|
|
257
259
|
_babylon.chain,
|
|
258
260
|
_bandchain.chain,
|
|
259
261
|
_beezee.chain,
|
|
@@ -63,7 +63,7 @@ const info = {
|
|
|
63
63
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
64
64
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
65
65
|
},
|
|
66
|
-
description: '
|
|
66
|
+
description: 'The Cosmos Hub is the flagship blockchain of the Cosmos ecosystem, launched in 2019. Today, it provides multichain services to other Cosmos blockchains, including the IBC Eureka bridge between the Cosmos ecosystem and Ethereum.',
|
|
67
67
|
apis: {
|
|
68
68
|
rpc: [
|
|
69
69
|
{
|
package/mainnet/elys/chain.js
CHANGED
|
@@ -43,6 +43,13 @@ const info = {
|
|
|
43
43
|
lowGasPrice: 0.01,
|
|
44
44
|
averageGasPrice: 0.025,
|
|
45
45
|
highGasPrice: 0.03
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
denom: 'ibc/8464A63954C0350A26C8588E20719F3A0AC8705E4CA0F7450B60C3F16B2D3421',
|
|
49
|
+
fixedMinGasPrice: 11395000000,
|
|
50
|
+
lowGasPrice: 11395000000,
|
|
51
|
+
averageGasPrice: 21395000000,
|
|
52
|
+
highGasPrice: 31395000000
|
|
46
53
|
}
|
|
47
54
|
]
|
|
48
55
|
},
|
package/mainnet/realio/chain.js
CHANGED
|
@@ -32,14 +32,14 @@ const info = {
|
|
|
32
32
|
},
|
|
33
33
|
codebase: {
|
|
34
34
|
gitRepo: 'https://github.com/realiotech/realio-network',
|
|
35
|
-
recommendedVersion: 'v1.0
|
|
36
|
-
compatibleVersions: ['v1.0
|
|
35
|
+
recommendedVersion: 'v1.3.0',
|
|
36
|
+
compatibleVersions: ['v1.3.0'],
|
|
37
37
|
binaries: {
|
|
38
|
-
"linux/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
39
|
-
"linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
40
|
-
"darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
41
|
-
"darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
42
|
-
"windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0
|
|
38
|
+
"linux/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Linux_x86_64.tar.gz',
|
|
39
|
+
"linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Linux_arm64.tar.gz',
|
|
40
|
+
"darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Darwin_x86_64.tar.gz',
|
|
41
|
+
"darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Darwin_arm64.tar.gz',
|
|
42
|
+
"windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.3.0/realio-network_Windows_x86_64.zip'
|
|
43
43
|
},
|
|
44
44
|
consensus: {
|
|
45
45
|
type: 'cometbft',
|
|
@@ -30,15 +30,15 @@ const info = {
|
|
|
30
30
|
}]
|
|
31
31
|
},
|
|
32
32
|
codebase: {
|
|
33
|
-
recommendedVersion: 'v2.2.
|
|
34
|
-
compatibleVersions: ['v2.2.
|
|
33
|
+
recommendedVersion: 'v2.2.8',
|
|
34
|
+
compatibleVersions: ['v2.2.8'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
37
|
version: '0.37.5'
|
|
38
38
|
},
|
|
39
39
|
binaries: {
|
|
40
|
-
"linux/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.
|
|
41
|
-
"darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.
|
|
40
|
+
"linux/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.8/linux/routerd.tar.gz',
|
|
41
|
+
"darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.8/debian/routerd.tar.gz'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
44
|
genesisUrl: 'https://sentry.tm.rpc.routerprotocol.com/genesis'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.26",
|
|
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.26"
|
|
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": "b64918325dbfe3d56b91561add4b4dd664484800"
|
|
43
43
|
}
|
|
@@ -29,24 +29,24 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
gitRepo: 'https://github.com/cosmos/gaia',
|
|
32
|
-
recommendedVersion: 'v25.
|
|
33
|
-
compatibleVersions: ['v25.
|
|
32
|
+
recommendedVersion: 'v25.1.0',
|
|
33
|
+
compatibleVersions: ['v25.1.0'],
|
|
34
34
|
consensus: {
|
|
35
35
|
type: 'cometbft',
|
|
36
36
|
version: 'v0.38.17'
|
|
37
37
|
},
|
|
38
38
|
binaries: {
|
|
39
|
-
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
40
|
-
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
41
|
-
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.
|
|
39
|
+
"linux/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-linux-amd64',
|
|
40
|
+
"darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-darwin-amd64',
|
|
41
|
+
"darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.1.0/gaiad-v25.1.0-darwin-arm64'
|
|
42
42
|
},
|
|
43
43
|
genesis: {
|
|
44
44
|
genesisUrl: 'https://raw.githubusercontent.com/cosmos/testnets/master/interchain-security/provider/provider-genesis.json'
|
|
45
45
|
},
|
|
46
46
|
sdk: {
|
|
47
47
|
type: 'cosmos',
|
|
48
|
-
version: 'v0.53.
|
|
49
|
-
tag: 'v0.53.
|
|
48
|
+
version: 'v0.53.3',
|
|
49
|
+
tag: 'v0.53.3'
|
|
50
50
|
},
|
|
51
51
|
ibc: {
|
|
52
52
|
type: 'go',
|