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
|
@@ -663,14 +663,14 @@ const info = {
|
|
|
663
663
|
denom: 'cw20:bbn1j2nchmpuhkq0yj93g84txe33j5lhw2y7p3anhqjhvamqxsev6rmsneu85x',
|
|
664
664
|
exponent: 0
|
|
665
665
|
}, {
|
|
666
|
-
denom: 'satUniBTC',
|
|
666
|
+
denom: 'satUniBTC.e',
|
|
667
667
|
exponent: 8
|
|
668
668
|
}],
|
|
669
669
|
base: 'cw20:bbn1j2nchmpuhkq0yj93g84txe33j5lhw2y7p3anhqjhvamqxsev6rmsneu85x',
|
|
670
670
|
address: 'bbn1j2nchmpuhkq0yj93g84txe33j5lhw2y7p3anhqjhvamqxsev6rmsneu85x',
|
|
671
|
-
name: '
|
|
672
|
-
display: 'satUniBTC',
|
|
673
|
-
symbol: 'satUniBTC',
|
|
671
|
+
name: 'SatLayer uniBTC Bridged',
|
|
672
|
+
display: 'satUniBTC.e',
|
|
673
|
+
symbol: 'satUniBTC.e',
|
|
674
674
|
logo_URIs: {
|
|
675
675
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uniBTC.svg'
|
|
676
676
|
},
|
|
@@ -121,6 +121,10 @@ const info = {
|
|
|
121
121
|
address: 'https://elys-rpc.cogwheel.zone:443',
|
|
122
122
|
provider: 'Cogwheel ⚙️'
|
|
123
123
|
},
|
|
124
|
+
{
|
|
125
|
+
address: 'https://rpc-elys.ottersync.io:443',
|
|
126
|
+
provider: 'OtterSync'
|
|
127
|
+
},
|
|
124
128
|
{
|
|
125
129
|
address: 'https://elys.rpc.quasarstaking.ai:443',
|
|
126
130
|
provider: 'Quasar'
|
|
@@ -207,6 +211,10 @@ const info = {
|
|
|
207
211
|
address: 'https://elys-api.cogwheel.zone:443',
|
|
208
212
|
provider: 'Cogwheel ⚙️'
|
|
209
213
|
},
|
|
214
|
+
{
|
|
215
|
+
address: 'https://api-elys.ottersync.io:443',
|
|
216
|
+
provider: 'OtterSync'
|
|
217
|
+
},
|
|
210
218
|
{
|
|
211
219
|
address: 'https://elys.api.quasarstaking.ai:443',
|
|
212
220
|
provider: 'Quasar'
|
|
@@ -277,6 +285,10 @@ const info = {
|
|
|
277
285
|
address: 'elys-grpc.cogwheel.zone:443',
|
|
278
286
|
provider: 'Cogwheel ⚙️'
|
|
279
287
|
},
|
|
288
|
+
{
|
|
289
|
+
address: 'https://grpc-elys.ottersync.io:443',
|
|
290
|
+
provider: 'OtterSync'
|
|
291
|
+
},
|
|
280
292
|
{
|
|
281
293
|
address: 'elys.grpc.quasarstaking.ai:443',
|
|
282
294
|
provider: 'Quasar'
|
|
@@ -355,6 +367,12 @@ const info = {
|
|
|
355
367
|
{
|
|
356
368
|
kind: 'Stake-Hub by Kleomedes',
|
|
357
369
|
url: 'https://www.stake-hub.xyz/elys'
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
kind: 'ElysScan by Kwak',
|
|
373
|
+
url: 'https://elysscan.io',
|
|
374
|
+
tx_page: 'https://elysscan.io/tx/${txHash}',
|
|
375
|
+
account_page: 'https://elysscan.io/address/${accountAddress}'
|
|
358
376
|
}
|
|
359
377
|
]
|
|
360
378
|
};
|
|
@@ -3,6 +3,7 @@ const info = {
|
|
|
3
3
|
chain_name: 'initia',
|
|
4
4
|
assets: [{
|
|
5
5
|
description: 'The native token of Initia',
|
|
6
|
+
extended_description: 'Initia L1 is a Layer 1 blockchain designed to serve as the coordination layer and central hub for all Initia rollups. This layer provides essential services to Rollups, including: Network Security, Governance, Liquidity Solutions, Bridging and Interoperability.',
|
|
6
7
|
denom_units: [{
|
|
7
8
|
denom: 'uinit',
|
|
8
9
|
exponent: 0
|
|
@@ -26,7 +27,8 @@ const info = {
|
|
|
26
27
|
website: 'https://initia.xyz/',
|
|
27
28
|
twitter: 'https://twitter.com/initiaFDN'
|
|
28
29
|
},
|
|
29
|
-
type_asset: 'sdk.coin'
|
|
30
|
+
type_asset: 'sdk.coin',
|
|
31
|
+
coingecko_id: 'initia'
|
|
30
32
|
}]
|
|
31
33
|
};
|
|
32
34
|
export default info;
|
|
@@ -40,19 +40,28 @@ const info = {
|
|
|
40
40
|
genesis_url: 'https://storage.googleapis.com/init-common-genesis/interwoven-1/genesis.json'
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
|
-
description: 'Initia
|
|
43
|
+
description: 'Initia L1 is a Layer 1 blockchain designed to serve as the coordination layer and central hub for all Initia rollups. This layer provides essential services to Rollups, including: Network Security, Governance, Liquidity Solutions, Bridging and Interoperability.',
|
|
44
44
|
apis: {
|
|
45
45
|
rpc: [{
|
|
46
46
|
address: 'https://rpc.initia.xyz',
|
|
47
47
|
provider: 'Initia Labs'
|
|
48
|
+
}, {
|
|
49
|
+
address: 'https://initia.rpc.quasarstaking.ai:443',
|
|
50
|
+
provider: 'Quasar'
|
|
48
51
|
}],
|
|
49
52
|
rest: [{
|
|
50
53
|
address: 'https://rest.initia.xyz',
|
|
51
54
|
provider: 'Initia Labs'
|
|
55
|
+
}, {
|
|
56
|
+
address: 'https://initia.api.quasarstaking.ai:443',
|
|
57
|
+
provider: 'Quasar'
|
|
52
58
|
}],
|
|
53
59
|
grpc: [{
|
|
54
60
|
address: 'grpc.initia.xyz:443',
|
|
55
61
|
provider: 'Initia Labs'
|
|
62
|
+
}, {
|
|
63
|
+
address: 'initia.grpc.quasarstaking.ai:80',
|
|
64
|
+
provider: 'Quasar'
|
|
56
65
|
}]
|
|
57
66
|
},
|
|
58
67
|
explorers: [{
|
|
@@ -2,29 +2,56 @@ const info = [{
|
|
|
2
2
|
$schema: '../ibc_data.schema.json',
|
|
3
3
|
chain_1: {
|
|
4
4
|
chain_name: 'initia',
|
|
5
|
-
client_id: '07-tendermint-
|
|
6
|
-
connection_id: 'connection-
|
|
5
|
+
client_id: '07-tendermint-20',
|
|
6
|
+
connection_id: 'connection-20'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'neutron',
|
|
10
|
+
client_id: '07-tendermint-161',
|
|
11
|
+
connection_id: 'connection-118'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-37',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-6885',
|
|
20
|
+
port_id: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}, {
|
|
30
|
+
$schema: '../ibc_data.schema.json',
|
|
31
|
+
chain_1: {
|
|
32
|
+
chain_name: 'initia',
|
|
33
|
+
client_id: '07-tendermint-36',
|
|
34
|
+
connection_id: 'connection-36'
|
|
7
35
|
},
|
|
8
36
|
chain_2: {
|
|
9
37
|
chain_name: 'osmosis',
|
|
10
|
-
client_id: '07-tendermint-
|
|
11
|
-
connection_id: 'connection-
|
|
38
|
+
client_id: '07-tendermint-3477',
|
|
39
|
+
connection_id: 'connection-10713'
|
|
12
40
|
},
|
|
13
41
|
channels: [{
|
|
14
42
|
chain_1: {
|
|
15
|
-
channel_id: 'channel-
|
|
43
|
+
channel_id: 'channel-68',
|
|
16
44
|
port_id: 'transfer'
|
|
17
45
|
},
|
|
18
46
|
chain_2: {
|
|
19
|
-
channel_id: 'channel-
|
|
47
|
+
channel_id: 'channel-102122',
|
|
20
48
|
port_id: 'transfer'
|
|
21
49
|
},
|
|
22
50
|
ordering: 'unordered',
|
|
23
51
|
version: 'ics20-1',
|
|
24
52
|
tags: {
|
|
25
53
|
status: 'live',
|
|
26
|
-
preferred: true
|
|
27
|
-
dex: 'osmosis'
|
|
54
|
+
preferred: true
|
|
28
55
|
}
|
|
29
56
|
}]
|
|
30
57
|
}];
|
|
@@ -363,6 +363,35 @@ const info = [
|
|
|
363
363
|
}
|
|
364
364
|
}]
|
|
365
365
|
},
|
|
366
|
+
{
|
|
367
|
+
$schema: '../ibc_data.schema.json',
|
|
368
|
+
chain_1: {
|
|
369
|
+
chain_name: 'initia',
|
|
370
|
+
client_id: '07-tendermint-20',
|
|
371
|
+
connection_id: 'connection-20'
|
|
372
|
+
},
|
|
373
|
+
chain_2: {
|
|
374
|
+
chain_name: 'neutron',
|
|
375
|
+
client_id: '07-tendermint-161',
|
|
376
|
+
connection_id: 'connection-118'
|
|
377
|
+
},
|
|
378
|
+
channels: [{
|
|
379
|
+
chain_1: {
|
|
380
|
+
channel_id: 'channel-37',
|
|
381
|
+
port_id: 'transfer'
|
|
382
|
+
},
|
|
383
|
+
chain_2: {
|
|
384
|
+
channel_id: 'channel-6885',
|
|
385
|
+
port_id: 'transfer'
|
|
386
|
+
},
|
|
387
|
+
ordering: 'unordered',
|
|
388
|
+
version: 'ics20-1',
|
|
389
|
+
tags: {
|
|
390
|
+
status: 'live',
|
|
391
|
+
preferred: true
|
|
392
|
+
}
|
|
393
|
+
}]
|
|
394
|
+
},
|
|
366
395
|
{
|
|
367
396
|
$schema: '../ibc_data.schema.json',
|
|
368
397
|
chain_1: {
|
|
@@ -1968,29 +1968,28 @@ const info = [
|
|
|
1968
1968
|
$schema: '../ibc_data.schema.json',
|
|
1969
1969
|
chain_1: {
|
|
1970
1970
|
chain_name: 'initia',
|
|
1971
|
-
client_id: '07-tendermint-
|
|
1972
|
-
connection_id: 'connection-
|
|
1971
|
+
client_id: '07-tendermint-36',
|
|
1972
|
+
connection_id: 'connection-36'
|
|
1973
1973
|
},
|
|
1974
1974
|
chain_2: {
|
|
1975
1975
|
chain_name: 'osmosis',
|
|
1976
|
-
client_id: '07-tendermint-
|
|
1977
|
-
connection_id: 'connection-
|
|
1976
|
+
client_id: '07-tendermint-3477',
|
|
1977
|
+
connection_id: 'connection-10713'
|
|
1978
1978
|
},
|
|
1979
1979
|
channels: [{
|
|
1980
1980
|
chain_1: {
|
|
1981
|
-
channel_id: 'channel-
|
|
1981
|
+
channel_id: 'channel-68',
|
|
1982
1982
|
port_id: 'transfer'
|
|
1983
1983
|
},
|
|
1984
1984
|
chain_2: {
|
|
1985
|
-
channel_id: 'channel-
|
|
1985
|
+
channel_id: 'channel-102122',
|
|
1986
1986
|
port_id: 'transfer'
|
|
1987
1987
|
},
|
|
1988
1988
|
ordering: 'unordered',
|
|
1989
1989
|
version: 'ics20-1',
|
|
1990
1990
|
tags: {
|
|
1991
1991
|
status: 'live',
|
|
1992
|
-
preferred: true
|
|
1993
|
-
dex: 'osmosis'
|
|
1992
|
+
preferred: true
|
|
1994
1993
|
}
|
|
1995
1994
|
}]
|
|
1996
1995
|
},
|
package/esm/testnet/assets.js
CHANGED
|
@@ -125,6 +125,7 @@ import * as _wardenprotocoltestnet from './wardenprotocoltestnet';
|
|
|
125
125
|
import * as _wavehashtestnet from './wavehashtestnet';
|
|
126
126
|
import * as _xiontestnet2 from './xiontestnet2';
|
|
127
127
|
import * as _xplatestnet from './xplatestnet';
|
|
128
|
+
import * as _xrplevmtestnet from './xrplevmtestnet';
|
|
128
129
|
import * as _zenrocktestnet from './zenrocktestnet';
|
|
129
130
|
import * as _zetachaintestnet from './zetachaintestnet';
|
|
130
131
|
import * as _zigchaintestnet from './zigchaintestnet';
|
|
@@ -256,6 +257,7 @@ const assets = [
|
|
|
256
257
|
_wavehashtestnet.assets,
|
|
257
258
|
_xiontestnet2.assets,
|
|
258
259
|
_xplatestnet.assets,
|
|
260
|
+
_xrplevmtestnet.assets,
|
|
259
261
|
_zenrocktestnet.assets,
|
|
260
262
|
_zetachaintestnet.assets,
|
|
261
263
|
_zigchaintestnet.assets
|
package/esm/testnet/chains.js
CHANGED
|
@@ -125,6 +125,7 @@ import * as _wardenprotocoltestnet from './wardenprotocoltestnet';
|
|
|
125
125
|
import * as _wavehashtestnet from './wavehashtestnet';
|
|
126
126
|
import * as _xiontestnet2 from './xiontestnet2';
|
|
127
127
|
import * as _xplatestnet from './xplatestnet';
|
|
128
|
+
import * as _xrplevmtestnet from './xrplevmtestnet';
|
|
128
129
|
import * as _zenrocktestnet from './zenrocktestnet';
|
|
129
130
|
import * as _zetachaintestnet from './zetachaintestnet';
|
|
130
131
|
import * as _zigchaintestnet from './zigchaintestnet';
|
|
@@ -256,6 +257,7 @@ const chains = [
|
|
|
256
257
|
_wavehashtestnet.chain,
|
|
257
258
|
_xiontestnet2.chain,
|
|
258
259
|
_xplatestnet.chain,
|
|
260
|
+
_xrplevmtestnet.chain,
|
|
259
261
|
_zenrocktestnet.chain,
|
|
260
262
|
_zetachaintestnet.chain,
|
|
261
263
|
_zigchaintestnet.chain
|
|
@@ -26,5 +26,34 @@ const info = [{
|
|
|
26
26
|
preferred: true
|
|
27
27
|
}
|
|
28
28
|
}]
|
|
29
|
+
}, {
|
|
30
|
+
$schema: '../../ibc_data.schema.json',
|
|
31
|
+
chain_1: {
|
|
32
|
+
chain_name: 'cosmosicsprovidertestnet',
|
|
33
|
+
client_id: '07-tendermint-290',
|
|
34
|
+
connection_id: 'connection-208'
|
|
35
|
+
},
|
|
36
|
+
chain_2: {
|
|
37
|
+
chain_name: 'xrplevmtestnet',
|
|
38
|
+
client_id: '07-tendermint-9',
|
|
39
|
+
connection_id: 'connection-1'
|
|
40
|
+
},
|
|
41
|
+
channels: [{
|
|
42
|
+
chain_1: {
|
|
43
|
+
channel_id: 'channel-374',
|
|
44
|
+
port_id: 'transfer'
|
|
45
|
+
},
|
|
46
|
+
chain_2: {
|
|
47
|
+
channel_id: 'channel-1',
|
|
48
|
+
port_id: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
ordering: 'unordered',
|
|
51
|
+
version: 'ics20-1',
|
|
52
|
+
tags: {
|
|
53
|
+
status: 'live',
|
|
54
|
+
preferred: true,
|
|
55
|
+
dex: 'osmosis'
|
|
56
|
+
}
|
|
57
|
+
}]
|
|
29
58
|
}];
|
|
30
59
|
export default info;
|
|
@@ -79,6 +79,36 @@ const info = [
|
|
|
79
79
|
ordering: 'unordered',
|
|
80
80
|
version: 'ics20-1'
|
|
81
81
|
}]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
$schema: '../../ibc_data.schema.json',
|
|
85
|
+
chain_1: {
|
|
86
|
+
chain_name: 'elystestnet',
|
|
87
|
+
client_id: '07-tendermint-13',
|
|
88
|
+
connection_id: 'connection-9'
|
|
89
|
+
},
|
|
90
|
+
chain_2: {
|
|
91
|
+
chain_name: 'xrplevmtestnet',
|
|
92
|
+
client_id: '07-tendermint-15',
|
|
93
|
+
connection_id: 'connection-3'
|
|
94
|
+
},
|
|
95
|
+
channels: [{
|
|
96
|
+
chain_1: {
|
|
97
|
+
channel_id: 'channel-10',
|
|
98
|
+
port_id: 'transfer'
|
|
99
|
+
},
|
|
100
|
+
chain_2: {
|
|
101
|
+
channel_id: 'channel-3',
|
|
102
|
+
port_id: 'transfer'
|
|
103
|
+
},
|
|
104
|
+
ordering: 'unordered',
|
|
105
|
+
version: 'ics20-1',
|
|
106
|
+
tags: {
|
|
107
|
+
status: 'live',
|
|
108
|
+
preferred: true,
|
|
109
|
+
dex: 'osmosis'
|
|
110
|
+
}
|
|
111
|
+
}]
|
|
82
112
|
}
|
|
83
113
|
];
|
|
84
114
|
export default info;
|
package/esm/testnet/ibc.js
CHANGED
|
@@ -44,6 +44,7 @@ import * as _terra2testnet from './terra2testnet';
|
|
|
44
44
|
import * as _titannettestnet from './titannettestnet';
|
|
45
45
|
import * as _titantestnet from './titantestnet';
|
|
46
46
|
import * as _xiontestnet2 from './xiontestnet2';
|
|
47
|
+
import * as _xrplevmtestnet from './xrplevmtestnet';
|
|
47
48
|
const ibc = [
|
|
48
49
|
..._akashtestnet.ibc,
|
|
49
50
|
..._archwaytestnet.ibc,
|
|
@@ -90,6 +91,7 @@ const ibc = [
|
|
|
90
91
|
..._terra2testnet.ibc,
|
|
91
92
|
..._titannettestnet.ibc,
|
|
92
93
|
..._titantestnet.ibc,
|
|
93
|
-
..._xiontestnet2.ibc
|
|
94
|
+
..._xiontestnet2.ibc,
|
|
95
|
+
..._xrplevmtestnet.ibc
|
|
94
96
|
];
|
|
95
97
|
export default ibc;
|
package/esm/testnet/named.js
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';
|
|
@@ -1250,6 +1250,36 @@ const info = [
|
|
|
1250
1250
|
preferred: true
|
|
1251
1251
|
}
|
|
1252
1252
|
}]
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
$schema: '../../ibc_data.schema.json',
|
|
1256
|
+
chain_1: {
|
|
1257
|
+
chain_name: 'osmosistestnet',
|
|
1258
|
+
client_id: '07-tendermint-4629',
|
|
1259
|
+
connection_id: 'connection-3984'
|
|
1260
|
+
},
|
|
1261
|
+
chain_2: {
|
|
1262
|
+
chain_name: 'xrplevmtestnet',
|
|
1263
|
+
client_id: '07-tendermint-10',
|
|
1264
|
+
connection_id: 'connection-2'
|
|
1265
|
+
},
|
|
1266
|
+
channels: [{
|
|
1267
|
+
chain_1: {
|
|
1268
|
+
channel_id: 'channel-10361',
|
|
1269
|
+
port_id: 'transfer'
|
|
1270
|
+
},
|
|
1271
|
+
chain_2: {
|
|
1272
|
+
channel_id: 'channel-2',
|
|
1273
|
+
port_id: 'transfer'
|
|
1274
|
+
},
|
|
1275
|
+
ordering: 'unordered',
|
|
1276
|
+
version: 'ics20-1',
|
|
1277
|
+
tags: {
|
|
1278
|
+
status: 'live',
|
|
1279
|
+
preferred: true,
|
|
1280
|
+
dex: 'osmosis'
|
|
1281
|
+
}
|
|
1282
|
+
}]
|
|
1253
1283
|
}
|
|
1254
1284
|
];
|
|
1255
1285
|
export default info;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'xrplevmtestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of XRPL EVM Testnet',
|
|
6
|
+
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.',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'axrp',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'XRP',
|
|
12
|
+
exponent: 18
|
|
13
|
+
}],
|
|
14
|
+
type_asset: 'sdk.coin',
|
|
15
|
+
base: 'axrp',
|
|
16
|
+
name: 'XRP',
|
|
17
|
+
display: 'XRP',
|
|
18
|
+
symbol: 'XRP',
|
|
19
|
+
images: [{
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png',
|
|
21
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg',
|
|
22
|
+
theme: {
|
|
23
|
+
primary_color_hex: '#040404'
|
|
24
|
+
}
|
|
25
|
+
}],
|
|
26
|
+
keywords: [
|
|
27
|
+
'xrpl',
|
|
28
|
+
'evm',
|
|
29
|
+
'testnet',
|
|
30
|
+
'sidechain',
|
|
31
|
+
'ripple',
|
|
32
|
+
'peersyst',
|
|
33
|
+
'cosmos',
|
|
34
|
+
'evmos',
|
|
35
|
+
'axelar',
|
|
36
|
+
'xrp',
|
|
37
|
+
'xrplevm'
|
|
38
|
+
],
|
|
39
|
+
socials: {
|
|
40
|
+
website: 'https://xrplevm.org',
|
|
41
|
+
twitter: 'https://twitter.com/Peersyst'
|
|
42
|
+
}
|
|
43
|
+
}]
|
|
44
|
+
};
|
|
45
|
+
export default info;
|