chain-registry 2.0.6 → 2.0.7
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/manifestdevnet/chain.js +2 -1
- package/esm/devnet/manifestdevnet/chain.js +2 -1
- package/esm/mainnet/asset-lists.js +4 -0
- package/esm/mainnet/celestia/ibc-data.js +25 -0
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/cosmoshub/ibc-data.js +54 -0
- package/esm/mainnet/elys/ibc-data.js +29 -0
- package/esm/mainnet/ethereum/asset-list.js +1 -1
- package/esm/mainnet/ibc-data.js +4 -0
- package/esm/mainnet/injective/ibc-data.js +29 -0
- package/esm/mainnet/manifest/chain.js +3 -2
- package/esm/mainnet/namada/asset-list.js +485 -0
- package/esm/mainnet/namada/chain.js +141 -0
- package/esm/mainnet/namada/ibc-data.js +203 -0
- package/esm/mainnet/namada/index.js +6 -0
- package/esm/mainnet/neutron/ibc-data.js +25 -0
- package/esm/mainnet/noble/ibc-data.js +54 -0
- package/esm/mainnet/nyx/ibc-data.js +25 -0
- package/esm/mainnet/osmosis/ibc-data.js +54 -0
- package/esm/mainnet/stride/ibc-data.js +25 -0
- package/esm/mainnet/xrplevm/asset-list.js +54 -0
- package/esm/mainnet/xrplevm/chain.js +106 -0
- package/esm/mainnet/xrplevm/ibc-data.js +148 -0
- package/esm/mainnet/xrplevm/index.js +6 -0
- package/esm/noncosmos/asset-lists.js +0 -2
- package/esm/noncosmos/penumbra/ibc-data.js +31 -3
- package/esm/testnet/manifesttestnet/chain.js +2 -1
- package/esm/testnet/xrplevmtestnet/chain.js +5 -14
- package/mainnet/asset-lists.js +4 -0
- package/mainnet/celestia/ibc-data.js +25 -0
- package/mainnet/chains.js +4 -0
- package/mainnet/cosmoshub/ibc-data.js +54 -0
- package/mainnet/elys/ibc-data.js +29 -0
- package/mainnet/ethereum/asset-list.js +1 -1
- package/mainnet/ibc-data.js +4 -0
- package/mainnet/injective/ibc-data.js +29 -0
- package/mainnet/manifest/chain.js +3 -2
- package/mainnet/namada/asset-list.js +487 -0
- package/mainnet/namada/chain.d.ts +3 -0
- package/mainnet/namada/chain.js +143 -0
- package/mainnet/namada/ibc-data.d.ts +3 -0
- package/mainnet/namada/ibc-data.js +205 -0
- package/mainnet/namada/index.d.ts +3 -0
- package/{noncosmos → mainnet}/namada/index.js +5 -1
- package/mainnet/neutron/ibc-data.js +25 -0
- package/mainnet/noble/ibc-data.js +54 -0
- package/mainnet/nyx/ibc-data.js +25 -0
- package/mainnet/osmosis/ibc-data.js +54 -0
- package/mainnet/stride/ibc-data.js +25 -0
- package/mainnet/xrplevm/asset-list.d.ts +3 -0
- package/mainnet/xrplevm/asset-list.js +56 -0
- package/mainnet/xrplevm/chain.d.ts +3 -0
- package/mainnet/xrplevm/chain.js +108 -0
- package/mainnet/xrplevm/ibc-data.d.ts +3 -0
- package/mainnet/xrplevm/ibc-data.js +150 -0
- package/mainnet/xrplevm/index.d.ts +3 -0
- package/mainnet/xrplevm/index.js +12 -0
- package/noncosmos/asset-lists.js +0 -2
- package/noncosmos/penumbra/ibc-data.js +31 -3
- package/package.json +3 -3
- package/testnet/manifesttestnet/chain.js +2 -1
- package/testnet/xrplevmtestnet/chain.js +5 -14
- package/esm/noncosmos/namada/asset-list.js +0 -31
- package/esm/noncosmos/namada/index.js +0 -2
- package/noncosmos/namada/asset-list.js +0 -33
- package/noncosmos/namada/index.d.ts +0 -1
- /package/{noncosmos → mainnet}/namada/asset-list.d.ts +0 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'cosmoshub',
|
|
6
|
+
clientId: '07-tendermint-1411',
|
|
7
|
+
connectionId: 'connection-1134'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'xrplevm',
|
|
11
|
+
clientId: '07-tendermint-2',
|
|
12
|
+
connectionId: 'connection-2'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain1: {
|
|
16
|
+
channelId: 'channel-1377',
|
|
17
|
+
portId: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain2: {
|
|
20
|
+
channelId: 'channel-2',
|
|
21
|
+
portId: '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
|
+
chain1: {
|
|
34
|
+
chainName: 'elys',
|
|
35
|
+
clientId: '07-tendermint-57',
|
|
36
|
+
connectionId: 'connection-38'
|
|
37
|
+
},
|
|
38
|
+
chain2: {
|
|
39
|
+
chainName: 'xrplevm',
|
|
40
|
+
clientId: '07-tendermint-1',
|
|
41
|
+
connectionId: 'connection-1'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain1: {
|
|
45
|
+
channelId: 'channel-27',
|
|
46
|
+
portId: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain2: {
|
|
49
|
+
channelId: 'channel-1',
|
|
50
|
+
portId: '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
|
+
chain1: {
|
|
63
|
+
chainName: 'injective',
|
|
64
|
+
clientId: '07-tendermint-314',
|
|
65
|
+
connectionId: 'connection-314'
|
|
66
|
+
},
|
|
67
|
+
chain2: {
|
|
68
|
+
chainName: 'xrplevm',
|
|
69
|
+
clientId: '07-tendermint-0',
|
|
70
|
+
connectionId: 'connection-0'
|
|
71
|
+
},
|
|
72
|
+
channels: [{
|
|
73
|
+
chain1: {
|
|
74
|
+
channelId: 'channel-436',
|
|
75
|
+
portId: 'transfer'
|
|
76
|
+
},
|
|
77
|
+
chain2: {
|
|
78
|
+
channelId: 'channel-0',
|
|
79
|
+
portId: 'transfer'
|
|
80
|
+
},
|
|
81
|
+
ordering: 'unordered',
|
|
82
|
+
version: 'ics20-1',
|
|
83
|
+
tags: {
|
|
84
|
+
status: 'live',
|
|
85
|
+
preferred: true
|
|
86
|
+
}
|
|
87
|
+
}]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
$schema: '../ibc_data.schema.json',
|
|
91
|
+
chain1: {
|
|
92
|
+
chainName: 'noble',
|
|
93
|
+
clientId: '07-tendermint-164',
|
|
94
|
+
connectionId: 'connection-159'
|
|
95
|
+
},
|
|
96
|
+
chain2: {
|
|
97
|
+
chainName: 'xrplevm',
|
|
98
|
+
clientId: '07-tendermint-4',
|
|
99
|
+
connectionId: 'connection-4'
|
|
100
|
+
},
|
|
101
|
+
channels: [{
|
|
102
|
+
chain1: {
|
|
103
|
+
channelId: 'channel-152',
|
|
104
|
+
portId: 'transfer'
|
|
105
|
+
},
|
|
106
|
+
chain2: {
|
|
107
|
+
channelId: 'channel-4',
|
|
108
|
+
portId: 'transfer'
|
|
109
|
+
},
|
|
110
|
+
ordering: 'unordered',
|
|
111
|
+
version: 'ics20-1',
|
|
112
|
+
tags: {
|
|
113
|
+
status: 'live',
|
|
114
|
+
preferred: true
|
|
115
|
+
}
|
|
116
|
+
}]
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
$schema: '../ibc_data.schema.json',
|
|
120
|
+
chain1: {
|
|
121
|
+
chainName: 'osmosis',
|
|
122
|
+
clientId: '07-tendermint-3499',
|
|
123
|
+
connectionId: 'connection-10747'
|
|
124
|
+
},
|
|
125
|
+
chain2: {
|
|
126
|
+
chainName: 'xrplevm',
|
|
127
|
+
clientId: '07-tendermint-3',
|
|
128
|
+
connectionId: 'connection-3'
|
|
129
|
+
},
|
|
130
|
+
channels: [{
|
|
131
|
+
chain1: {
|
|
132
|
+
channelId: 'channel-104325',
|
|
133
|
+
portId: 'transfer'
|
|
134
|
+
},
|
|
135
|
+
chain2: {
|
|
136
|
+
channelId: 'channel-3',
|
|
137
|
+
portId: 'transfer'
|
|
138
|
+
},
|
|
139
|
+
ordering: 'unordered',
|
|
140
|
+
version: 'ics20-1',
|
|
141
|
+
tags: {
|
|
142
|
+
status: 'live',
|
|
143
|
+
preferred: true
|
|
144
|
+
}
|
|
145
|
+
}]
|
|
146
|
+
}
|
|
147
|
+
];
|
|
148
|
+
export default info;
|
|
@@ -33,7 +33,6 @@ import * as _xrpl from './xrpl';
|
|
|
33
33
|
import * as _zilliqa from './zilliqa';
|
|
34
34
|
import * as _berachain from './berachain';
|
|
35
35
|
import * as _hall from './hall';
|
|
36
|
-
import * as _namada from './namada';
|
|
37
36
|
import * as _avalanchetestnet from './avalanchetestnet';
|
|
38
37
|
import * as _binancesmartchaintestnet from './binancesmartchaintestnet';
|
|
39
38
|
import * as _bitcoincashtestnet from './bitcoincashtestnet';
|
|
@@ -85,7 +84,6 @@ const assetList = [
|
|
|
85
84
|
_zilliqa.assetList,
|
|
86
85
|
_berachain.assetList,
|
|
87
86
|
_hall.assetList,
|
|
88
|
-
_namada.assetList,
|
|
89
87
|
_avalanchetestnet.assetList,
|
|
90
88
|
_binancesmartchaintestnet.assetList,
|
|
91
89
|
_bitcoincashtestnet.assetList,
|
|
@@ -1,4 +1,30 @@
|
|
|
1
|
-
const info = [
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'namada',
|
|
6
|
+
clientId: '07-tendermint-6',
|
|
7
|
+
connectionId: 'connection-4'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'penumbra',
|
|
11
|
+
clientId: '07-tendermint-18',
|
|
12
|
+
connectionId: 'connection-14'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain1: {
|
|
16
|
+
channelId: 'channel-4',
|
|
17
|
+
portId: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain2: {
|
|
20
|
+
channelId: 'channel-13',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1'
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
{
|
|
2
28
|
$schema: '../ibc_data.schema.json',
|
|
3
29
|
chain1: {
|
|
4
30
|
chainName: 'neutron',
|
|
@@ -26,7 +52,8 @@ const info = [{
|
|
|
26
52
|
preferred: true
|
|
27
53
|
}
|
|
28
54
|
}]
|
|
29
|
-
},
|
|
55
|
+
},
|
|
56
|
+
{
|
|
30
57
|
$schema: '../ibc_data.schema.json',
|
|
31
58
|
chain1: {
|
|
32
59
|
chainName: 'osmosis',
|
|
@@ -55,5 +82,6 @@ const info = [{
|
|
|
55
82
|
dex: 'osmosis'
|
|
56
83
|
}
|
|
57
84
|
}]
|
|
58
|
-
}
|
|
85
|
+
}
|
|
86
|
+
];
|
|
59
87
|
export default info;
|
|
@@ -53,7 +53,8 @@ const info = {
|
|
|
53
53
|
explorers: [{
|
|
54
54
|
kind: 'Default Explorer',
|
|
55
55
|
url: 'https://testnet.manifest.explorers.guru/',
|
|
56
|
-
txPage: 'https://testnet.manifest.explorers.guru/
|
|
56
|
+
txPage: 'https://testnet.manifest.explorers.guru/transaction/${txHash}',
|
|
57
|
+
accountPage: 'https://testnet.manifest.explorers.guru/account/${accountAddress}'
|
|
57
58
|
}],
|
|
58
59
|
logoURIs: {
|
|
59
60
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|
|
@@ -286,26 +286,17 @@ const info = {
|
|
|
286
286
|
}
|
|
287
287
|
]
|
|
288
288
|
},
|
|
289
|
-
explorers: [
|
|
290
|
-
{
|
|
289
|
+
explorers: [{
|
|
291
290
|
kind: 'evm',
|
|
292
291
|
url: 'https://explorer.testnet.xrplevm.org',
|
|
293
292
|
txPage: 'https://explorer.testnet.xrplevm.org/tx/${txHash}',
|
|
294
293
|
accountPage: 'https://explorer.testnet.xrplevm.org/address/${accountAddress}'
|
|
295
|
-
},
|
|
296
|
-
{
|
|
294
|
+
}, {
|
|
297
295
|
kind: 'cosmos',
|
|
298
296
|
url: 'https://governance.testnet.xrplevm.org',
|
|
299
|
-
txPage: 'https://governance.testnet.xrplevm.org/
|
|
300
|
-
accountPage: 'https://governance.testnet.xrplevm.org/
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
kind: 'Valopers',
|
|
304
|
-
url: 'https://testnet.xrplevm.valopers.com/',
|
|
305
|
-
txPage: 'https://testnet.xrplevm.valopers.com/transactions/${txHash}',
|
|
306
|
-
accountPage: 'https://testnet.xrplevm.valopers.com/account/${accountAddress}'
|
|
307
|
-
}
|
|
308
|
-
],
|
|
297
|
+
txPage: 'https://governance.testnet.xrplevm.org/xrplevm/transactions/${txHash}',
|
|
298
|
+
accountPage: 'https://governance.testnet.xrplevm.org/xrplevm/accounts/${accountAddress}'
|
|
299
|
+
}],
|
|
309
300
|
keywords: [
|
|
310
301
|
'xrpl',
|
|
311
302
|
'evm',
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -24,6 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
const _ethereum = __importStar(require("./ethereum"));
|
|
27
|
+
const _namada = __importStar(require("./namada"));
|
|
27
28
|
const _rootstock = __importStar(require("./rootstock"));
|
|
28
29
|
const _solana = __importStar(require("./solana"));
|
|
29
30
|
const _ton = __importStar(require("./ton"));
|
|
@@ -224,10 +225,12 @@ const _uptick = __importStar(require("./uptick"));
|
|
|
224
225
|
const _vector = __importStar(require("./vector"));
|
|
225
226
|
const _xion = __importStar(require("./xion"));
|
|
226
227
|
const _xpla = __importStar(require("./xpla"));
|
|
228
|
+
const _xrplevm = __importStar(require("./xrplevm"));
|
|
227
229
|
const _zenrock = __importStar(require("./zenrock"));
|
|
228
230
|
const _zetachain = __importStar(require("./zetachain"));
|
|
229
231
|
const assetList = [
|
|
230
232
|
_ethereum.assetList,
|
|
233
|
+
_namada.assetList,
|
|
231
234
|
_rootstock.assetList,
|
|
232
235
|
_solana.assetList,
|
|
233
236
|
_ton.assetList,
|
|
@@ -428,6 +431,7 @@ const assetList = [
|
|
|
428
431
|
_vector.assetList,
|
|
429
432
|
_xion.assetList,
|
|
430
433
|
_xpla.assetList,
|
|
434
|
+
_xrplevm.assetList,
|
|
431
435
|
_zenrock.assetList,
|
|
432
436
|
_zetachain.assetList
|
|
433
437
|
];
|
|
@@ -233,6 +233,31 @@ const info = [
|
|
|
233
233
|
}
|
|
234
234
|
}]
|
|
235
235
|
},
|
|
236
|
+
{
|
|
237
|
+
$schema: '../ibc_data.schema.json',
|
|
238
|
+
chain1: {
|
|
239
|
+
chainName: 'celestia',
|
|
240
|
+
clientId: '07-tendermint-105',
|
|
241
|
+
connectionId: 'connection-72'
|
|
242
|
+
},
|
|
243
|
+
chain2: {
|
|
244
|
+
chainName: 'namada',
|
|
245
|
+
clientId: '07-tendermint-4',
|
|
246
|
+
connectionId: 'connection-3'
|
|
247
|
+
},
|
|
248
|
+
channels: [{
|
|
249
|
+
chain1: {
|
|
250
|
+
channelId: 'channel-73',
|
|
251
|
+
portId: 'transfer'
|
|
252
|
+
},
|
|
253
|
+
chain2: {
|
|
254
|
+
channelId: 'channel-3',
|
|
255
|
+
portId: 'transfer'
|
|
256
|
+
},
|
|
257
|
+
ordering: 'unordered',
|
|
258
|
+
version: 'ics20-1'
|
|
259
|
+
}]
|
|
260
|
+
},
|
|
236
261
|
{
|
|
237
262
|
$schema: '../ibc_data.schema.json',
|
|
238
263
|
chain1: {
|
package/mainnet/chains.js
CHANGED
|
@@ -24,6 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
const _ethereum = __importStar(require("./ethereum"));
|
|
27
|
+
const _namada = __importStar(require("./namada"));
|
|
27
28
|
const _rootstock = __importStar(require("./rootstock"));
|
|
28
29
|
const _solana = __importStar(require("./solana"));
|
|
29
30
|
const _ton = __importStar(require("./ton"));
|
|
@@ -224,10 +225,12 @@ const _uptick = __importStar(require("./uptick"));
|
|
|
224
225
|
const _vector = __importStar(require("./vector"));
|
|
225
226
|
const _xion = __importStar(require("./xion"));
|
|
226
227
|
const _xpla = __importStar(require("./xpla"));
|
|
228
|
+
const _xrplevm = __importStar(require("./xrplevm"));
|
|
227
229
|
const _zenrock = __importStar(require("./zenrock"));
|
|
228
230
|
const _zetachain = __importStar(require("./zetachain"));
|
|
229
231
|
const chains = [
|
|
230
232
|
_ethereum.chain,
|
|
233
|
+
_namada.chain,
|
|
231
234
|
_rootstock.chain,
|
|
232
235
|
_solana.chain,
|
|
233
236
|
_ton.chain,
|
|
@@ -428,6 +431,7 @@ const chains = [
|
|
|
428
431
|
_vector.chain,
|
|
429
432
|
_xion.chain,
|
|
430
433
|
_xpla.chain,
|
|
434
|
+
_xrplevm.chain,
|
|
431
435
|
_zenrock.chain,
|
|
432
436
|
_zetachain.chain
|
|
433
437
|
];
|
|
@@ -1213,6 +1213,31 @@ const info = [
|
|
|
1213
1213
|
}
|
|
1214
1214
|
}]
|
|
1215
1215
|
},
|
|
1216
|
+
{
|
|
1217
|
+
$schema: '../ibc_data.schema.json',
|
|
1218
|
+
chain1: {
|
|
1219
|
+
chainName: 'cosmoshub',
|
|
1220
|
+
clientId: '07-tendermint-1351',
|
|
1221
|
+
connectionId: 'connection-1089'
|
|
1222
|
+
},
|
|
1223
|
+
chain2: {
|
|
1224
|
+
chainName: 'namada',
|
|
1225
|
+
clientId: '07-tendermint-3',
|
|
1226
|
+
connectionId: 'connection-2'
|
|
1227
|
+
},
|
|
1228
|
+
channels: [{
|
|
1229
|
+
chain1: {
|
|
1230
|
+
channelId: 'channel-1317',
|
|
1231
|
+
portId: 'transfer'
|
|
1232
|
+
},
|
|
1233
|
+
chain2: {
|
|
1234
|
+
channelId: 'channel-2',
|
|
1235
|
+
portId: 'transfer'
|
|
1236
|
+
},
|
|
1237
|
+
ordering: 'unordered',
|
|
1238
|
+
version: 'ics20-1'
|
|
1239
|
+
}]
|
|
1240
|
+
},
|
|
1216
1241
|
{
|
|
1217
1242
|
$schema: '../ibc_data.schema.json',
|
|
1218
1243
|
chain1: {
|
|
@@ -2039,6 +2064,35 @@ const info = [
|
|
|
2039
2064
|
ordering: 'unordered',
|
|
2040
2065
|
version: 'ics20-1'
|
|
2041
2066
|
}]
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
$schema: '../ibc_data.schema.json',
|
|
2070
|
+
chain1: {
|
|
2071
|
+
chainName: 'cosmoshub',
|
|
2072
|
+
clientId: '07-tendermint-1411',
|
|
2073
|
+
connectionId: 'connection-1134'
|
|
2074
|
+
},
|
|
2075
|
+
chain2: {
|
|
2076
|
+
chainName: 'xrplevm',
|
|
2077
|
+
clientId: '07-tendermint-2',
|
|
2078
|
+
connectionId: 'connection-2'
|
|
2079
|
+
},
|
|
2080
|
+
channels: [{
|
|
2081
|
+
chain1: {
|
|
2082
|
+
channelId: 'channel-1377',
|
|
2083
|
+
portId: 'transfer'
|
|
2084
|
+
},
|
|
2085
|
+
chain2: {
|
|
2086
|
+
channelId: 'channel-2',
|
|
2087
|
+
portId: 'transfer'
|
|
2088
|
+
},
|
|
2089
|
+
ordering: 'unordered',
|
|
2090
|
+
version: 'ics20-1',
|
|
2091
|
+
tags: {
|
|
2092
|
+
status: 'live',
|
|
2093
|
+
preferred: true
|
|
2094
|
+
}
|
|
2095
|
+
}]
|
|
2042
2096
|
}
|
|
2043
2097
|
];
|
|
2044
2098
|
exports.default = info;
|
package/mainnet/elys/ibc-data.js
CHANGED
|
@@ -334,6 +334,35 @@ const info = [
|
|
|
334
334
|
preferred: true
|
|
335
335
|
}
|
|
336
336
|
}]
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
$schema: '../ibc_data.schema.json',
|
|
340
|
+
chain1: {
|
|
341
|
+
chainName: 'elys',
|
|
342
|
+
clientId: '07-tendermint-57',
|
|
343
|
+
connectionId: 'connection-38'
|
|
344
|
+
},
|
|
345
|
+
chain2: {
|
|
346
|
+
chainName: 'xrplevm',
|
|
347
|
+
clientId: '07-tendermint-1',
|
|
348
|
+
connectionId: 'connection-1'
|
|
349
|
+
},
|
|
350
|
+
channels: [{
|
|
351
|
+
chain1: {
|
|
352
|
+
channelId: 'channel-27',
|
|
353
|
+
portId: 'transfer'
|
|
354
|
+
},
|
|
355
|
+
chain2: {
|
|
356
|
+
channelId: 'channel-1',
|
|
357
|
+
portId: 'transfer'
|
|
358
|
+
},
|
|
359
|
+
ordering: 'unordered',
|
|
360
|
+
version: 'ics20-1',
|
|
361
|
+
tags: {
|
|
362
|
+
status: 'live',
|
|
363
|
+
preferred: true
|
|
364
|
+
}
|
|
365
|
+
}]
|
|
337
366
|
}
|
|
338
367
|
];
|
|
339
368
|
exports.default = info;
|
|
@@ -1739,7 +1739,7 @@ const info = {
|
|
|
1739
1739
|
display: 'mbtc',
|
|
1740
1740
|
symbol: 'mBTC',
|
|
1741
1741
|
logoURIs: {
|
|
1742
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/
|
|
1742
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mbtc.png'
|
|
1743
1743
|
},
|
|
1744
1744
|
coingeckoId: 'babypie-wrapped-btc'
|
|
1745
1745
|
},
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -24,6 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
const _ethereum = __importStar(require("./ethereum"));
|
|
27
|
+
const _namada = __importStar(require("./namada"));
|
|
27
28
|
const _solana = __importStar(require("./solana"));
|
|
28
29
|
const _aaronetwork = __importStar(require("./aaronetwork"));
|
|
29
30
|
const _acrechain = __importStar(require("./acrechain"));
|
|
@@ -179,9 +180,11 @@ const _unification = __importStar(require("./unification"));
|
|
|
179
180
|
const _uptick = __importStar(require("./uptick"));
|
|
180
181
|
const _xion = __importStar(require("./xion"));
|
|
181
182
|
const _xpla = __importStar(require("./xpla"));
|
|
183
|
+
const _xrplevm = __importStar(require("./xrplevm"));
|
|
182
184
|
const _zenrock = __importStar(require("./zenrock"));
|
|
183
185
|
const ibcData = [
|
|
184
186
|
..._ethereum.ibcData,
|
|
187
|
+
..._namada.ibcData,
|
|
185
188
|
..._solana.ibcData,
|
|
186
189
|
..._aaronetwork.ibcData,
|
|
187
190
|
..._acrechain.ibcData,
|
|
@@ -337,6 +340,7 @@ const ibcData = [
|
|
|
337
340
|
..._uptick.ibcData,
|
|
338
341
|
..._xion.ibcData,
|
|
339
342
|
..._xpla.ibcData,
|
|
343
|
+
..._xrplevm.ibcData,
|
|
340
344
|
..._zenrock.ibcData
|
|
341
345
|
];
|
|
342
346
|
exports.default = ibcData;
|
|
@@ -972,6 +972,35 @@ const info = [
|
|
|
972
972
|
preferred: true
|
|
973
973
|
}
|
|
974
974
|
}]
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
$schema: '../ibc_data.schema.json',
|
|
978
|
+
chain1: {
|
|
979
|
+
chainName: 'injective',
|
|
980
|
+
clientId: '07-tendermint-314',
|
|
981
|
+
connectionId: 'connection-314'
|
|
982
|
+
},
|
|
983
|
+
chain2: {
|
|
984
|
+
chainName: 'xrplevm',
|
|
985
|
+
clientId: '07-tendermint-0',
|
|
986
|
+
connectionId: 'connection-0'
|
|
987
|
+
},
|
|
988
|
+
channels: [{
|
|
989
|
+
chain1: {
|
|
990
|
+
channelId: 'channel-436',
|
|
991
|
+
portId: 'transfer'
|
|
992
|
+
},
|
|
993
|
+
chain2: {
|
|
994
|
+
channelId: 'channel-0',
|
|
995
|
+
portId: 'transfer'
|
|
996
|
+
},
|
|
997
|
+
ordering: 'unordered',
|
|
998
|
+
version: 'ics20-1',
|
|
999
|
+
tags: {
|
|
1000
|
+
status: 'live',
|
|
1001
|
+
preferred: true
|
|
1002
|
+
}
|
|
1003
|
+
}]
|
|
975
1004
|
}
|
|
976
1005
|
];
|
|
977
1006
|
exports.default = info;
|
|
@@ -60,8 +60,9 @@ const info = {
|
|
|
60
60
|
},
|
|
61
61
|
explorers: [{
|
|
62
62
|
kind: 'Default Explorer',
|
|
63
|
-
url: 'https://manifest.
|
|
64
|
-
txPage: 'https://manifest.
|
|
63
|
+
url: 'https://explorer.manifest.network/',
|
|
64
|
+
txPage: 'https://explorer.manifest.network/transaction/${txHash}',
|
|
65
|
+
accountPage: 'https://explorer.manifest.network/account/${accountAddress}'
|
|
65
66
|
}],
|
|
66
67
|
logoURIs: {
|
|
67
68
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
|