chain-registry 1.69.193 → 1.69.194
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/babylon/assets.js +4 -4
- package/esm/mainnet/elys/chain.js +18 -0
- package/esm/mainnet/initia/assets.js +3 -1
- package/esm/mainnet/initia/chain.js +10 -1
- package/esm/mainnet/initia/ibc.js +35 -8
- package/esm/mainnet/neutron/ibc.js +29 -0
- package/esm/mainnet/osmosis/ibc.js +7 -8
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/cosmosicsprovidertestnet/ibc.js +29 -0
- package/esm/testnet/elystestnet/ibc.js +30 -0
- package/esm/testnet/ibc.js +3 -1
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/osmosistestnet/ibc.js +30 -0
- package/esm/testnet/xrplevmtestnet/assets.js +45 -0
- package/esm/testnet/xrplevmtestnet/chain.js +314 -0
- package/esm/testnet/xrplevmtestnet/ibc.js +93 -0
- package/esm/testnet/xrplevmtestnet/index.js +6 -0
- package/mainnet/babylon/assets.js +4 -4
- package/mainnet/elys/chain.js +18 -0
- package/mainnet/initia/assets.js +3 -1
- package/mainnet/initia/chain.js +10 -1
- package/mainnet/initia/ibc.js +35 -8
- package/mainnet/neutron/ibc.js +29 -0
- package/mainnet/osmosis/ibc.js +7 -8
- package/package.json +4 -4
- package/testnet/assets.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/cosmosicsprovidertestnet/ibc.js +29 -0
- package/testnet/elystestnet/ibc.js +30 -0
- package/testnet/ibc.js +3 -1
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +2 -1
- package/testnet/osmosistestnet/ibc.js +30 -0
- package/testnet/xrplevmtestnet/assets.d.ts +3 -0
- package/testnet/xrplevmtestnet/assets.js +47 -0
- package/testnet/xrplevmtestnet/chain.d.ts +3 -0
- package/testnet/xrplevmtestnet/chain.js +316 -0
- package/testnet/xrplevmtestnet/ibc.d.ts +3 -0
- package/testnet/xrplevmtestnet/ibc.js +95 -0
- package/testnet/xrplevmtestnet/index.d.ts +3 -0
- package/testnet/xrplevmtestnet/index.js +12 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.194",
|
|
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,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.51.
|
|
32
|
+
"@chain-registry/utils": "^1.51.123",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.123"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "880944913231434a1db884821fd962a729906a1d"
|
|
47
47
|
}
|
package/testnet/assets.js
CHANGED
|
@@ -150,6 +150,7 @@ const _wardenprotocoltestnet = __importStar(require("./wardenprotocoltestnet"));
|
|
|
150
150
|
const _wavehashtestnet = __importStar(require("./wavehashtestnet"));
|
|
151
151
|
const _xiontestnet2 = __importStar(require("./xiontestnet2"));
|
|
152
152
|
const _xplatestnet = __importStar(require("./xplatestnet"));
|
|
153
|
+
const _xrplevmtestnet = __importStar(require("./xrplevmtestnet"));
|
|
153
154
|
const _zenrocktestnet = __importStar(require("./zenrocktestnet"));
|
|
154
155
|
const _zetachaintestnet = __importStar(require("./zetachaintestnet"));
|
|
155
156
|
const _zigchaintestnet = __importStar(require("./zigchaintestnet"));
|
|
@@ -281,6 +282,7 @@ const assets = [
|
|
|
281
282
|
_wavehashtestnet.assets,
|
|
282
283
|
_xiontestnet2.assets,
|
|
283
284
|
_xplatestnet.assets,
|
|
285
|
+
_xrplevmtestnet.assets,
|
|
284
286
|
_zenrocktestnet.assets,
|
|
285
287
|
_zetachaintestnet.assets,
|
|
286
288
|
_zigchaintestnet.assets
|
package/testnet/chains.js
CHANGED
|
@@ -150,6 +150,7 @@ const _wardenprotocoltestnet = __importStar(require("./wardenprotocoltestnet"));
|
|
|
150
150
|
const _wavehashtestnet = __importStar(require("./wavehashtestnet"));
|
|
151
151
|
const _xiontestnet2 = __importStar(require("./xiontestnet2"));
|
|
152
152
|
const _xplatestnet = __importStar(require("./xplatestnet"));
|
|
153
|
+
const _xrplevmtestnet = __importStar(require("./xrplevmtestnet"));
|
|
153
154
|
const _zenrocktestnet = __importStar(require("./zenrocktestnet"));
|
|
154
155
|
const _zetachaintestnet = __importStar(require("./zetachaintestnet"));
|
|
155
156
|
const _zigchaintestnet = __importStar(require("./zigchaintestnet"));
|
|
@@ -281,6 +282,7 @@ const chains = [
|
|
|
281
282
|
_wavehashtestnet.chain,
|
|
282
283
|
_xiontestnet2.chain,
|
|
283
284
|
_xplatestnet.chain,
|
|
285
|
+
_xrplevmtestnet.chain,
|
|
284
286
|
_zenrocktestnet.chain,
|
|
285
287
|
_zetachaintestnet.chain,
|
|
286
288
|
_zigchaintestnet.chain
|
|
@@ -28,5 +28,34 @@ const info = [{
|
|
|
28
28
|
preferred: true
|
|
29
29
|
}
|
|
30
30
|
}]
|
|
31
|
+
}, {
|
|
32
|
+
$schema: '../../ibc_data.schema.json',
|
|
33
|
+
chain_1: {
|
|
34
|
+
chain_name: 'cosmosicsprovidertestnet',
|
|
35
|
+
client_id: '07-tendermint-290',
|
|
36
|
+
connection_id: 'connection-208'
|
|
37
|
+
},
|
|
38
|
+
chain_2: {
|
|
39
|
+
chain_name: 'xrplevmtestnet',
|
|
40
|
+
client_id: '07-tendermint-9',
|
|
41
|
+
connection_id: 'connection-1'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain_1: {
|
|
45
|
+
channel_id: 'channel-374',
|
|
46
|
+
port_id: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain_2: {
|
|
49
|
+
channel_id: 'channel-1',
|
|
50
|
+
port_id: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
ordering: 'unordered',
|
|
53
|
+
version: 'ics20-1',
|
|
54
|
+
tags: {
|
|
55
|
+
status: 'live',
|
|
56
|
+
preferred: true,
|
|
57
|
+
dex: 'osmosis'
|
|
58
|
+
}
|
|
59
|
+
}]
|
|
31
60
|
}];
|
|
32
61
|
exports.default = info;
|
|
@@ -81,6 +81,36 @@ const info = [
|
|
|
81
81
|
ordering: 'unordered',
|
|
82
82
|
version: 'ics20-1'
|
|
83
83
|
}]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
$schema: '../../ibc_data.schema.json',
|
|
87
|
+
chain_1: {
|
|
88
|
+
chain_name: 'elystestnet',
|
|
89
|
+
client_id: '07-tendermint-13',
|
|
90
|
+
connection_id: 'connection-9'
|
|
91
|
+
},
|
|
92
|
+
chain_2: {
|
|
93
|
+
chain_name: 'xrplevmtestnet',
|
|
94
|
+
client_id: '07-tendermint-15',
|
|
95
|
+
connection_id: 'connection-3'
|
|
96
|
+
},
|
|
97
|
+
channels: [{
|
|
98
|
+
chain_1: {
|
|
99
|
+
channel_id: 'channel-10',
|
|
100
|
+
port_id: 'transfer'
|
|
101
|
+
},
|
|
102
|
+
chain_2: {
|
|
103
|
+
channel_id: 'channel-3',
|
|
104
|
+
port_id: 'transfer'
|
|
105
|
+
},
|
|
106
|
+
ordering: 'unordered',
|
|
107
|
+
version: 'ics20-1',
|
|
108
|
+
tags: {
|
|
109
|
+
status: 'live',
|
|
110
|
+
preferred: true,
|
|
111
|
+
dex: 'osmosis'
|
|
112
|
+
}
|
|
113
|
+
}]
|
|
84
114
|
}
|
|
85
115
|
];
|
|
86
116
|
exports.default = info;
|
package/testnet/ibc.js
CHANGED
|
@@ -69,6 +69,7 @@ const _terra2testnet = __importStar(require("./terra2testnet"));
|
|
|
69
69
|
const _titannettestnet = __importStar(require("./titannettestnet"));
|
|
70
70
|
const _titantestnet = __importStar(require("./titantestnet"));
|
|
71
71
|
const _xiontestnet2 = __importStar(require("./xiontestnet2"));
|
|
72
|
+
const _xrplevmtestnet = __importStar(require("./xrplevmtestnet"));
|
|
72
73
|
const ibc = [
|
|
73
74
|
..._akashtestnet.ibc,
|
|
74
75
|
..._archwaytestnet.ibc,
|
|
@@ -115,6 +116,7 @@ const ibc = [
|
|
|
115
116
|
..._terra2testnet.ibc,
|
|
116
117
|
..._titannettestnet.ibc,
|
|
117
118
|
..._titantestnet.ibc,
|
|
118
|
-
..._xiontestnet2.ibc
|
|
119
|
+
..._xiontestnet2.ibc,
|
|
120
|
+
..._xrplevmtestnet.ibc
|
|
119
121
|
];
|
|
120
122
|
exports.default = ibc;
|
package/testnet/named.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ export * as wardenprotocoltestnet from './wardenprotocoltestnet';
|
|
|
125
125
|
export * as wavehashtestnet from './wavehashtestnet';
|
|
126
126
|
export * as xiontestnet2 from './xiontestnet2';
|
|
127
127
|
export * as xplatestnet from './xplatestnet';
|
|
128
|
+
export * as xrplevmtestnet from './xrplevmtestnet';
|
|
128
129
|
export * as zenrocktestnet from './zenrocktestnet';
|
|
129
130
|
export * as zetachaintestnet from './zetachaintestnet';
|
|
130
131
|
export * as zigchaintestnet from './zigchaintestnet';
|
package/testnet/named.js
CHANGED
|
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.injectivetestnet = exports.imversedtestnet = exports.impacthubtestnet = exports.hypersigntestnet = exports.humanstestnet = 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 = void 0;
|
|
27
27
|
exports.sgetestnet = exports.selfchaindevnet = exports.seitestnet2 = exports.seitestnet = exports.sedatestnet = exports.secretnetworktestnet = exports.sagatestnet = exports.qwoyntestnet = exports.quicksilvertestnet = 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.mantrachaintestnet = exports.manifesttestnet = 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 = void 0;
|
|
28
|
-
exports.zigchaintestnet = exports.zetachaintestnet = exports.zenrocktestnet = exports.xplatestnet = exports.xiontestnet2 = 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.symphonytestnet3 = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = exports.sixtestnet = exports.shentutestnet = exports.sgetestnet4 = void 0;
|
|
28
|
+
exports.zigchaintestnet = exports.zetachaintestnet = exports.zenrocktestnet = exports.xrplevmtestnet = exports.xplatestnet = exports.xiontestnet2 = 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.symphonytestnet3 = exports.symphonytestnet = exports.swisstroniktestnet = exports.sunrisetestnet = exports.stridetestnet = exports.statesettestnet = exports.stargazetestnet = exports.sourcetestnet = exports.soarchaintestnet = exports.sixtestnet = exports.shentutestnet = exports.sgetestnet4 = void 0;
|
|
29
29
|
exports.airchainstestnet = __importStar(require("./airchainstestnet"));
|
|
30
30
|
exports.airchainsvaranasitestnet = __importStar(require("./airchainsvaranasitestnet"));
|
|
31
31
|
exports.akashtestnet = __importStar(require("./akashtestnet"));
|
|
@@ -153,6 +153,7 @@ exports.wardenprotocoltestnet = __importStar(require("./wardenprotocoltestnet"))
|
|
|
153
153
|
exports.wavehashtestnet = __importStar(require("./wavehashtestnet"));
|
|
154
154
|
exports.xiontestnet2 = __importStar(require("./xiontestnet2"));
|
|
155
155
|
exports.xplatestnet = __importStar(require("./xplatestnet"));
|
|
156
|
+
exports.xrplevmtestnet = __importStar(require("./xrplevmtestnet"));
|
|
156
157
|
exports.zenrocktestnet = __importStar(require("./zenrocktestnet"));
|
|
157
158
|
exports.zetachaintestnet = __importStar(require("./zetachaintestnet"));
|
|
158
159
|
exports.zigchaintestnet = __importStar(require("./zigchaintestnet"));
|
|
@@ -1252,6 +1252,36 @@ const info = [
|
|
|
1252
1252
|
preferred: true
|
|
1253
1253
|
}
|
|
1254
1254
|
}]
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
$schema: '../../ibc_data.schema.json',
|
|
1258
|
+
chain_1: {
|
|
1259
|
+
chain_name: 'osmosistestnet',
|
|
1260
|
+
client_id: '07-tendermint-4629',
|
|
1261
|
+
connection_id: 'connection-3984'
|
|
1262
|
+
},
|
|
1263
|
+
chain_2: {
|
|
1264
|
+
chain_name: 'xrplevmtestnet',
|
|
1265
|
+
client_id: '07-tendermint-10',
|
|
1266
|
+
connection_id: 'connection-2'
|
|
1267
|
+
},
|
|
1268
|
+
channels: [{
|
|
1269
|
+
chain_1: {
|
|
1270
|
+
channel_id: 'channel-10361',
|
|
1271
|
+
port_id: 'transfer'
|
|
1272
|
+
},
|
|
1273
|
+
chain_2: {
|
|
1274
|
+
channel_id: 'channel-2',
|
|
1275
|
+
port_id: 'transfer'
|
|
1276
|
+
},
|
|
1277
|
+
ordering: 'unordered',
|
|
1278
|
+
version: 'ics20-1',
|
|
1279
|
+
tags: {
|
|
1280
|
+
status: 'live',
|
|
1281
|
+
preferred: true,
|
|
1282
|
+
dex: 'osmosis'
|
|
1283
|
+
}
|
|
1284
|
+
}]
|
|
1255
1285
|
}
|
|
1256
1286
|
];
|
|
1257
1287
|
exports.default = info;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../assetlist.schema.json',
|
|
5
|
+
chain_name: 'xrplevmtestnet',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of XRPL EVM Testnet',
|
|
8
|
+
extended_description: 'XRP is the native token of XRPL EVM, used for gas and fees. Though originally bridged from XRPL via Axelar, this token is fully integrated into XRPL EVM as a Cosmos SDK coin and ERC-20 precompile, and is treated as the canonical native asset of the chain.',
|
|
9
|
+
denom_units: [{
|
|
10
|
+
denom: 'axrp',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'XRP',
|
|
14
|
+
exponent: 18
|
|
15
|
+
}],
|
|
16
|
+
type_asset: 'sdk.coin',
|
|
17
|
+
base: 'axrp',
|
|
18
|
+
name: 'XRP',
|
|
19
|
+
display: 'XRP',
|
|
20
|
+
symbol: 'XRP',
|
|
21
|
+
images: [{
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png',
|
|
23
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg',
|
|
24
|
+
theme: {
|
|
25
|
+
primary_color_hex: '#040404'
|
|
26
|
+
}
|
|
27
|
+
}],
|
|
28
|
+
keywords: [
|
|
29
|
+
'xrpl',
|
|
30
|
+
'evm',
|
|
31
|
+
'testnet',
|
|
32
|
+
'sidechain',
|
|
33
|
+
'ripple',
|
|
34
|
+
'peersyst',
|
|
35
|
+
'cosmos',
|
|
36
|
+
'evmos',
|
|
37
|
+
'axelar',
|
|
38
|
+
'xrp',
|
|
39
|
+
'xrplevm'
|
|
40
|
+
],
|
|
41
|
+
socials: {
|
|
42
|
+
website: 'https://xrplevm.org',
|
|
43
|
+
twitter: 'https://twitter.com/Peersyst'
|
|
44
|
+
}
|
|
45
|
+
}]
|
|
46
|
+
};
|
|
47
|
+
exports.default = info;
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chain_name: 'xrplevmtestnet',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'testnet',
|
|
8
|
+
website: 'https://xrplevm.org/',
|
|
9
|
+
pretty_name: 'XRPL EVM Testnet',
|
|
10
|
+
chain_type: 'cosmos',
|
|
11
|
+
chain_id: 'xrplevm_1449000-1',
|
|
12
|
+
bech32_prefix: 'ethm',
|
|
13
|
+
node_home: '~/.exrpd',
|
|
14
|
+
daemon_name: 'exrpd',
|
|
15
|
+
key_algos: ['ethsecp256k1'],
|
|
16
|
+
extra_codecs: ['ethermint'],
|
|
17
|
+
slip44: 60,
|
|
18
|
+
fees: {
|
|
19
|
+
fee_tokens: [{
|
|
20
|
+
denom: 'axrp',
|
|
21
|
+
fixed_min_gas_price: 250000000,
|
|
22
|
+
low_gas_price: 200000000000,
|
|
23
|
+
average_gas_price: 250000000000,
|
|
24
|
+
high_gas_price: 400000000000
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
codebase: {
|
|
28
|
+
git_repo: 'https://github.com/xrplevm/node',
|
|
29
|
+
recommended_version: 'v7.0.0',
|
|
30
|
+
compatible_versions: ['v7.0.0'],
|
|
31
|
+
consensus: {
|
|
32
|
+
type: 'cometbft',
|
|
33
|
+
version: 'v0.38.17'
|
|
34
|
+
},
|
|
35
|
+
binaries: {
|
|
36
|
+
"linux/amd64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Linux_amd64.tar.gz',
|
|
37
|
+
"linux/arm64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Linux_arm64.tar.gz',
|
|
38
|
+
"darwin/amd64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Darwin_amd64.tar.gz',
|
|
39
|
+
"darwin/arm64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Darwin_arm64.tar.gz',
|
|
40
|
+
"windows/amd64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Windows_amd64.zip'
|
|
41
|
+
},
|
|
42
|
+
genesis: {
|
|
43
|
+
genesis_url: 'https://raw.githubusercontent.com/xrplevm/networks/refs/heads/main/testnet/genesis.json'
|
|
44
|
+
},
|
|
45
|
+
sdk: {
|
|
46
|
+
type: 'cosmos',
|
|
47
|
+
repo: 'https://github.com/xrplevm/cosmos-sdk',
|
|
48
|
+
version: 'v0.50.13',
|
|
49
|
+
tag: 'v0.50.13-xrplevm.2'
|
|
50
|
+
},
|
|
51
|
+
ibc: {
|
|
52
|
+
type: 'go',
|
|
53
|
+
version: 'v8.7.0'
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
images: [{
|
|
57
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/xrplevmtestnet/images/xrplevm.png',
|
|
58
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/xrplevmtestnet/images/xrplevm.svg',
|
|
59
|
+
theme: {
|
|
60
|
+
circle: true,
|
|
61
|
+
primary_color_hex: '#FFFFFF'
|
|
62
|
+
}
|
|
63
|
+
}],
|
|
64
|
+
description: 'The XRPL Ethereum Virtual Machine (EVM) is an innovative extension of the XRP Ledger developed by Peersyst in collaboration with Ripple that integrates Ethereum\'s smart contract capabilities via a dedicated sidechain. Built on the Cosmos SDK with a fork of evmOS, this sidechain utilizes a Proof-of-Authority (PoA) consensus model, ensuring high performance and low latency while maintaining the fundamental attributes of the XRP Ledger. It connects to the XRP Ledger through the Axelar network, employing XRP—bridged from the XRPL—as its native currency. This allows for seamless asset transfers and communication between the XRPL and the EVM sidechain. Moreover, the XRPL EVM supports Inter-Blockchain Communication (IBC), promoting interoperability with other blockchains in the Cosmos ecosystem.',
|
|
65
|
+
apis: {
|
|
66
|
+
rpc: [
|
|
67
|
+
{
|
|
68
|
+
address: 'https://rpc.testnet.xrplevm.org',
|
|
69
|
+
provider: 'Peersyst'
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
address: 'https://xrpl-evm-testnet.rpc.grove.city/v1/0caa84c4',
|
|
73
|
+
provider: 'Grove'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
address: 'https://xrpevm.kintsugi-nodes.com',
|
|
77
|
+
provider: 'Kintsugi Nodes'
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
address: 'https://xrp-testnet-rpc.polkachu.com/',
|
|
81
|
+
provider: 'Polkachu'
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
address: 'https://rpc.xrpl.cumulo.com.es',
|
|
85
|
+
provider: 'Cumulo'
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
address: 'https://xrpl-rpc.embervalidator.top/',
|
|
89
|
+
provider: 'Ember'
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
address: 'https://xrp-rpc.enigma-validator.com/',
|
|
93
|
+
provider: 'Enigma'
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
address: 'https://xrplevm-testnet-rpc.itrocket.net',
|
|
97
|
+
provider: 'ITRocket'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
address: 'http://xrpl-testnet-rpc.luckystar.asia/',
|
|
101
|
+
provider: 'LuckyStar'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
address: 'https://exrpd-testnet-rpc.mekonglabs.tech/',
|
|
105
|
+
provider: 'Mekong Labs'
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
address: 'https://xrpl-testnet-rpc.mictonode.com',
|
|
109
|
+
provider: 'MictoNode'
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
address: 'https://rpc-t.xrp.nodestake.org',
|
|
113
|
+
provider: 'NodeStake'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
address: 'https://xrpl-testnet-rpc.cosmonautstakes.com',
|
|
117
|
+
provider: 'Cosmonaut Stakes'
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
rest: [
|
|
121
|
+
{
|
|
122
|
+
address: 'https://api.xrpl.cumulo.com.es',
|
|
123
|
+
provider: 'Cumulo'
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
address: 'http://cosmos.testnet.xrplevm.org:1317',
|
|
127
|
+
provider: 'Peersyst'
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
address: 'https://api-xrp.kintsugi-nodes.com',
|
|
131
|
+
provider: 'Kintsugi Nodes'
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
address: 'https://xrp-testnet-api.polkachu.com/',
|
|
135
|
+
provider: 'Polkachu'
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
address: 'https://xrplevm-testnet-api.itrocket.net',
|
|
139
|
+
provider: 'ITRocket'
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
address: 'https://xrpl-testnet-api.luckystar.asia/',
|
|
143
|
+
provider: 'LuckyStar'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
address: 'https://exrpd-testnet-api.mekonglabs.tech/',
|
|
147
|
+
provider: 'Mekong Labs'
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
address: 'https://xrpl-testnet-api.mictonode.com',
|
|
151
|
+
provider: 'MictoNode'
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
address: 'https://api-t.xrp.nodestake.org',
|
|
155
|
+
provider: 'NodeStake'
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
grpc: [
|
|
159
|
+
{
|
|
160
|
+
address: 'http://cosmos.testnet.xrplevm.org:9090',
|
|
161
|
+
provider: 'Peersyst'
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
address: 'grpc-xrp.kintsugi-nodes.com',
|
|
165
|
+
provider: 'Kintsugi Nodes'
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
address: 'https://polkachu.com/testnet_public_grpc',
|
|
169
|
+
provider: 'Polkachu'
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
address: 'grpc.xrpl.cumulo.com.es',
|
|
173
|
+
provider: 'Cumulo'
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
address: 'xrplevm-testnet-grpc.itrocket.net:443',
|
|
177
|
+
provider: 'ITRocket'
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
address: 'https://xrpl-testnet-grpc.luckystar.asia/',
|
|
181
|
+
provider: 'LuckyStar'
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
address: 'exrpd-testnet-grpc.mekonglabs.tech:47090',
|
|
185
|
+
provider: 'Mekong Labs'
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
address: 'xrpl-testnet-grpc.mictonode.com:22090',
|
|
189
|
+
provider: 'MictoNode'
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
address: 't-xrpl.grpc.utsa.tech:433',
|
|
193
|
+
provider: 'UTSA (lesnik)'
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
address: 'http://xrplevm-testnet-grpc.blockitize.com/',
|
|
197
|
+
provider: 'blockitize'
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"evm-http-jsonrpc": [
|
|
201
|
+
{
|
|
202
|
+
address: 'https://exrpd-testnet-json-rpc.mekonglabs.tech',
|
|
203
|
+
provider: 'Mekong Labs'
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
address: 'https://xrpl-testnet-evmrpc.mictonode.com',
|
|
207
|
+
provider: 'MictoNode'
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
address: 'https://xrpl-evm.corenodehq.xyz/',
|
|
211
|
+
provider: 'CoreNode'
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
address: 'https://evmrpc-t.xrp.nodestake.org/',
|
|
215
|
+
provider: 'NodeStake'
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
address: 'http://xrplevm-devnet-jsonrpc.blockitize.com',
|
|
219
|
+
provider: 'blockitize'
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
address: 'https://json-rpc.xrpl.cumulo.com.es',
|
|
223
|
+
provider: 'Cumulo'
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
address: 'https://t-xrpl.evm.utsa.tech',
|
|
227
|
+
provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀'
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
address: 'https://xrplevm-testnet-jsonrpc.blockitize.com/',
|
|
231
|
+
provider: 'blockitize'
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
address: 'https://xrpl-testnet-json.techhubs.asia/',
|
|
235
|
+
provider: 'DeFatRat'
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
address: 'https://xrpl-evm.node9x.com/',
|
|
239
|
+
provider: 'node9x'
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
address: 'https://xrplevm-testnet-evm.itrocket.net',
|
|
243
|
+
provider: 'ITRocket'
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
address: 'https://json-rpc.testnet.xrplevm.p10node.com',
|
|
247
|
+
provider: 'p10node'
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
address: 'https://xrpl-testnet-evm.zstake.xyz',
|
|
251
|
+
provider: 'Zstake'
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
address: 'https://xrpl.evm.t.stavr.tech',
|
|
255
|
+
provider: 'STAVR'
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
address: 'https://xrpl-testnet-evm.cosmonautstakes.com',
|
|
259
|
+
provider: 'Cosmonaut Stakes'
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
address: 'https://xrp-testnet-evm.monkeylabs.me/',
|
|
263
|
+
provider: 'Monkey Labs'
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
address: 'https://xrpl-testnet-evm.bonynode.online/',
|
|
267
|
+
provider: 'BonyNode'
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
address: 'https://xrpl-testnet-jsonrpc.hazennetworksolutions.com/',
|
|
271
|
+
provider: 'Hazen Network Solutions'
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
address: 'https://xrpl-t-evm.brightlystake.com/evm',
|
|
275
|
+
provider: 'Brightlystake'
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
address: 'https://xrpl-testnet-jsonrpc.kgnodes.xyz',
|
|
279
|
+
provider: 'kgnodes Services'
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
address: 'https://evm.testnet.xrplevm.dongqn.com',
|
|
283
|
+
provider: 'Đông QN'
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
address: 'https://evmrpc-t.archive.xrp.nodestake.org',
|
|
287
|
+
provider: 'NodeStake'
|
|
288
|
+
}
|
|
289
|
+
]
|
|
290
|
+
},
|
|
291
|
+
explorers: [{
|
|
292
|
+
kind: 'evm',
|
|
293
|
+
url: 'https://explorer.testnet.xrplevm.org',
|
|
294
|
+
tx_page: 'https://explorer.testnet.xrplevm.org/tx/${txHash}',
|
|
295
|
+
account_page: 'https://explorer.testnet.xrplevm.org/address/${accountAddress}'
|
|
296
|
+
}, {
|
|
297
|
+
kind: 'cosmos',
|
|
298
|
+
url: 'https://governance.testnet.xrplevm.org',
|
|
299
|
+
tx_page: 'https://governance.testnet.xrplevm.org/tx/${txHash}',
|
|
300
|
+
account_page: 'https://governance.testnet.xrplevm.org/account/${accountAddress}'
|
|
301
|
+
}],
|
|
302
|
+
keywords: [
|
|
303
|
+
'xrpl',
|
|
304
|
+
'evm',
|
|
305
|
+
'testnet',
|
|
306
|
+
'sidechain',
|
|
307
|
+
'ripple',
|
|
308
|
+
'peersyst',
|
|
309
|
+
'cosmos',
|
|
310
|
+
'evmos',
|
|
311
|
+
'axelar',
|
|
312
|
+
'xrp',
|
|
313
|
+
'xrplevm'
|
|
314
|
+
]
|
|
315
|
+
};
|
|
316
|
+
exports.default = info;
|