chain-registry 1.69.333 → 1.69.335
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/mainnet/assets.js +2 -0
- package/esm/mainnet/atomone/chain.js +18 -0
- package/esm/mainnet/chain4energy/chain.js +18 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/doravota/chain.js +17 -0
- package/esm/mainnet/gonka/assets.js +38 -0
- package/esm/mainnet/gonka/chain.js +154 -0
- package/esm/{testnet/mantrachaintestnet → mainnet/gonka}/index.js +0 -2
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/lumera/assets.js +43 -0
- package/esm/mainnet/lumera/chain.js +4 -4
- package/esm/mainnet/lumera/ibc.js +31 -0
- package/esm/mainnet/lumera/index.js +2 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/neutron/assets.js +22 -0
- package/esm/mainnet/osmosis/ibc.js +30 -0
- package/esm/mainnet/terra/assets.js +26 -0
- package/esm/mainnet/terra/chain.js +25 -41
- package/esm/mainnet/umee/chain.js +4 -9
- package/esm/testnet/assets.js +0 -2
- package/esm/testnet/chains.js +0 -2
- package/esm/testnet/ibc.js +2 -2
- package/esm/testnet/lumeratestnet/assets.js +43 -0
- package/esm/testnet/lumeratestnet/chain.js +3 -3
- package/esm/testnet/lumeratestnet/ibc.js +31 -0
- package/esm/testnet/lumeratestnet/index.js +2 -0
- package/esm/testnet/mantrachaintestnet2/chain.js +20 -4
- package/esm/testnet/named.js +0 -1
- package/esm/testnet/osmosistestnet/ibc.js +30 -0
- package/esm/testnet/xplatestnet/chain.js +2 -2
- package/mainnet/assets.js +2 -0
- package/mainnet/atomone/chain.js +18 -0
- package/mainnet/chain4energy/chain.js +18 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/doravota/chain.js +17 -0
- package/mainnet/gonka/assets.js +40 -0
- package/mainnet/gonka/chain.js +156 -0
- package/{testnet/mantrachaintestnet → mainnet/gonka}/index.d.ts +0 -1
- package/{testnet/mantrachaintestnet → mainnet/gonka}/index.js +1 -3
- package/mainnet/ibc.js +2 -0
- package/mainnet/lumera/assets.js +43 -0
- package/mainnet/lumera/chain.js +4 -4
- package/mainnet/lumera/ibc.js +33 -0
- package/mainnet/lumera/index.d.ts +1 -0
- package/mainnet/lumera/index.js +3 -1
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +5 -4
- package/mainnet/neutron/assets.js +22 -0
- package/mainnet/osmosis/ibc.js +30 -0
- package/mainnet/terra/assets.js +26 -0
- package/mainnet/terra/chain.js +25 -41
- package/mainnet/umee/chain.js +4 -9
- package/package.json +3 -3
- package/testnet/assets.js +0 -2
- package/testnet/chains.js +0 -2
- package/testnet/ibc.js +2 -2
- package/testnet/lumeratestnet/assets.js +43 -0
- package/testnet/lumeratestnet/chain.js +3 -3
- package/testnet/lumeratestnet/ibc.d.ts +3 -0
- package/testnet/lumeratestnet/ibc.js +33 -0
- package/testnet/lumeratestnet/index.d.ts +1 -0
- package/testnet/lumeratestnet/index.js +3 -1
- package/testnet/mantrachaintestnet2/chain.js +20 -4
- package/testnet/named.d.ts +0 -1
- package/testnet/named.js +2 -3
- package/testnet/osmosistestnet/ibc.js +30 -0
- package/testnet/xplatestnet/chain.js +2 -2
- package/esm/testnet/mantrachaintestnet/assets.js +0 -48
- package/esm/testnet/mantrachaintestnet/chain.js +0 -81
- package/esm/testnet/mantrachaintestnet/ibc.js +0 -90
- package/testnet/mantrachaintestnet/assets.js +0 -50
- package/testnet/mantrachaintestnet/chain.js +0 -83
- package/testnet/mantrachaintestnet/ibc.js +0 -92
- /package/{testnet/mantrachaintestnet → mainnet/gonka}/assets.d.ts +0 -0
- /package/{testnet/mantrachaintestnet → mainnet/gonka}/chain.d.ts +0 -0
- /package/{testnet/mantrachaintestnet → mainnet/lumera}/ibc.d.ts +0 -0
package/testnet/chains.js
CHANGED
|
@@ -91,7 +91,6 @@ const _lombardledgertestnet = __importStar(require("./lombardledgertestnet"));
|
|
|
91
91
|
const _lumenxtestnet = __importStar(require("./lumenxtestnet"));
|
|
92
92
|
const _lumeratestnet = __importStar(require("./lumeratestnet"));
|
|
93
93
|
const _manifesttestnet = __importStar(require("./manifesttestnet"));
|
|
94
|
-
const _mantrachaintestnet = __importStar(require("./mantrachaintestnet"));
|
|
95
94
|
const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
|
|
96
95
|
const _marstestnet = __importStar(require("./marstestnet"));
|
|
97
96
|
const _metanovaversetestnet = __importStar(require("./metanovaversetestnet"));
|
|
@@ -228,7 +227,6 @@ const chains = [
|
|
|
228
227
|
_lumenxtestnet.chain,
|
|
229
228
|
_lumeratestnet.chain,
|
|
230
229
|
_manifesttestnet.chain,
|
|
231
|
-
_mantrachaintestnet.chain,
|
|
232
230
|
_mantrachaintestnet2.chain,
|
|
233
231
|
_marstestnet.chain,
|
|
234
232
|
_metanovaversetestnet.chain,
|
package/testnet/ibc.js
CHANGED
|
@@ -48,8 +48,8 @@ const _kujiratestnet = __importStar(require("./kujiratestnet"));
|
|
|
48
48
|
const _kyvetestnet = __importStar(require("./kyvetestnet"));
|
|
49
49
|
const _lavatestnet = __importStar(require("./lavatestnet"));
|
|
50
50
|
const _likecointestnet = __importStar(require("./likecointestnet"));
|
|
51
|
+
const _lumeratestnet = __importStar(require("./lumeratestnet"));
|
|
51
52
|
const _manifesttestnet = __importStar(require("./manifesttestnet"));
|
|
52
|
-
const _mantrachaintestnet = __importStar(require("./mantrachaintestnet"));
|
|
53
53
|
const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
|
|
54
54
|
const _marstestnet = __importStar(require("./marstestnet"));
|
|
55
55
|
const _neutrontestnet = __importStar(require("./neutrontestnet"));
|
|
@@ -98,8 +98,8 @@ const ibc = [
|
|
|
98
98
|
..._kyvetestnet.ibc,
|
|
99
99
|
..._lavatestnet.ibc,
|
|
100
100
|
..._likecointestnet.ibc,
|
|
101
|
+
..._lumeratestnet.ibc,
|
|
101
102
|
..._manifesttestnet.ibc,
|
|
102
|
-
..._mantrachaintestnet.ibc,
|
|
103
103
|
..._mantrachaintestnet2.ibc,
|
|
104
104
|
..._marstestnet.ibc,
|
|
105
105
|
..._neutrontestnet.ibc,
|
|
@@ -30,6 +30,49 @@ const info = {
|
|
|
30
30
|
telegram: 'https://t.me/lumeraprotocol',
|
|
31
31
|
website: 'https://lumera.io'
|
|
32
32
|
}
|
|
33
|
+
}, {
|
|
34
|
+
denom_units: [{
|
|
35
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
36
|
+
exponent: 0,
|
|
37
|
+
aliases: ['uosmo']
|
|
38
|
+
}, {
|
|
39
|
+
denom: 'osmo',
|
|
40
|
+
exponent: 6
|
|
41
|
+
}],
|
|
42
|
+
type_asset: 'ics20',
|
|
43
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
44
|
+
name: 'Osmosis OSMO Token',
|
|
45
|
+
display: 'osmo',
|
|
46
|
+
symbol: 'OSMO',
|
|
47
|
+
traces: [{
|
|
48
|
+
type: 'ibc',
|
|
49
|
+
counterparty: {
|
|
50
|
+
chain_name: 'osmosistestnet',
|
|
51
|
+
base_denom: 'uosmo',
|
|
52
|
+
channel_id: 'channel-10884'
|
|
53
|
+
},
|
|
54
|
+
chain: {
|
|
55
|
+
channel_id: 'channel-0',
|
|
56
|
+
path: 'transfer/channel-0/uosmo'
|
|
57
|
+
}
|
|
58
|
+
}],
|
|
59
|
+
images: [{
|
|
60
|
+
image_sync: {
|
|
61
|
+
chain_name: 'osmosistestnet',
|
|
62
|
+
base_denom: 'uosmo'
|
|
63
|
+
},
|
|
64
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
65
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
66
|
+
}],
|
|
67
|
+
logo_URIs: {
|
|
68
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
69
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
70
|
+
},
|
|
71
|
+
keywords: [
|
|
72
|
+
'dex',
|
|
73
|
+
'ibc',
|
|
74
|
+
'osmosis'
|
|
75
|
+
]
|
|
33
76
|
}]
|
|
34
77
|
};
|
|
35
78
|
exports.default = info;
|
|
@@ -38,14 +38,14 @@ const info = {
|
|
|
38
38
|
},
|
|
39
39
|
codebase: {
|
|
40
40
|
git_repo: 'https://github.com/LumeraProtocol/lumera',
|
|
41
|
-
tag: '
|
|
42
|
-
recommended_version: '
|
|
41
|
+
tag: 'v1.7.0',
|
|
42
|
+
recommended_version: 'v1.7.0',
|
|
43
43
|
language: {
|
|
44
44
|
type: 'go',
|
|
45
45
|
version: 'v1.24'
|
|
46
46
|
},
|
|
47
47
|
binaries: {
|
|
48
|
-
"linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/
|
|
48
|
+
"linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v1.7.0/lumera_v1.7.0_linux_amd64.tar.gz?checksum=sha256:1a5a612e5f06a5d4c4a6a2b2b8799336093a9951fcc6e81ef0a56dcc0f913e50'
|
|
49
49
|
},
|
|
50
50
|
sdk: {
|
|
51
51
|
type: 'cosmos',
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../../ibc_data.schema.json',
|
|
5
|
+
chain_1: {
|
|
6
|
+
chain_name: 'lumeratestnet',
|
|
7
|
+
client_id: '07-tendermint-2',
|
|
8
|
+
connection_id: 'connection-1'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'osmosistestnet',
|
|
12
|
+
client_id: '07-tendermint-4899',
|
|
13
|
+
connection_id: 'connection-4268'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-0',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-10884',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true,
|
|
29
|
+
dex: 'osmosis'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
}];
|
|
33
|
+
exports.default = info;
|
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assets = void 0;
|
|
6
|
+
exports.ibc = exports.chain = exports.assets = void 0;
|
|
7
7
|
const assets_1 = __importDefault(require("./assets"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_1 = __importDefault(require("./ibc"));
|
|
9
10
|
exports.assets = assets_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibc = ibc_1.default;
|
|
@@ -18,7 +18,7 @@ const info = {
|
|
|
18
18
|
denom: 'uom',
|
|
19
19
|
fixed_min_gas_price: 0.01,
|
|
20
20
|
low_gas_price: 0.01,
|
|
21
|
-
average_gas_price: 0.
|
|
21
|
+
average_gas_price: 0.025,
|
|
22
22
|
high_gas_price: 0.03
|
|
23
23
|
}]
|
|
24
24
|
},
|
|
@@ -74,23 +74,39 @@ const info = {
|
|
|
74
74
|
}, {
|
|
75
75
|
address: 'mantra-testnet-grpc.publicnode.com:443',
|
|
76
76
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
77
|
+
}],
|
|
78
|
+
"evm-http-jsonrpc": [{
|
|
79
|
+
address: 'https://evm.dukong.mantrachain.io',
|
|
80
|
+
provider: 'MANTRACHAIN'
|
|
81
|
+
}, {
|
|
82
|
+
address: 'https://rpc.evm.mantra.testnet.cosmostation.io',
|
|
83
|
+
provider: 'Cosmostation'
|
|
77
84
|
}]
|
|
78
85
|
},
|
|
79
86
|
logo_URIs: {
|
|
80
87
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
81
88
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg'
|
|
82
89
|
},
|
|
83
|
-
explorers: [
|
|
90
|
+
explorers: [
|
|
91
|
+
{
|
|
84
92
|
kind: 'mintscan',
|
|
85
93
|
url: 'https://www.mintscan.io/mantra-testnet',
|
|
86
94
|
tx_page: 'https://mintscan.io/mantra-testnet/txs/${txHash}',
|
|
87
95
|
account_page: 'https://mintscan.io/mantra-testnet/account/${accountAddress}'
|
|
88
|
-
},
|
|
96
|
+
},
|
|
97
|
+
{
|
|
89
98
|
kind: 'ping.pub',
|
|
90
99
|
url: 'https://explorer.mantrachain.io',
|
|
91
100
|
tx_page: 'https://explorer.mantrachain.io/MANTRA-Dukong/tx/${txHash}',
|
|
92
101
|
account_page: 'https://explorer.mantrachain.io/MANTRA-Dukong/account/${accountAddress}'
|
|
93
|
-
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
kind: 'mantrascan',
|
|
105
|
+
url: 'https://mantrascan.io/dukong',
|
|
106
|
+
tx_page: 'https://mantrascan.io/dukong/tx/${txHash}',
|
|
107
|
+
account_page: 'https://mantrascan.io/dukong/address/${accountAddress}'
|
|
108
|
+
}
|
|
109
|
+
],
|
|
94
110
|
keywords: [
|
|
95
111
|
'rwa',
|
|
96
112
|
'wasm',
|
package/testnet/named.d.ts
CHANGED
|
@@ -66,7 +66,6 @@ export * as lombardledgertestnet from './lombardledgertestnet';
|
|
|
66
66
|
export * as lumenxtestnet from './lumenxtestnet';
|
|
67
67
|
export * as lumeratestnet from './lumeratestnet';
|
|
68
68
|
export * as manifesttestnet from './manifesttestnet';
|
|
69
|
-
export * as mantrachaintestnet from './mantrachaintestnet';
|
|
70
69
|
export * as mantrachaintestnet2 from './mantrachaintestnet2';
|
|
71
70
|
export * as marstestnet from './marstestnet';
|
|
72
71
|
export * as metanovaversetestnet from './metanovaversetestnet';
|
package/testnet/named.js
CHANGED
|
@@ -24,8 +24,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.impacthubtestnet = exports.hypersigntestnet = exports.humanstestnet = exports.hippoprotocoltestnet = exports.hedgetestnet = exports.gitopiatestnet = exports.galacticatestnet = exports.finschiatestnet = exports.fiammatestnet = exports.fetchhubtestnet = exports.evmostestnet = exports.epixtestnet = exports.empowertestnet = exports.empetestnet = exports.elystestnet = exports.dymensiontestnet1 = exports.dydxtestnet = exports.doravotatestnet = exports.dhealthtestnet = exports.desmostestnet = exports.deardogetestnet = exports.cudostestnet = exports.cosstestnet = exports.cosmwasmtestnet = exports.cosmosicsprovidertestnet = exports.cosmoshubtestnet = exports.coreumtestnet = exports.coolcattestnet = exports.composabletestnet = exports.chimbatestnet = exports.cheqdtestnet = exports.chain4energytestnet = exports.celestiatestnet3 = exports.cascadiatestnet = exports.blockxtestnet = exports.bitcannadevnet = exports.bfhevmtestnet = exports.babylontestnet = exports.axelartestnet = exports.autheotestnet = exports.auratestnet = exports.atomonetestnet = exports.artelatestnet = exports.arkeonetworktestnet = exports.archwaytestnet = exports.alloratestnet = exports.akashtestnet = exports.airchainsvaranasitestnet = exports.airchainstestnet = exports.agoricdevnet = void 0;
|
|
27
|
-
exports.secretnetworktestnet = exports.sagatestnet = exports.safrochaintestnet = exports.qwoyntestnet = exports.quicksilvertestnet = exports.qubeticstestnet = exports.quasartestnet = exports.pryzmtestnet = exports.pockettestnet = exports.planqtestnet = exports.persistencetestnet2 = exports.persistencetestnet = exports.permtestnet = exports.pelltestnet = exports.osmosistestnet = exports.okp4testnet = exports.nyxtestnet = exports.nomictestnet = exports.nolustestnet = exports.noistestnet = exports.nobletestnet = exports.nilliontestnet = exports.nibirutestnet3 = exports.nibirutestnet2 = exports.nibirutestnet = exports.neutrontestnet = exports.neuratestnet = exports.migalootestnet = exports.metanovaversetestnet = exports.marstestnet = exports.mantrachaintestnet2 = exports.
|
|
28
|
-
exports.zigchaintestnet = exports.zetachaintestnet = exports.zenrocktestnet = exports.xrplevmtestnet = exports.xplatestnet = exports.xiontestnet2 = exports.xarchaintestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.titannettestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.synternettestnet = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = exports.sixtestnet = exports.shentutestnet = exports.sgetestnet4 = exports.sgetestnet = exports.selfchaindevnet = exports.seitestnet2 = exports.seitestnet =
|
|
27
|
+
exports.sedatestnet = exports.secretnetworktestnet = exports.sagatestnet = exports.safrochaintestnet = exports.qwoyntestnet = exports.quicksilvertestnet = exports.qubeticstestnet = exports.quasartestnet = exports.pryzmtestnet = exports.pockettestnet = exports.planqtestnet = exports.persistencetestnet2 = exports.persistencetestnet = exports.permtestnet = exports.pelltestnet = exports.osmosistestnet = exports.okp4testnet = exports.nyxtestnet = exports.nomictestnet = exports.nolustestnet = exports.noistestnet = exports.nobletestnet = exports.nilliontestnet = exports.nibirutestnet3 = exports.nibirutestnet2 = exports.nibirutestnet = exports.neutrontestnet = exports.neuratestnet = exports.migalootestnet = exports.metanovaversetestnet = exports.marstestnet = exports.mantrachaintestnet2 = exports.manifesttestnet = exports.lumeratestnet = exports.lumenxtestnet = exports.lombardledgertestnet = exports.likecointestnet = exports.lavatestnet = exports.kyvetestnet = exports.kujiratestnet = exports.kimanetworktestnet = exports.kichaintestnet = exports.junotestnet = exports.jackaltestnet2 = exports.jackaltestnet = exports.iopntestnet = exports.intentotestnet = exports.int3facetestnet = exports.injectivetestnet = exports.imversedtestnet = void 0;
|
|
28
|
+
exports.zigchaintestnet = exports.zetachaintestnet = exports.zenrocktestnet = exports.xrplevmtestnet = exports.xplatestnet = exports.xiontestnet2 = exports.xarchaintestnet = exports.wavehashtestnet = exports.wardenprotocoltestnet = exports.upticktestnet = exports.uniontestnet = exports.unificationtestnet = exports.ulastestnet = exports.tucanatestnet = exports.titantestnet = exports.titannettestnet = exports.terra2testnet = exports.terpnettestnet2 = exports.terpnettestnet = exports.synternettestnet = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = exports.sixtestnet = exports.shentutestnet = exports.sgetestnet4 = exports.sgetestnet = exports.selfchaindevnet = exports.seitestnet2 = exports.seitestnet = void 0;
|
|
29
29
|
exports.agoricdevnet = __importStar(require("./agoricdevnet"));
|
|
30
30
|
exports.airchainstestnet = __importStar(require("./airchainstestnet"));
|
|
31
31
|
exports.airchainsvaranasitestnet = __importStar(require("./airchainsvaranasitestnet"));
|
|
@@ -94,7 +94,6 @@ exports.lombardledgertestnet = __importStar(require("./lombardledgertestnet"));
|
|
|
94
94
|
exports.lumenxtestnet = __importStar(require("./lumenxtestnet"));
|
|
95
95
|
exports.lumeratestnet = __importStar(require("./lumeratestnet"));
|
|
96
96
|
exports.manifesttestnet = __importStar(require("./manifesttestnet"));
|
|
97
|
-
exports.mantrachaintestnet = __importStar(require("./mantrachaintestnet"));
|
|
98
97
|
exports.mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
|
|
99
98
|
exports.marstestnet = __importStar(require("./marstestnet"));
|
|
100
99
|
exports.metanovaversetestnet = __importStar(require("./metanovaversetestnet"));
|
|
@@ -700,6 +700,36 @@ const info = [
|
|
|
700
700
|
}
|
|
701
701
|
}]
|
|
702
702
|
},
|
|
703
|
+
{
|
|
704
|
+
$schema: '../../ibc_data.schema.json',
|
|
705
|
+
chain_1: {
|
|
706
|
+
chain_name: 'lumeratestnet',
|
|
707
|
+
client_id: '07-tendermint-2',
|
|
708
|
+
connection_id: 'connection-1'
|
|
709
|
+
},
|
|
710
|
+
chain_2: {
|
|
711
|
+
chain_name: 'osmosistestnet',
|
|
712
|
+
client_id: '07-tendermint-4899',
|
|
713
|
+
connection_id: 'connection-4268'
|
|
714
|
+
},
|
|
715
|
+
channels: [{
|
|
716
|
+
chain_1: {
|
|
717
|
+
channel_id: 'channel-0',
|
|
718
|
+
port_id: 'transfer'
|
|
719
|
+
},
|
|
720
|
+
chain_2: {
|
|
721
|
+
channel_id: 'channel-10884',
|
|
722
|
+
port_id: 'transfer'
|
|
723
|
+
},
|
|
724
|
+
ordering: 'unordered',
|
|
725
|
+
version: 'ics20-1',
|
|
726
|
+
tags: {
|
|
727
|
+
status: 'live',
|
|
728
|
+
preferred: true,
|
|
729
|
+
dex: 'osmosis'
|
|
730
|
+
}
|
|
731
|
+
}]
|
|
732
|
+
},
|
|
703
733
|
{
|
|
704
734
|
$schema: '../../ibc_data.schema.json',
|
|
705
735
|
chain_1: {
|
|
@@ -30,8 +30,8 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
git_repo: 'https://github.com/xpladev/xpla',
|
|
33
|
-
recommended_version: 'v1.8.0-
|
|
34
|
-
compatible_versions: ['v1.8.0-
|
|
33
|
+
recommended_version: 'v1.8.0-cube',
|
|
34
|
+
compatible_versions: ['v1.8.0-cube'],
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
37
|
version: 'v0.38.17'
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
const info = {
|
|
2
|
-
$schema: '../../assetlist.schema.json',
|
|
3
|
-
chain_name: 'mantrachaintestnet',
|
|
4
|
-
assets: [{
|
|
5
|
-
description: 'The native token of MANTRA',
|
|
6
|
-
denom_units: [{
|
|
7
|
-
denom: 'uom',
|
|
8
|
-
exponent: 0
|
|
9
|
-
}, {
|
|
10
|
-
denom: 'om',
|
|
11
|
-
exponent: 6
|
|
12
|
-
}],
|
|
13
|
-
base: 'uom',
|
|
14
|
-
name: 'MANTRA Chain',
|
|
15
|
-
display: 'om',
|
|
16
|
-
symbol: 'OM',
|
|
17
|
-
keywords: [
|
|
18
|
-
'mantra',
|
|
19
|
-
'staking',
|
|
20
|
-
'delegating',
|
|
21
|
-
'governance',
|
|
22
|
-
'regulation',
|
|
23
|
-
'defi'
|
|
24
|
-
],
|
|
25
|
-
traces: [{
|
|
26
|
-
type: 'test-mintage',
|
|
27
|
-
counterparty: {
|
|
28
|
-
chain_name: 'mantrachain',
|
|
29
|
-
base_denom: 'uom'
|
|
30
|
-
},
|
|
31
|
-
provider: 'MANTRA Chain'
|
|
32
|
-
}],
|
|
33
|
-
images: [{
|
|
34
|
-
image_sync: {
|
|
35
|
-
chain_name: 'mantrachain',
|
|
36
|
-
base_denom: 'uom'
|
|
37
|
-
},
|
|
38
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
39
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
|
|
40
|
-
theme: {
|
|
41
|
-
circle: true
|
|
42
|
-
}
|
|
43
|
-
}],
|
|
44
|
-
type_asset: 'sdk.coin',
|
|
45
|
-
coingecko_id: 'mantra-dao'
|
|
46
|
-
}]
|
|
47
|
-
};
|
|
48
|
-
export default info;
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
const info = {
|
|
2
|
-
$schema: '../../chain.schema.json',
|
|
3
|
-
chain_name: 'mantrachaintestnet',
|
|
4
|
-
status: 'live',
|
|
5
|
-
network_type: 'testnet',
|
|
6
|
-
pretty_name: 'MANTRA Hongbai Testnet',
|
|
7
|
-
chain_type: 'cosmos',
|
|
8
|
-
chain_id: 'mantra-hongbai-1',
|
|
9
|
-
bech32_prefix: 'mantra',
|
|
10
|
-
daemon_name: 'mantrachaind',
|
|
11
|
-
node_home: '$HOME/.mantrachain',
|
|
12
|
-
key_algos: ['secp256k1'],
|
|
13
|
-
slip44: 118,
|
|
14
|
-
fees: {
|
|
15
|
-
fee_tokens: [{
|
|
16
|
-
denom: 'uom',
|
|
17
|
-
fixed_min_gas_price: 0,
|
|
18
|
-
low_gas_price: 0.001,
|
|
19
|
-
average_gas_price: 0.002,
|
|
20
|
-
high_gas_price: 0.003
|
|
21
|
-
}]
|
|
22
|
-
},
|
|
23
|
-
staking: {
|
|
24
|
-
staking_tokens: [{
|
|
25
|
-
denom: 'uom'
|
|
26
|
-
}]
|
|
27
|
-
},
|
|
28
|
-
codebase: {
|
|
29
|
-
git_repo: 'https://github.com/MANTRA-Finance',
|
|
30
|
-
recommended_version: '1.0.0',
|
|
31
|
-
compatible_versions: ['1.0.0'],
|
|
32
|
-
consensus: {
|
|
33
|
-
type: 'cometbft',
|
|
34
|
-
version: '0.37'
|
|
35
|
-
},
|
|
36
|
-
sdk: {
|
|
37
|
-
type: 'cosmos',
|
|
38
|
-
version: '0.47.3'
|
|
39
|
-
},
|
|
40
|
-
cosmwasm: {
|
|
41
|
-
version: '0.41',
|
|
42
|
-
enabled: true
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
apis: {
|
|
46
|
-
rpc: [{
|
|
47
|
-
address: 'https://rpc.hongbai.mantrachain.io',
|
|
48
|
-
provider: 'MANTRACHAIN'
|
|
49
|
-
}, {
|
|
50
|
-
address: 'https://mantra-testnet-rpc.publicnode.com:443',
|
|
51
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
52
|
-
}],
|
|
53
|
-
rest: [{
|
|
54
|
-
address: 'https://api.hongbai.mantrachain.io',
|
|
55
|
-
provider: 'MANTRACHAIN'
|
|
56
|
-
}, {
|
|
57
|
-
address: 'https://mantra-testnet-rest.publicnode.com',
|
|
58
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
59
|
-
}],
|
|
60
|
-
grpc: [{
|
|
61
|
-
address: 'https://grpc.hongbai.mantrachain.io',
|
|
62
|
-
provider: 'MANTRACHAIN'
|
|
63
|
-
}, {
|
|
64
|
-
address: 'mantra-testnet-grpc.publicnode.com:443',
|
|
65
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
66
|
-
}]
|
|
67
|
-
},
|
|
68
|
-
keywords: ['dex', 'testnet'],
|
|
69
|
-
images: [{
|
|
70
|
-
image_sync: {
|
|
71
|
-
chain_name: 'mantrachain',
|
|
72
|
-
base_denom: 'uom'
|
|
73
|
-
},
|
|
74
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
75
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
|
|
76
|
-
theme: {
|
|
77
|
-
circle: true
|
|
78
|
-
}
|
|
79
|
-
}]
|
|
80
|
-
};
|
|
81
|
-
export default info;
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
const info = [
|
|
2
|
-
{
|
|
3
|
-
$schema: '../../ibc_data.schema.json',
|
|
4
|
-
chain_1: {
|
|
5
|
-
chain_name: 'axelartestnet',
|
|
6
|
-
client_id: '07-tendermint-1009',
|
|
7
|
-
connection_id: 'connection-783'
|
|
8
|
-
},
|
|
9
|
-
chain_2: {
|
|
10
|
-
chain_name: 'mantrachaintestnet',
|
|
11
|
-
client_id: '07-tendermint-7',
|
|
12
|
-
connection_id: 'connection-7'
|
|
13
|
-
},
|
|
14
|
-
channels: [{
|
|
15
|
-
chain_1: {
|
|
16
|
-
channel_id: 'channel-540',
|
|
17
|
-
port_id: 'transfer'
|
|
18
|
-
},
|
|
19
|
-
chain_2: {
|
|
20
|
-
channel_id: 'channel-7',
|
|
21
|
-
port_id: 'transfer'
|
|
22
|
-
},
|
|
23
|
-
ordering: 'unordered',
|
|
24
|
-
version: 'ics20-1',
|
|
25
|
-
tags: {
|
|
26
|
-
status: 'live',
|
|
27
|
-
preferred: true
|
|
28
|
-
}
|
|
29
|
-
}]
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
$schema: '../../ibc_data.schema.json',
|
|
33
|
-
chain_1: {
|
|
34
|
-
chain_name: 'mantrachaintestnet',
|
|
35
|
-
client_id: '07-tendermint-6',
|
|
36
|
-
connection_id: 'connection-6'
|
|
37
|
-
},
|
|
38
|
-
chain_2: {
|
|
39
|
-
chain_name: 'nobletestnet',
|
|
40
|
-
client_id: '07-tendermint-294',
|
|
41
|
-
connection_id: 'connection-247'
|
|
42
|
-
},
|
|
43
|
-
channels: [{
|
|
44
|
-
chain_1: {
|
|
45
|
-
channel_id: 'channel-6',
|
|
46
|
-
port_id: 'transfer'
|
|
47
|
-
},
|
|
48
|
-
chain_2: {
|
|
49
|
-
channel_id: 'channel-209',
|
|
50
|
-
port_id: 'transfer'
|
|
51
|
-
},
|
|
52
|
-
ordering: 'unordered',
|
|
53
|
-
version: 'ics20-1',
|
|
54
|
-
tags: {
|
|
55
|
-
status: 'live',
|
|
56
|
-
preferred: true
|
|
57
|
-
}
|
|
58
|
-
}]
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
$schema: '../../ibc_data.schema.json',
|
|
62
|
-
chain_1: {
|
|
63
|
-
chain_name: 'mantrachaintestnet',
|
|
64
|
-
client_id: '07-tendermint-5',
|
|
65
|
-
connection_id: 'connection-5'
|
|
66
|
-
},
|
|
67
|
-
chain_2: {
|
|
68
|
-
chain_name: 'osmosistestnet',
|
|
69
|
-
client_id: '07-tendermint-3930',
|
|
70
|
-
connection_id: 'connection-3411'
|
|
71
|
-
},
|
|
72
|
-
channels: [{
|
|
73
|
-
chain_1: {
|
|
74
|
-
channel_id: 'channel-5',
|
|
75
|
-
port_id: 'transfer'
|
|
76
|
-
},
|
|
77
|
-
chain_2: {
|
|
78
|
-
channel_id: 'channel-8734',
|
|
79
|
-
port_id: 'transfer'
|
|
80
|
-
},
|
|
81
|
-
ordering: 'unordered',
|
|
82
|
-
version: 'ics20-1',
|
|
83
|
-
tags: {
|
|
84
|
-
status: 'live',
|
|
85
|
-
preferred: true
|
|
86
|
-
}
|
|
87
|
-
}]
|
|
88
|
-
}
|
|
89
|
-
];
|
|
90
|
-
export default info;
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const info = {
|
|
4
|
-
$schema: '../../assetlist.schema.json',
|
|
5
|
-
chain_name: 'mantrachaintestnet',
|
|
6
|
-
assets: [{
|
|
7
|
-
description: 'The native token of MANTRA',
|
|
8
|
-
denom_units: [{
|
|
9
|
-
denom: 'uom',
|
|
10
|
-
exponent: 0
|
|
11
|
-
}, {
|
|
12
|
-
denom: 'om',
|
|
13
|
-
exponent: 6
|
|
14
|
-
}],
|
|
15
|
-
base: 'uom',
|
|
16
|
-
name: 'MANTRA Chain',
|
|
17
|
-
display: 'om',
|
|
18
|
-
symbol: 'OM',
|
|
19
|
-
keywords: [
|
|
20
|
-
'mantra',
|
|
21
|
-
'staking',
|
|
22
|
-
'delegating',
|
|
23
|
-
'governance',
|
|
24
|
-
'regulation',
|
|
25
|
-
'defi'
|
|
26
|
-
],
|
|
27
|
-
traces: [{
|
|
28
|
-
type: 'test-mintage',
|
|
29
|
-
counterparty: {
|
|
30
|
-
chain_name: 'mantrachain',
|
|
31
|
-
base_denom: 'uom'
|
|
32
|
-
},
|
|
33
|
-
provider: 'MANTRA Chain'
|
|
34
|
-
}],
|
|
35
|
-
images: [{
|
|
36
|
-
image_sync: {
|
|
37
|
-
chain_name: 'mantrachain',
|
|
38
|
-
base_denom: 'uom'
|
|
39
|
-
},
|
|
40
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
41
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
|
|
42
|
-
theme: {
|
|
43
|
-
circle: true
|
|
44
|
-
}
|
|
45
|
-
}],
|
|
46
|
-
type_asset: 'sdk.coin',
|
|
47
|
-
coingecko_id: 'mantra-dao'
|
|
48
|
-
}]
|
|
49
|
-
};
|
|
50
|
-
exports.default = info;
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const info = {
|
|
4
|
-
$schema: '../../chain.schema.json',
|
|
5
|
-
chain_name: 'mantrachaintestnet',
|
|
6
|
-
status: 'live',
|
|
7
|
-
network_type: 'testnet',
|
|
8
|
-
pretty_name: 'MANTRA Hongbai Testnet',
|
|
9
|
-
chain_type: 'cosmos',
|
|
10
|
-
chain_id: 'mantra-hongbai-1',
|
|
11
|
-
bech32_prefix: 'mantra',
|
|
12
|
-
daemon_name: 'mantrachaind',
|
|
13
|
-
node_home: '$HOME/.mantrachain',
|
|
14
|
-
key_algos: ['secp256k1'],
|
|
15
|
-
slip44: 118,
|
|
16
|
-
fees: {
|
|
17
|
-
fee_tokens: [{
|
|
18
|
-
denom: 'uom',
|
|
19
|
-
fixed_min_gas_price: 0,
|
|
20
|
-
low_gas_price: 0.001,
|
|
21
|
-
average_gas_price: 0.002,
|
|
22
|
-
high_gas_price: 0.003
|
|
23
|
-
}]
|
|
24
|
-
},
|
|
25
|
-
staking: {
|
|
26
|
-
staking_tokens: [{
|
|
27
|
-
denom: 'uom'
|
|
28
|
-
}]
|
|
29
|
-
},
|
|
30
|
-
codebase: {
|
|
31
|
-
git_repo: 'https://github.com/MANTRA-Finance',
|
|
32
|
-
recommended_version: '1.0.0',
|
|
33
|
-
compatible_versions: ['1.0.0'],
|
|
34
|
-
consensus: {
|
|
35
|
-
type: 'cometbft',
|
|
36
|
-
version: '0.37'
|
|
37
|
-
},
|
|
38
|
-
sdk: {
|
|
39
|
-
type: 'cosmos',
|
|
40
|
-
version: '0.47.3'
|
|
41
|
-
},
|
|
42
|
-
cosmwasm: {
|
|
43
|
-
version: '0.41',
|
|
44
|
-
enabled: true
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
apis: {
|
|
48
|
-
rpc: [{
|
|
49
|
-
address: 'https://rpc.hongbai.mantrachain.io',
|
|
50
|
-
provider: 'MANTRACHAIN'
|
|
51
|
-
}, {
|
|
52
|
-
address: 'https://mantra-testnet-rpc.publicnode.com:443',
|
|
53
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
54
|
-
}],
|
|
55
|
-
rest: [{
|
|
56
|
-
address: 'https://api.hongbai.mantrachain.io',
|
|
57
|
-
provider: 'MANTRACHAIN'
|
|
58
|
-
}, {
|
|
59
|
-
address: 'https://mantra-testnet-rest.publicnode.com',
|
|
60
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
61
|
-
}],
|
|
62
|
-
grpc: [{
|
|
63
|
-
address: 'https://grpc.hongbai.mantrachain.io',
|
|
64
|
-
provider: 'MANTRACHAIN'
|
|
65
|
-
}, {
|
|
66
|
-
address: 'mantra-testnet-grpc.publicnode.com:443',
|
|
67
|
-
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
68
|
-
}]
|
|
69
|
-
},
|
|
70
|
-
keywords: ['dex', 'testnet'],
|
|
71
|
-
images: [{
|
|
72
|
-
image_sync: {
|
|
73
|
-
chain_name: 'mantrachain',
|
|
74
|
-
base_denom: 'uom'
|
|
75
|
-
},
|
|
76
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
|
|
77
|
-
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
|
|
78
|
-
theme: {
|
|
79
|
-
circle: true
|
|
80
|
-
}
|
|
81
|
-
}]
|
|
82
|
-
};
|
|
83
|
-
exports.default = info;
|