chain-registry 2.0.24 → 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.
@@ -30,13 +30,13 @@ const info = {
30
30
  genesis: {
31
31
  genesisUrl: 'https://main.agoric.net/genesis.json'
32
32
  },
33
- recommendedVersion: 'agoric-upgrade-20',
34
- compatibleVersions: ['agoric-upgrade-20'],
33
+ recommendedVersion: 'agoric-upgrade-21',
34
+ compatibleVersions: ['agoric-upgrade-21'],
35
35
  consensus: {
36
36
  type: 'cometbft',
37
- version: 'v0.34.35',
37
+ version: 'v0.37.15',
38
38
  repo: 'https://github.com/agoric-labs/cometbft',
39
- tag: 'v0.34.35-alpha.agoric.3'
39
+ tag: 'v0.37.15-alpha.agoric.1'
40
40
  },
41
41
  cosmwasm: {
42
42
  enabled: false
@@ -48,14 +48,14 @@ const info = {
48
48
  sdk: {
49
49
  type: 'cosmos',
50
50
  repo: 'https://github.com/agoric-labs/cosmos-sdk',
51
- version: 'v0.46.16',
52
- tag: 'v0.46.16-alpha.agoric.2.5'
51
+ version: 'v0.47.17',
52
+ tag: 'v0.47.17-alpha.agoric.1'
53
53
  },
54
54
  ibc: {
55
55
  type: 'go',
56
- version: 'v6.3.1',
56
+ version: 'v7.10.0',
57
57
  repo: 'https://github.com/agoric-labs/ibc-go',
58
- tag: 'v6.3.1-alpha.agoric.4',
58
+ tag: 'v7.10.0-alpha.agoric.2',
59
59
  icsEnabled: ['ics20-1']
60
60
  }
61
61
  },
@@ -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;
@@ -0,0 +1,4 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ export const assetList = _assetList;
4
+ export const chain = _chain;
@@ -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: 'In a nutshell, Cosmos Hub bills itself as a project that solves some of the hardest problems facing the blockchain industry. It aims to offer an antidote to slow, expensive, unscalable and environmentally harmful proof-of-work protocols, like those used by Bitcoin, by offering an ecosystem of connected blockchains.\n\nThe project’s other goals include making blockchain technology less complex and difficult for developers thanks to a modular framework that demystifies decentralized apps. Last but not least, an Inter-blockchain Communication protocol makes it easier for blockchain networks to communicate with each other preventing fragmentation in the industry.\n\nCosmos Hub\'s origins can be dated back to 2014, when Tendermint, a core contributor to the network, was founded. In 2016, a white paper for Cosmos was published — and a token sale was held the following year. ATOM tokens are earned through a hybrid proof-of-stake algorithm, and they help to keep the Cosmos Hub, the project’s flagship blockchain, secure. This cryptocurrency also has a role in the network’s governance.',
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.2',
34
- compatibleVersions: ['v1.0.2'],
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.2/realio-network_Linux_x86_64.tar.gz',
37
- "linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0.2/realio-network_Linux_arm64.tar.gz',
38
- "darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0.2/realio-network_Darwin_x86_64.tar.gz',
39
- "darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0.2/realio-network_Darwin_arm64.tar.gz',
40
- "windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0.2/realio-network_Windows_x86_64.zip'
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.4',
32
- compatibleVersions: ['v2.2.4'],
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.4/linux/routerd.tar.gz',
39
- "darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.4/debian/routerd.tar.gz'
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'
@@ -28,18 +28,18 @@ const info = {
28
28
  },
29
29
  codebase: {
30
30
  gitRepo: 'https://github.com/sedaprotocol/seda-chain',
31
- recommendedVersion: 'v0.1.9',
32
- compatibleVersions: ['v0.1.8-hotfix.3', 'v0.1.9'],
31
+ recommendedVersion: 'v1.0.0',
32
+ compatibleVersions: ['v1.0.0'],
33
33
  binaries: {
34
- "linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v0.1.9/sedad-amd64',
35
- "linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v0.1.9/sedad-arm64'
34
+ "linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0/sedad-amd64',
35
+ "linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0/sedad-arm64'
36
36
  },
37
37
  genesis: {
38
38
  genesisUrl: 'https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/mainnet/genesis.json'
39
39
  },
40
40
  language: {
41
41
  type: 'go',
42
- version: '1.22.11'
42
+ version: '1.23.5'
43
43
  },
44
44
  consensus: {
45
45
  type: 'cometbft',
@@ -47,16 +47,16 @@ const info = {
47
47
  },
48
48
  sdk: {
49
49
  type: 'cosmos',
50
- version: 'v0.50.12'
50
+ version: 'v0.50.14'
51
51
  },
52
52
  cosmwasm: {
53
- version: '0.50.0',
53
+ version: 'v0.53.3',
54
54
  repo: 'https://github.com/CosmWasm/wasmd',
55
55
  enabled: true
56
56
  },
57
57
  ibc: {
58
58
  type: 'go',
59
- version: 'v8.6.1'
59
+ version: 'v8.7.0'
60
60
  }
61
61
  },
62
62
  logoURIs: {
@@ -15,7 +15,7 @@ const info = {
15
15
  }],
16
16
  typeAsset: 'substrate',
17
17
  base: 'Wei',
18
- name: 'Glimmer',
18
+ name: 'Moonbeam',
19
19
  display: 'GLMR',
20
20
  symbol: 'GLMR',
21
21
  logoURIs: {
@@ -13,7 +13,7 @@ const info = {
13
13
  }],
14
14
  typeAsset: 'substrate',
15
15
  base: 'ppica',
16
- name: 'Pica',
16
+ name: 'Picasso',
17
17
  display: 'pica',
18
18
  symbol: 'PICA',
19
19
  coingeckoId: 'picasso',
@@ -27,24 +27,24 @@ const info = {
27
27
  },
28
28
  codebase: {
29
29
  gitRepo: 'https://github.com/cosmos/gaia',
30
- recommendedVersion: 'v25.0.0',
31
- compatibleVersions: ['v25.0.0'],
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.0.0/gaiad-v25.0.0-linux-amd64',
38
- "darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.0.0/gaiad-v25.0.0-darwin-amd64',
39
- "darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.0.0/gaiad-v25.0.0-darwin-arm64'
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.0',
47
- tag: 'v0.53.0'
46
+ version: 'v0.53.3',
47
+ tag: 'v0.53.3'
48
48
  },
49
49
  ibc: {
50
50
  type: 'go',
@@ -28,11 +28,11 @@ const info = {
28
28
  },
29
29
  codebase: {
30
30
  gitRepo: 'https://github.com/sedaprotocol/seda-chain',
31
- recommendedVersion: 'v1.0.0-rc.2',
32
- compatibleVersions: ['v1.0.0-rc.2'],
31
+ recommendedVersion: 'v1.0.0-rc.6',
32
+ compatibleVersions: ['v1.0.0-rc.6'],
33
33
  binaries: {
34
- "linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.2/sedad-amd64',
35
- "linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.2/sedad-arm64'
34
+ "linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.6/sedad-amd64',
35
+ "linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.6/sedad-arm64'
36
36
  },
37
37
  genesis: {
38
38
  genesisUrl: 'https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/testnet/genesis.json'
@@ -50,7 +50,7 @@ const info = {
50
50
  version: 'v0.50.13'
51
51
  },
52
52
  cosmwasm: {
53
- version: '0.53.2',
53
+ version: 'v0.53.3',
54
54
  repo: 'https://github.com/CosmWasm/wasmd',
55
55
  enabled: true
56
56
  },
@@ -32,13 +32,13 @@ const info = {
32
32
  genesis: {
33
33
  genesisUrl: 'https://main.agoric.net/genesis.json'
34
34
  },
35
- recommendedVersion: 'agoric-upgrade-20',
36
- compatibleVersions: ['agoric-upgrade-20'],
35
+ recommendedVersion: 'agoric-upgrade-21',
36
+ compatibleVersions: ['agoric-upgrade-21'],
37
37
  consensus: {
38
38
  type: 'cometbft',
39
- version: 'v0.34.35',
39
+ version: 'v0.37.15',
40
40
  repo: 'https://github.com/agoric-labs/cometbft',
41
- tag: 'v0.34.35-alpha.agoric.3'
41
+ tag: 'v0.37.15-alpha.agoric.1'
42
42
  },
43
43
  cosmwasm: {
44
44
  enabled: false
@@ -50,14 +50,14 @@ const info = {
50
50
  sdk: {
51
51
  type: 'cosmos',
52
52
  repo: 'https://github.com/agoric-labs/cosmos-sdk',
53
- version: 'v0.46.16',
54
- tag: 'v0.46.16-alpha.agoric.2.5'
53
+ version: 'v0.47.17',
54
+ tag: 'v0.47.17-alpha.agoric.1'
55
55
  },
56
56
  ibc: {
57
57
  type: 'go',
58
- version: 'v6.3.1',
58
+ version: 'v7.10.0',
59
59
  repo: 'https://github.com/agoric-labs/ibc-go',
60
- tag: 'v6.3.1-alpha.agoric.4',
60
+ tag: 'v7.10.0-alpha.agoric.2',
61
61
  icsEnabled: ['ics20-1']
62
62
  }
63
63
  },
@@ -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,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -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,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export 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,2 @@
1
+ export declare const assetList: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
@@ -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: 'In a nutshell, Cosmos Hub bills itself as a project that solves some of the hardest problems facing the blockchain industry. It aims to offer an antidote to slow, expensive, unscalable and environmentally harmful proof-of-work protocols, like those used by Bitcoin, by offering an ecosystem of connected blockchains.\n\nThe project’s other goals include making blockchain technology less complex and difficult for developers thanks to a modular framework that demystifies decentralized apps. Last but not least, an Inter-blockchain Communication protocol makes it easier for blockchain networks to communicate with each other preventing fragmentation in the industry.\n\nCosmos Hub\'s origins can be dated back to 2014, when Tendermint, a core contributor to the network, was founded. In 2016, a white paper for Cosmos was published — and a token sale was held the following year. ATOM tokens are earned through a hybrid proof-of-stake algorithm, and they help to keep the Cosmos Hub, the project’s flagship blockchain, secure. This cryptocurrency also has a role in the network’s governance.',
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
  {
@@ -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
  },
@@ -32,14 +32,14 @@ const info = {
32
32
  },
33
33
  codebase: {
34
34
  gitRepo: 'https://github.com/realiotech/realio-network',
35
- recommendedVersion: 'v1.0.2',
36
- compatibleVersions: ['v1.0.2'],
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.2/realio-network_Linux_x86_64.tar.gz',
39
- "linux/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0.2/realio-network_Linux_arm64.tar.gz',
40
- "darwin/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0.2/realio-network_Darwin_x86_64.tar.gz',
41
- "darwin/arm64": 'https://github.com/realiotech/realio-network/releases/download/v1.0.2/realio-network_Darwin_arm64.tar.gz',
42
- "windows/amd64": 'https://github.com/realiotech/realio-network/releases/download/v1.0.2/realio-network_Windows_x86_64.zip'
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.4',
34
- compatibleVersions: ['v2.2.4'],
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.4/linux/routerd.tar.gz',
41
- "darwin/amd64": 'https://raw.githubusercontent.com/router-protocol/router-chain-binary-release/v2.2.4/debian/routerd.tar.gz'
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'
@@ -30,18 +30,18 @@ const info = {
30
30
  },
31
31
  codebase: {
32
32
  gitRepo: 'https://github.com/sedaprotocol/seda-chain',
33
- recommendedVersion: 'v0.1.9',
34
- compatibleVersions: ['v0.1.8-hotfix.3', 'v0.1.9'],
33
+ recommendedVersion: 'v1.0.0',
34
+ compatibleVersions: ['v1.0.0'],
35
35
  binaries: {
36
- "linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v0.1.9/sedad-amd64',
37
- "linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v0.1.9/sedad-arm64'
36
+ "linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0/sedad-amd64',
37
+ "linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0/sedad-arm64'
38
38
  },
39
39
  genesis: {
40
40
  genesisUrl: 'https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/mainnet/genesis.json'
41
41
  },
42
42
  language: {
43
43
  type: 'go',
44
- version: '1.22.11'
44
+ version: '1.23.5'
45
45
  },
46
46
  consensus: {
47
47
  type: 'cometbft',
@@ -49,16 +49,16 @@ const info = {
49
49
  },
50
50
  sdk: {
51
51
  type: 'cosmos',
52
- version: 'v0.50.12'
52
+ version: 'v0.50.14'
53
53
  },
54
54
  cosmwasm: {
55
- version: '0.50.0',
55
+ version: 'v0.53.3',
56
56
  repo: 'https://github.com/CosmWasm/wasmd',
57
57
  enabled: true
58
58
  },
59
59
  ibc: {
60
60
  type: 'go',
61
- version: 'v8.6.1'
61
+ version: 'v8.7.0'
62
62
  }
63
63
  },
64
64
  logoURIs: {
@@ -17,7 +17,7 @@ const info = {
17
17
  }],
18
18
  typeAsset: 'substrate',
19
19
  base: 'Wei',
20
- name: 'Glimmer',
20
+ name: 'Moonbeam',
21
21
  display: 'GLMR',
22
22
  symbol: 'GLMR',
23
23
  logoURIs: {
@@ -15,7 +15,7 @@ const info = {
15
15
  }],
16
16
  typeAsset: 'substrate',
17
17
  base: 'ppica',
18
- name: 'Pica',
18
+ name: 'Picasso',
19
19
  display: 'pica',
20
20
  symbol: 'PICA',
21
21
  coingeckoId: 'picasso',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.24",
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.24"
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": "50e9e8911d19aebba00c028768c1edd96ce46f2b"
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.0.0',
33
- compatibleVersions: ['v25.0.0'],
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.0.0/gaiad-v25.0.0-linux-amd64',
40
- "darwin/amd64": 'https://github.com/cosmos/gaia/releases/download/v25.0.0/gaiad-v25.0.0-darwin-amd64',
41
- "darwin/arm64": 'https://github.com/cosmos/gaia/releases/download/v25.0.0/gaiad-v25.0.0-darwin-arm64'
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.0',
49
- tag: 'v0.53.0'
48
+ version: 'v0.53.3',
49
+ tag: 'v0.53.3'
50
50
  },
51
51
  ibc: {
52
52
  type: 'go',
@@ -30,11 +30,11 @@ const info = {
30
30
  },
31
31
  codebase: {
32
32
  gitRepo: 'https://github.com/sedaprotocol/seda-chain',
33
- recommendedVersion: 'v1.0.0-rc.2',
34
- compatibleVersions: ['v1.0.0-rc.2'],
33
+ recommendedVersion: 'v1.0.0-rc.6',
34
+ compatibleVersions: ['v1.0.0-rc.6'],
35
35
  binaries: {
36
- "linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.2/sedad-amd64',
37
- "linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.2/sedad-arm64'
36
+ "linux/amd64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.6/sedad-amd64',
37
+ "linux/arm64": 'https://github.com/sedaprotocol/seda-chain/releases/download/v1.0.0-rc.6/sedad-arm64'
38
38
  },
39
39
  genesis: {
40
40
  genesisUrl: 'https://raw.githubusercontent.com/sedaprotocol/seda-networks/main/testnet/genesis.json'
@@ -52,7 +52,7 @@ const info = {
52
52
  version: 'v0.50.13'
53
53
  },
54
54
  cosmwasm: {
55
- version: '0.53.2',
55
+ version: 'v0.53.3',
56
56
  repo: 'https://github.com/CosmWasm/wasmd',
57
57
  enabled: true
58
58
  },