chain-registry 2.0.128 → 2.0.130
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/devnet/kyvedevnet/chain.js +10 -7
- package/esm/devnet/kyvedevnet/chain.js +10 -7
- package/esm/mainnet/asset-lists.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/elys/chain.js +1 -1
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/kyve/chain.js +13 -13
- package/esm/mainnet/mirage/asset-list.js +31 -0
- package/esm/mainnet/mirage/chain.js +90 -0
- package/esm/mainnet/mirage/ibc-data.js +32 -0
- package/esm/mainnet/mirage/index.js +6 -0
- package/esm/mainnet/namada/chain.js +14 -2
- package/esm/mainnet/osmosis/ibc-data.js +31 -0
- package/esm/mainnet/stargaze/asset-list.js +25 -0
- package/esm/testnet/kyvetestnet/chain.js +6 -6
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/elys/chain.js +1 -1
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/kyve/chain.js +13 -13
- package/mainnet/mirage/asset-list.d.ts +3 -0
- package/mainnet/mirage/asset-list.js +33 -0
- package/mainnet/mirage/chain.d.ts +3 -0
- package/mainnet/mirage/chain.js +92 -0
- package/mainnet/mirage/ibc-data.d.ts +3 -0
- package/mainnet/mirage/ibc-data.js +34 -0
- package/mainnet/mirage/index.d.ts +3 -0
- package/mainnet/mirage/index.js +12 -0
- package/mainnet/namada/chain.js +14 -2
- package/mainnet/osmosis/ibc-data.js +31 -0
- package/mainnet/stargaze/asset-list.js +25 -0
- package/package.json +3 -3
- package/testnet/kyvetestnet/chain.js +6 -6
|
@@ -16,18 +16,21 @@ const info = {
|
|
|
16
16
|
fees: {
|
|
17
17
|
feeTokens: [{
|
|
18
18
|
denom: 'tkyve',
|
|
19
|
-
fixedMinGasPrice:
|
|
19
|
+
fixedMinGasPrice: 62.5,
|
|
20
|
+
lowGasPrice: 62.5,
|
|
21
|
+
averageGasPrice: 80,
|
|
22
|
+
highGasPrice: 125
|
|
20
23
|
}]
|
|
21
24
|
},
|
|
22
25
|
codebase: {
|
|
23
26
|
gitRepo: 'https://github.com/KYVENetwork/chain',
|
|
24
|
-
recommendedVersion: '
|
|
25
|
-
compatibleVersions: ['
|
|
27
|
+
recommendedVersion: 'v2.2.0',
|
|
28
|
+
compatibleVersions: ['v2.2.0'],
|
|
26
29
|
binaries: {
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
30
|
+
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_linux_amd64',
|
|
31
|
+
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_linux_arm64',
|
|
32
|
+
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_darwin_amd64',
|
|
33
|
+
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_darwin_arm64'
|
|
31
34
|
},
|
|
32
35
|
genesis: {
|
|
33
36
|
genesisUrl: 'https://files.kyve.network/korellia-2/genesis.json'
|
|
@@ -14,18 +14,21 @@ const info = {
|
|
|
14
14
|
fees: {
|
|
15
15
|
feeTokens: [{
|
|
16
16
|
denom: 'tkyve',
|
|
17
|
-
fixedMinGasPrice:
|
|
17
|
+
fixedMinGasPrice: 62.5,
|
|
18
|
+
lowGasPrice: 62.5,
|
|
19
|
+
averageGasPrice: 80,
|
|
20
|
+
highGasPrice: 125
|
|
18
21
|
}]
|
|
19
22
|
},
|
|
20
23
|
codebase: {
|
|
21
24
|
gitRepo: 'https://github.com/KYVENetwork/chain',
|
|
22
|
-
recommendedVersion: '
|
|
23
|
-
compatibleVersions: ['
|
|
25
|
+
recommendedVersion: 'v2.2.0',
|
|
26
|
+
compatibleVersions: ['v2.2.0'],
|
|
24
27
|
binaries: {
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
28
|
+
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_linux_amd64',
|
|
29
|
+
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_linux_arm64',
|
|
30
|
+
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_darwin_amd64',
|
|
31
|
+
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_darwin_arm64'
|
|
29
32
|
},
|
|
30
33
|
genesis: {
|
|
31
34
|
genesisUrl: 'https://files.kyve.network/korellia-2/genesis.json'
|
|
@@ -126,6 +126,7 @@ import * as _medasdigital from './medasdigital';
|
|
|
126
126
|
import * as _meme from './meme';
|
|
127
127
|
import * as _migaloo from './migaloo';
|
|
128
128
|
import * as _milkyway from './milkyway';
|
|
129
|
+
import * as _mirage from './mirage';
|
|
129
130
|
import * as _mises from './mises';
|
|
130
131
|
import * as _mtgbp from './mtgbp';
|
|
131
132
|
import * as _mun from './mun';
|
|
@@ -350,6 +351,7 @@ const assetList = [
|
|
|
350
351
|
_meme.assetList,
|
|
351
352
|
_migaloo.assetList,
|
|
352
353
|
_milkyway.assetList,
|
|
354
|
+
_mirage.assetList,
|
|
353
355
|
_mises.assetList,
|
|
354
356
|
_mtgbp.assetList,
|
|
355
357
|
_mun.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -126,6 +126,7 @@ import * as _medasdigital from './medasdigital';
|
|
|
126
126
|
import * as _meme from './meme';
|
|
127
127
|
import * as _migaloo from './migaloo';
|
|
128
128
|
import * as _milkyway from './milkyway';
|
|
129
|
+
import * as _mirage from './mirage';
|
|
129
130
|
import * as _mises from './mises';
|
|
130
131
|
import * as _mtgbp from './mtgbp';
|
|
131
132
|
import * as _mun from './mun';
|
|
@@ -350,6 +351,7 @@ const chains = [
|
|
|
350
351
|
_meme.chain,
|
|
351
352
|
_migaloo.chain,
|
|
352
353
|
_milkyway.chain,
|
|
354
|
+
_mirage.chain,
|
|
353
355
|
_mises.chain,
|
|
354
356
|
_mtgbp.chain,
|
|
355
357
|
_mun.chain,
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -98,6 +98,7 @@ import * as _medasdigital from './medasdigital';
|
|
|
98
98
|
import * as _meme from './meme';
|
|
99
99
|
import * as _migaloo from './migaloo';
|
|
100
100
|
import * as _milkyway from './milkyway';
|
|
101
|
+
import * as _mirage from './mirage';
|
|
101
102
|
import * as _mtgbp from './mtgbp';
|
|
102
103
|
import * as _neutaro from './neutaro';
|
|
103
104
|
import * as _neutron from './neutron';
|
|
@@ -273,6 +274,7 @@ const ibcData = [
|
|
|
273
274
|
..._meme.ibcData,
|
|
274
275
|
..._migaloo.ibcData,
|
|
275
276
|
..._milkyway.ibcData,
|
|
277
|
+
..._mirage.ibcData,
|
|
276
278
|
..._mtgbp.ibcData,
|
|
277
279
|
..._neutaro.ibcData,
|
|
278
280
|
..._neutron.ibcData,
|
|
@@ -15,10 +15,10 @@ const info = {
|
|
|
15
15
|
fees: {
|
|
16
16
|
feeTokens: [{
|
|
17
17
|
denom: 'ukyve',
|
|
18
|
-
fixedMinGasPrice:
|
|
19
|
-
lowGasPrice:
|
|
20
|
-
averageGasPrice:
|
|
21
|
-
highGasPrice:
|
|
18
|
+
fixedMinGasPrice: 62.5,
|
|
19
|
+
lowGasPrice: 62.5,
|
|
20
|
+
averageGasPrice: 80,
|
|
21
|
+
highGasPrice: 125
|
|
22
22
|
}]
|
|
23
23
|
},
|
|
24
24
|
staking: {
|
|
@@ -28,30 +28,30 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/KYVENetwork/chain',
|
|
31
|
-
recommendedVersion: 'v2.
|
|
32
|
-
compatibleVersions: ['v2.
|
|
31
|
+
recommendedVersion: 'v2.2.0',
|
|
32
|
+
compatibleVersions: ['v2.2.0'],
|
|
33
33
|
consensus: {
|
|
34
34
|
type: 'cometbft',
|
|
35
35
|
version: 'v0.38.17',
|
|
36
36
|
tag: 'v0.38.17'
|
|
37
37
|
},
|
|
38
38
|
binaries: {
|
|
39
|
-
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.
|
|
40
|
-
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.
|
|
41
|
-
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.
|
|
42
|
-
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.
|
|
39
|
+
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_mainnet_linux_amd64.tar.gz',
|
|
40
|
+
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_mainnet_linux_arm64.tar.gz',
|
|
41
|
+
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_mainnet_darwin_amd64.tar.gz',
|
|
42
|
+
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_mainnet_darwin_arm64.tar.gz'
|
|
43
43
|
},
|
|
44
44
|
genesis: {
|
|
45
45
|
genesisUrl: 'https://raw.githubusercontent.com/KYVENetwork/networks/main/kyve-1/genesis.json'
|
|
46
46
|
},
|
|
47
47
|
sdk: {
|
|
48
48
|
type: 'cosmos',
|
|
49
|
-
version: 'v0.50.
|
|
50
|
-
tag: 'v0.50.
|
|
49
|
+
version: 'v0.50.14',
|
|
50
|
+
tag: 'v0.50.14-kyve-rc1'
|
|
51
51
|
},
|
|
52
52
|
ibc: {
|
|
53
53
|
type: 'go',
|
|
54
|
-
version: 'v8.
|
|
54
|
+
version: 'v8.7.0'
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
logoURIs: {
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'mirage',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of Mirage. A social platform for true discourse. Decentralized. Unstoppable.',
|
|
6
|
+
extendedDescription: 'MIRAGE powers Mirage, a social platform where communities own their conversations. No corporate gatekeepers, no censorship, no single point of control. True discourse. Decentralized. Unstoppable.',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'umirage',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'mirage',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'umirage',
|
|
15
|
+
name: 'Mirage',
|
|
16
|
+
display: 'mirage',
|
|
17
|
+
symbol: 'MIRAGE',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
20
|
+
},
|
|
21
|
+
images: [{
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
23
|
+
}],
|
|
24
|
+
socials: {
|
|
25
|
+
website: 'https://mirage.foundation',
|
|
26
|
+
x: 'https://x.com/getmirage'
|
|
27
|
+
},
|
|
28
|
+
typeAsset: 'sdk.coin'
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
export default info;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'mirage',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
prettyName: 'Mirage',
|
|
7
|
+
chainType: 'cosmos',
|
|
8
|
+
chainId: 'mirage-1',
|
|
9
|
+
bech32Prefix: 'mirage',
|
|
10
|
+
daemonName: 'miraged',
|
|
11
|
+
nodeHome: '$HOME/.mirage/main',
|
|
12
|
+
keyAlgos: ['secp256k1'],
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'umirage',
|
|
17
|
+
fixedMinGasPrice: 0.025,
|
|
18
|
+
lowGasPrice: 0.025,
|
|
19
|
+
averageGasPrice: 0.05,
|
|
20
|
+
highGasPrice: 0.1
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
stakingTokens: [{
|
|
25
|
+
denom: 'umirage'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
gitRepo: 'https://github.com/MirageFoundation/mirage-node',
|
|
30
|
+
sdk: {
|
|
31
|
+
type: 'cosmos',
|
|
32
|
+
version: '0.53'
|
|
33
|
+
},
|
|
34
|
+
ibc: {
|
|
35
|
+
type: 'go',
|
|
36
|
+
version: '10.2.0'
|
|
37
|
+
},
|
|
38
|
+
consensus: {
|
|
39
|
+
type: 'cometbft',
|
|
40
|
+
version: '0.38.17'
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
logoURIs: {
|
|
44
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
45
|
+
},
|
|
46
|
+
description: 'Mirage is what Reddit could have been if it never sold out. Free speech lives on-chain. True discourse. Decentralized. Unstoppable.',
|
|
47
|
+
apis: {
|
|
48
|
+
rpc: [
|
|
49
|
+
{
|
|
50
|
+
address: 'http://mirage.talk:26657',
|
|
51
|
+
provider: 'Mirage'
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
address: 'http://mirage.vote:26657',
|
|
55
|
+
provider: 'Mirage'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
address: 'http://146.190.108.140:26657',
|
|
59
|
+
provider: 'Mirage'
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
address: 'http://139.59.9.96:26657',
|
|
63
|
+
provider: 'Mirage'
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
grpc: [
|
|
67
|
+
{
|
|
68
|
+
address: 'mirage.talk:9090',
|
|
69
|
+
provider: 'Mirage'
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
address: 'mirage.vote:9090',
|
|
73
|
+
provider: 'Mirage'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
address: '146.190.108.140:9090',
|
|
77
|
+
provider: 'Mirage'
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
address: '139.59.9.96:9090',
|
|
81
|
+
provider: 'Mirage'
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
explorers: [],
|
|
86
|
+
images: [{
|
|
87
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
88
|
+
}]
|
|
89
|
+
};
|
|
90
|
+
export default info;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'mirage',
|
|
5
|
+
chainId: 'mirage-1',
|
|
6
|
+
clientId: '07-tendermint-1',
|
|
7
|
+
connectionId: 'connection-0'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'osmosis',
|
|
11
|
+
chainId: 'osmosis-1',
|
|
12
|
+
clientId: '07-tendermint-3643',
|
|
13
|
+
connectionId: 'connection-10990'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-0',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-108600',
|
|
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;
|
|
@@ -30,7 +30,19 @@ const info = {
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
codebase: {
|
|
33
|
-
gitRepo: 'https://github.com/namada-net/namada'
|
|
33
|
+
gitRepo: 'https://github.com/namada-net/namada',
|
|
34
|
+
language: {
|
|
35
|
+
type: 'rust'
|
|
36
|
+
},
|
|
37
|
+
consensus: {
|
|
38
|
+
type: 'cometbft'
|
|
39
|
+
},
|
|
40
|
+
genesis: {
|
|
41
|
+
genesisUrl: 'https://github.com/namada-net/namada-mainnet-genesis/tree/main/genesis'
|
|
42
|
+
},
|
|
43
|
+
ibc: {
|
|
44
|
+
type: 'go'
|
|
45
|
+
}
|
|
34
46
|
},
|
|
35
47
|
description: 'Namada is a composable privacy layer for the multichain ecosystem. It\'s a proof-of-stake Layer 1 designed to protect user data through a shielded asset hub and shielded cross-chain transactions. Namada can support any asset and helps bring data protection to existing chains, dapps, tokens, and NFTs. Built primarily in Rust, Namada uses CometBFT consensus and the IBC (Inter-Blockchain Communication) protocol for multichain interoperability, with the ability to expand to additional ecosystems beyond IBC. By leveraging advanced cryptography such as zk-SNARKs and a strong interoperability model, Namada serves as a privacy-preserving building block for users interacting across many blockchains and protocols.',
|
|
36
48
|
apis: {
|
|
@@ -73,7 +85,7 @@ const info = {
|
|
|
73
85
|
},
|
|
74
86
|
{
|
|
75
87
|
provider: 'L0vd',
|
|
76
|
-
address: 'https://namada-mainnet.rpc.l0vd.com
|
|
88
|
+
address: 'https://namada-mainnet.rpc.l0vd.com'
|
|
77
89
|
},
|
|
78
90
|
{
|
|
79
91
|
provider: 'Loser',
|
|
@@ -3131,6 +3131,37 @@ const info = [
|
|
|
3131
3131
|
}
|
|
3132
3132
|
}]
|
|
3133
3133
|
},
|
|
3134
|
+
{
|
|
3135
|
+
$schema: '../ibc_data.schema.json',
|
|
3136
|
+
chain1: {
|
|
3137
|
+
chainName: 'mirage',
|
|
3138
|
+
chainId: 'mirage-1',
|
|
3139
|
+
clientId: '07-tendermint-1',
|
|
3140
|
+
connectionId: 'connection-0'
|
|
3141
|
+
},
|
|
3142
|
+
chain2: {
|
|
3143
|
+
chainName: 'osmosis',
|
|
3144
|
+
chainId: 'osmosis-1',
|
|
3145
|
+
clientId: '07-tendermint-3643',
|
|
3146
|
+
connectionId: 'connection-10990'
|
|
3147
|
+
},
|
|
3148
|
+
channels: [{
|
|
3149
|
+
chain1: {
|
|
3150
|
+
channelId: 'channel-0',
|
|
3151
|
+
portId: 'transfer'
|
|
3152
|
+
},
|
|
3153
|
+
chain2: {
|
|
3154
|
+
channelId: 'channel-108600',
|
|
3155
|
+
portId: 'transfer'
|
|
3156
|
+
},
|
|
3157
|
+
ordering: 'unordered',
|
|
3158
|
+
version: 'ics20-1',
|
|
3159
|
+
tags: {
|
|
3160
|
+
preferred: true,
|
|
3161
|
+
status: 'ACTIVE'
|
|
3162
|
+
}
|
|
3163
|
+
}]
|
|
3164
|
+
},
|
|
3134
3165
|
{
|
|
3135
3166
|
$schema: '../ibc_data.schema.json',
|
|
3136
3167
|
chain1: {
|
|
@@ -861,6 +861,31 @@ const info = {
|
|
|
861
861
|
baseDenom: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/stlth'
|
|
862
862
|
}
|
|
863
863
|
}]
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
description: 'The official token of the Clown Society, originating on Stargaze.',
|
|
867
|
+
denomUnits: [{
|
|
868
|
+
denom: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uclw',
|
|
869
|
+
exponent: 0
|
|
870
|
+
}, {
|
|
871
|
+
denom: 'CLW',
|
|
872
|
+
exponent: 6
|
|
873
|
+
}],
|
|
874
|
+
base: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uclw',
|
|
875
|
+
name: 'Clown Society',
|
|
876
|
+
display: 'CLW',
|
|
877
|
+
symbol: 'CLW',
|
|
878
|
+
logoURIs: {
|
|
879
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/clw.png'
|
|
880
|
+
},
|
|
881
|
+
images: [{
|
|
882
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/clw.png'
|
|
883
|
+
}],
|
|
884
|
+
socials: {
|
|
885
|
+
website: 'https://www.clown-society.com/',
|
|
886
|
+
x: 'https://x.com/ClownsocieT'
|
|
887
|
+
},
|
|
888
|
+
typeAsset: 'sdk.coin'
|
|
864
889
|
}
|
|
865
890
|
]
|
|
866
891
|
};
|
|
@@ -27,13 +27,13 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
gitRepo: 'https://github.com/KYVENetwork/chain',
|
|
30
|
-
recommendedVersion: '
|
|
31
|
-
compatibleVersions: ['
|
|
30
|
+
recommendedVersion: 'v2.2.0',
|
|
31
|
+
compatibleVersions: ['v2.2.0'],
|
|
32
32
|
binaries: {
|
|
33
|
-
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/
|
|
34
|
-
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/
|
|
35
|
-
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/
|
|
36
|
-
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/
|
|
33
|
+
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_linux_amd64',
|
|
34
|
+
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_linux_arm64',
|
|
35
|
+
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_darwin_amd64',
|
|
36
|
+
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_darwin_arm64'
|
|
37
37
|
},
|
|
38
38
|
genesis: {
|
|
39
39
|
genesisUrl: 'https://raw.githubusercontent.com/KYVENetwork/networks/main/kaon-1/genesis.json'
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -151,6 +151,7 @@ const _medasdigital = __importStar(require("./medasdigital"));
|
|
|
151
151
|
const _meme = __importStar(require("./meme"));
|
|
152
152
|
const _migaloo = __importStar(require("./migaloo"));
|
|
153
153
|
const _milkyway = __importStar(require("./milkyway"));
|
|
154
|
+
const _mirage = __importStar(require("./mirage"));
|
|
154
155
|
const _mises = __importStar(require("./mises"));
|
|
155
156
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
156
157
|
const _mun = __importStar(require("./mun"));
|
|
@@ -375,6 +376,7 @@ const assetList = [
|
|
|
375
376
|
_meme.assetList,
|
|
376
377
|
_migaloo.assetList,
|
|
377
378
|
_milkyway.assetList,
|
|
379
|
+
_mirage.assetList,
|
|
378
380
|
_mises.assetList,
|
|
379
381
|
_mtgbp.assetList,
|
|
380
382
|
_mun.assetList,
|
package/mainnet/chains.js
CHANGED
|
@@ -151,6 +151,7 @@ const _medasdigital = __importStar(require("./medasdigital"));
|
|
|
151
151
|
const _meme = __importStar(require("./meme"));
|
|
152
152
|
const _migaloo = __importStar(require("./migaloo"));
|
|
153
153
|
const _milkyway = __importStar(require("./milkyway"));
|
|
154
|
+
const _mirage = __importStar(require("./mirage"));
|
|
154
155
|
const _mises = __importStar(require("./mises"));
|
|
155
156
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
156
157
|
const _mun = __importStar(require("./mun"));
|
|
@@ -375,6 +376,7 @@ const chains = [
|
|
|
375
376
|
_meme.chain,
|
|
376
377
|
_migaloo.chain,
|
|
377
378
|
_milkyway.chain,
|
|
379
|
+
_mirage.chain,
|
|
378
380
|
_mises.chain,
|
|
379
381
|
_mtgbp.chain,
|
|
380
382
|
_mun.chain,
|
package/mainnet/elys/chain.js
CHANGED
package/mainnet/ibc-data.js
CHANGED
|
@@ -123,6 +123,7 @@ const _medasdigital = __importStar(require("./medasdigital"));
|
|
|
123
123
|
const _meme = __importStar(require("./meme"));
|
|
124
124
|
const _migaloo = __importStar(require("./migaloo"));
|
|
125
125
|
const _milkyway = __importStar(require("./milkyway"));
|
|
126
|
+
const _mirage = __importStar(require("./mirage"));
|
|
126
127
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
127
128
|
const _neutaro = __importStar(require("./neutaro"));
|
|
128
129
|
const _neutron = __importStar(require("./neutron"));
|
|
@@ -298,6 +299,7 @@ const ibcData = [
|
|
|
298
299
|
..._meme.ibcData,
|
|
299
300
|
..._migaloo.ibcData,
|
|
300
301
|
..._milkyway.ibcData,
|
|
302
|
+
..._mirage.ibcData,
|
|
301
303
|
..._mtgbp.ibcData,
|
|
302
304
|
..._neutaro.ibcData,
|
|
303
305
|
..._neutron.ibcData,
|
package/mainnet/kyve/chain.js
CHANGED
|
@@ -17,10 +17,10 @@ const info = {
|
|
|
17
17
|
fees: {
|
|
18
18
|
feeTokens: [{
|
|
19
19
|
denom: 'ukyve',
|
|
20
|
-
fixedMinGasPrice:
|
|
21
|
-
lowGasPrice:
|
|
22
|
-
averageGasPrice:
|
|
23
|
-
highGasPrice:
|
|
20
|
+
fixedMinGasPrice: 62.5,
|
|
21
|
+
lowGasPrice: 62.5,
|
|
22
|
+
averageGasPrice: 80,
|
|
23
|
+
highGasPrice: 125
|
|
24
24
|
}]
|
|
25
25
|
},
|
|
26
26
|
staking: {
|
|
@@ -30,30 +30,30 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/KYVENetwork/chain',
|
|
33
|
-
recommendedVersion: 'v2.
|
|
34
|
-
compatibleVersions: ['v2.
|
|
33
|
+
recommendedVersion: 'v2.2.0',
|
|
34
|
+
compatibleVersions: ['v2.2.0'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
37
|
version: 'v0.38.17',
|
|
38
38
|
tag: 'v0.38.17'
|
|
39
39
|
},
|
|
40
40
|
binaries: {
|
|
41
|
-
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.
|
|
42
|
-
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.
|
|
43
|
-
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.
|
|
44
|
-
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.
|
|
41
|
+
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_mainnet_linux_amd64.tar.gz',
|
|
42
|
+
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_mainnet_linux_arm64.tar.gz',
|
|
43
|
+
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_mainnet_darwin_amd64.tar.gz',
|
|
44
|
+
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_mainnet_darwin_arm64.tar.gz'
|
|
45
45
|
},
|
|
46
46
|
genesis: {
|
|
47
47
|
genesisUrl: 'https://raw.githubusercontent.com/KYVENetwork/networks/main/kyve-1/genesis.json'
|
|
48
48
|
},
|
|
49
49
|
sdk: {
|
|
50
50
|
type: 'cosmos',
|
|
51
|
-
version: 'v0.50.
|
|
52
|
-
tag: 'v0.50.
|
|
51
|
+
version: 'v0.50.14',
|
|
52
|
+
tag: 'v0.50.14-kyve-rc1'
|
|
53
53
|
},
|
|
54
54
|
ibc: {
|
|
55
55
|
type: 'go',
|
|
56
|
-
version: 'v8.
|
|
56
|
+
version: 'v8.7.0'
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
59
|
logoURIs: {
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'mirage',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of Mirage. A social platform for true discourse. Decentralized. Unstoppable.',
|
|
8
|
+
extendedDescription: 'MIRAGE powers Mirage, a social platform where communities own their conversations. No corporate gatekeepers, no censorship, no single point of control. True discourse. Decentralized. Unstoppable.',
|
|
9
|
+
denomUnits: [{
|
|
10
|
+
denom: 'umirage',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'mirage',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'umirage',
|
|
17
|
+
name: 'Mirage',
|
|
18
|
+
display: 'mirage',
|
|
19
|
+
symbol: 'MIRAGE',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
25
|
+
}],
|
|
26
|
+
socials: {
|
|
27
|
+
website: 'https://mirage.foundation',
|
|
28
|
+
x: 'https://x.com/getmirage'
|
|
29
|
+
},
|
|
30
|
+
typeAsset: 'sdk.coin'
|
|
31
|
+
}]
|
|
32
|
+
};
|
|
33
|
+
exports.default = info;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'mirage',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
prettyName: 'Mirage',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
chainId: 'mirage-1',
|
|
11
|
+
bech32Prefix: 'mirage',
|
|
12
|
+
daemonName: 'miraged',
|
|
13
|
+
nodeHome: '$HOME/.mirage/main',
|
|
14
|
+
keyAlgos: ['secp256k1'],
|
|
15
|
+
slip44: 118,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'umirage',
|
|
19
|
+
fixedMinGasPrice: 0.025,
|
|
20
|
+
lowGasPrice: 0.025,
|
|
21
|
+
averageGasPrice: 0.05,
|
|
22
|
+
highGasPrice: 0.1
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'umirage'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
gitRepo: 'https://github.com/MirageFoundation/mirage-node',
|
|
32
|
+
sdk: {
|
|
33
|
+
type: 'cosmos',
|
|
34
|
+
version: '0.53'
|
|
35
|
+
},
|
|
36
|
+
ibc: {
|
|
37
|
+
type: 'go',
|
|
38
|
+
version: '10.2.0'
|
|
39
|
+
},
|
|
40
|
+
consensus: {
|
|
41
|
+
type: 'cometbft',
|
|
42
|
+
version: '0.38.17'
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
logoURIs: {
|
|
46
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
47
|
+
},
|
|
48
|
+
description: 'Mirage is what Reddit could have been if it never sold out. Free speech lives on-chain. True discourse. Decentralized. Unstoppable.',
|
|
49
|
+
apis: {
|
|
50
|
+
rpc: [
|
|
51
|
+
{
|
|
52
|
+
address: 'http://mirage.talk:26657',
|
|
53
|
+
provider: 'Mirage'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
address: 'http://mirage.vote:26657',
|
|
57
|
+
provider: 'Mirage'
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
address: 'http://146.190.108.140:26657',
|
|
61
|
+
provider: 'Mirage'
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
address: 'http://139.59.9.96:26657',
|
|
65
|
+
provider: 'Mirage'
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
grpc: [
|
|
69
|
+
{
|
|
70
|
+
address: 'mirage.talk:9090',
|
|
71
|
+
provider: 'Mirage'
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
address: 'mirage.vote:9090',
|
|
75
|
+
provider: 'Mirage'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: '146.190.108.140:9090',
|
|
79
|
+
provider: 'Mirage'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
address: '139.59.9.96:9090',
|
|
83
|
+
provider: 'Mirage'
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
explorers: [],
|
|
88
|
+
images: [{
|
|
89
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
90
|
+
}]
|
|
91
|
+
};
|
|
92
|
+
exports.default = info;
|
|
@@ -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: 'mirage',
|
|
7
|
+
chainId: 'mirage-1',
|
|
8
|
+
clientId: '07-tendermint-1',
|
|
9
|
+
connectionId: 'connection-0'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'osmosis',
|
|
13
|
+
chainId: 'osmosis-1',
|
|
14
|
+
clientId: '07-tendermint-3643',
|
|
15
|
+
connectionId: 'connection-10990'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-0',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-108600',
|
|
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;
|
|
@@ -0,0 +1,12 @@
|
|
|
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.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
10
|
+
exports.assetList = asset_list_1.default;
|
|
11
|
+
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
package/mainnet/namada/chain.js
CHANGED
|
@@ -32,7 +32,19 @@ const info = {
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
codebase: {
|
|
35
|
-
gitRepo: 'https://github.com/namada-net/namada'
|
|
35
|
+
gitRepo: 'https://github.com/namada-net/namada',
|
|
36
|
+
language: {
|
|
37
|
+
type: 'rust'
|
|
38
|
+
},
|
|
39
|
+
consensus: {
|
|
40
|
+
type: 'cometbft'
|
|
41
|
+
},
|
|
42
|
+
genesis: {
|
|
43
|
+
genesisUrl: 'https://github.com/namada-net/namada-mainnet-genesis/tree/main/genesis'
|
|
44
|
+
},
|
|
45
|
+
ibc: {
|
|
46
|
+
type: 'go'
|
|
47
|
+
}
|
|
36
48
|
},
|
|
37
49
|
description: 'Namada is a composable privacy layer for the multichain ecosystem. It\'s a proof-of-stake Layer 1 designed to protect user data through a shielded asset hub and shielded cross-chain transactions. Namada can support any asset and helps bring data protection to existing chains, dapps, tokens, and NFTs. Built primarily in Rust, Namada uses CometBFT consensus and the IBC (Inter-Blockchain Communication) protocol for multichain interoperability, with the ability to expand to additional ecosystems beyond IBC. By leveraging advanced cryptography such as zk-SNARKs and a strong interoperability model, Namada serves as a privacy-preserving building block for users interacting across many blockchains and protocols.',
|
|
38
50
|
apis: {
|
|
@@ -75,7 +87,7 @@ const info = {
|
|
|
75
87
|
},
|
|
76
88
|
{
|
|
77
89
|
provider: 'L0vd',
|
|
78
|
-
address: 'https://namada-mainnet.rpc.l0vd.com
|
|
90
|
+
address: 'https://namada-mainnet.rpc.l0vd.com'
|
|
79
91
|
},
|
|
80
92
|
{
|
|
81
93
|
provider: 'Loser',
|
|
@@ -3133,6 +3133,37 @@ const info = [
|
|
|
3133
3133
|
}
|
|
3134
3134
|
}]
|
|
3135
3135
|
},
|
|
3136
|
+
{
|
|
3137
|
+
$schema: '../ibc_data.schema.json',
|
|
3138
|
+
chain1: {
|
|
3139
|
+
chainName: 'mirage',
|
|
3140
|
+
chainId: 'mirage-1',
|
|
3141
|
+
clientId: '07-tendermint-1',
|
|
3142
|
+
connectionId: 'connection-0'
|
|
3143
|
+
},
|
|
3144
|
+
chain2: {
|
|
3145
|
+
chainName: 'osmosis',
|
|
3146
|
+
chainId: 'osmosis-1',
|
|
3147
|
+
clientId: '07-tendermint-3643',
|
|
3148
|
+
connectionId: 'connection-10990'
|
|
3149
|
+
},
|
|
3150
|
+
channels: [{
|
|
3151
|
+
chain1: {
|
|
3152
|
+
channelId: 'channel-0',
|
|
3153
|
+
portId: 'transfer'
|
|
3154
|
+
},
|
|
3155
|
+
chain2: {
|
|
3156
|
+
channelId: 'channel-108600',
|
|
3157
|
+
portId: 'transfer'
|
|
3158
|
+
},
|
|
3159
|
+
ordering: 'unordered',
|
|
3160
|
+
version: 'ics20-1',
|
|
3161
|
+
tags: {
|
|
3162
|
+
preferred: true,
|
|
3163
|
+
status: 'ACTIVE'
|
|
3164
|
+
}
|
|
3165
|
+
}]
|
|
3166
|
+
},
|
|
3136
3167
|
{
|
|
3137
3168
|
$schema: '../ibc_data.schema.json',
|
|
3138
3169
|
chain1: {
|
|
@@ -863,6 +863,31 @@ const info = {
|
|
|
863
863
|
baseDenom: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/stlth'
|
|
864
864
|
}
|
|
865
865
|
}]
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
description: 'The official token of the Clown Society, originating on Stargaze.',
|
|
869
|
+
denomUnits: [{
|
|
870
|
+
denom: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uclw',
|
|
871
|
+
exponent: 0
|
|
872
|
+
}, {
|
|
873
|
+
denom: 'CLW',
|
|
874
|
+
exponent: 6
|
|
875
|
+
}],
|
|
876
|
+
base: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uclw',
|
|
877
|
+
name: 'Clown Society',
|
|
878
|
+
display: 'CLW',
|
|
879
|
+
symbol: 'CLW',
|
|
880
|
+
logoURIs: {
|
|
881
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/clw.png'
|
|
882
|
+
},
|
|
883
|
+
images: [{
|
|
884
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/clw.png'
|
|
885
|
+
}],
|
|
886
|
+
socials: {
|
|
887
|
+
website: 'https://www.clown-society.com/',
|
|
888
|
+
x: 'https://x.com/ClownsocieT'
|
|
889
|
+
},
|
|
890
|
+
typeAsset: 'sdk.coin'
|
|
866
891
|
}
|
|
867
892
|
]
|
|
868
893
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.130",
|
|
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.130"
|
|
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": "74111bad28ce60f5749753218d547033ae3e4594"
|
|
43
43
|
}
|
|
@@ -29,13 +29,13 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
gitRepo: 'https://github.com/KYVENetwork/chain',
|
|
32
|
-
recommendedVersion: '
|
|
33
|
-
compatibleVersions: ['
|
|
32
|
+
recommendedVersion: 'v2.2.0',
|
|
33
|
+
compatibleVersions: ['v2.2.0'],
|
|
34
34
|
binaries: {
|
|
35
|
-
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/
|
|
36
|
-
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/
|
|
37
|
-
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/
|
|
38
|
-
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/
|
|
35
|
+
"linux/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_linux_amd64',
|
|
36
|
+
"linux/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_linux_arm64',
|
|
37
|
+
"darwin/amd64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_darwin_amd64',
|
|
38
|
+
"darwin/arm64": 'https://github.com/KYVENetwork/chain/releases/download/v2.2.0/kyved_kaon_darwin_arm64'
|
|
39
39
|
},
|
|
40
40
|
genesis: {
|
|
41
41
|
genesisUrl: 'https://raw.githubusercontent.com/KYVENetwork/networks/main/kaon-1/genesis.json'
|