chain-registry 2.0.128 → 2.0.129
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/kyve/chain.js +13 -13
- package/esm/mainnet/mirage/asset-list.js +31 -0
- package/esm/mainnet/mirage/chain.js +89 -0
- package/esm/mainnet/mirage/index.js +4 -0
- package/esm/mainnet/namada/chain.js +14 -2
- 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/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 +91 -0
- package/mainnet/mirage/index.d.ts +2 -0
- package/mainnet/mirage/index.js +10 -0
- package/mainnet/namada/chain.js +14 -2
- 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,
|
|
@@ -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,89 @@
|
|
|
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
|
+
sdk: {
|
|
30
|
+
type: 'cosmos',
|
|
31
|
+
version: '0.53'
|
|
32
|
+
},
|
|
33
|
+
ibc: {
|
|
34
|
+
type: 'go',
|
|
35
|
+
version: '10.2.0'
|
|
36
|
+
},
|
|
37
|
+
consensus: {
|
|
38
|
+
type: 'cometbft',
|
|
39
|
+
version: '0.38.17'
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
logoURIs: {
|
|
43
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
44
|
+
},
|
|
45
|
+
description: 'Mirage is what Reddit could have been if it never sold out. Free speech lives on-chain. True discourse. Decentralized. Unstoppable.',
|
|
46
|
+
apis: {
|
|
47
|
+
rpc: [
|
|
48
|
+
{
|
|
49
|
+
address: 'http://mirage.talk:26657',
|
|
50
|
+
provider: 'Mirage'
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
address: 'http://mirage.vote:26657',
|
|
54
|
+
provider: 'Mirage'
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
address: 'http://146.190.108.140:26657',
|
|
58
|
+
provider: 'Mirage'
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
address: 'http://139.59.9.96:26657',
|
|
62
|
+
provider: 'Mirage'
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
grpc: [
|
|
66
|
+
{
|
|
67
|
+
address: 'mirage.talk:9090',
|
|
68
|
+
provider: 'Mirage'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'mirage.vote:9090',
|
|
72
|
+
provider: 'Mirage'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
address: '146.190.108.140:9090',
|
|
76
|
+
provider: 'Mirage'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: '139.59.9.96:9090',
|
|
80
|
+
provider: 'Mirage'
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
explorers: [],
|
|
85
|
+
images: [{
|
|
86
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
87
|
+
}]
|
|
88
|
+
};
|
|
89
|
+
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',
|
|
@@ -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/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,91 @@
|
|
|
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
|
+
sdk: {
|
|
32
|
+
type: 'cosmos',
|
|
33
|
+
version: '0.53'
|
|
34
|
+
},
|
|
35
|
+
ibc: {
|
|
36
|
+
type: 'go',
|
|
37
|
+
version: '10.2.0'
|
|
38
|
+
},
|
|
39
|
+
consensus: {
|
|
40
|
+
type: 'cometbft',
|
|
41
|
+
version: '0.38.17'
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
logoURIs: {
|
|
45
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
46
|
+
},
|
|
47
|
+
description: 'Mirage is what Reddit could have been if it never sold out. Free speech lives on-chain. True discourse. Decentralized. Unstoppable.',
|
|
48
|
+
apis: {
|
|
49
|
+
rpc: [
|
|
50
|
+
{
|
|
51
|
+
address: 'http://mirage.talk:26657',
|
|
52
|
+
provider: 'Mirage'
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
address: 'http://mirage.vote:26657',
|
|
56
|
+
provider: 'Mirage'
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
address: 'http://146.190.108.140:26657',
|
|
60
|
+
provider: 'Mirage'
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
address: 'http://139.59.9.96:26657',
|
|
64
|
+
provider: 'Mirage'
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
grpc: [
|
|
68
|
+
{
|
|
69
|
+
address: 'mirage.talk:9090',
|
|
70
|
+
provider: 'Mirage'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'mirage.vote:9090',
|
|
74
|
+
provider: 'Mirage'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: '146.190.108.140:9090',
|
|
78
|
+
provider: 'Mirage'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
address: '139.59.9.96:9090',
|
|
82
|
+
provider: 'Mirage'
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
explorers: [],
|
|
87
|
+
images: [{
|
|
88
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mirage/images/mirage.png'
|
|
89
|
+
}]
|
|
90
|
+
};
|
|
91
|
+
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/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',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.129",
|
|
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.129"
|
|
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": "0d29a5a40c6942067da5abca6984cbfdbef0c49c"
|
|
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'
|