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
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'xrplevmtestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'testnet',
|
|
6
|
+
website: 'https://xrplevm.org/',
|
|
7
|
+
pretty_name: 'XRPL EVM Testnet',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
chain_id: 'xrplevm_1449000-1',
|
|
10
|
+
bech32_prefix: 'ethm',
|
|
11
|
+
node_home: '~/.exrpd',
|
|
12
|
+
daemon_name: 'exrpd',
|
|
13
|
+
key_algos: ['ethsecp256k1'],
|
|
14
|
+
extra_codecs: ['ethermint'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
fees: {
|
|
17
|
+
fee_tokens: [{
|
|
18
|
+
denom: 'axrp',
|
|
19
|
+
fixed_min_gas_price: 250000000,
|
|
20
|
+
low_gas_price: 200000000000,
|
|
21
|
+
average_gas_price: 250000000000,
|
|
22
|
+
high_gas_price: 400000000000
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
codebase: {
|
|
26
|
+
git_repo: 'https://github.com/xrplevm/node',
|
|
27
|
+
recommended_version: 'v7.0.0',
|
|
28
|
+
compatible_versions: ['v7.0.0'],
|
|
29
|
+
consensus: {
|
|
30
|
+
type: 'cometbft',
|
|
31
|
+
version: 'v0.38.17'
|
|
32
|
+
},
|
|
33
|
+
binaries: {
|
|
34
|
+
"linux/amd64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Linux_amd64.tar.gz',
|
|
35
|
+
"linux/arm64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Linux_arm64.tar.gz',
|
|
36
|
+
"darwin/amd64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Darwin_amd64.tar.gz',
|
|
37
|
+
"darwin/arm64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Darwin_arm64.tar.gz',
|
|
38
|
+
"windows/amd64": 'https://github.com/xrplevm/node/releases/download/v7.0.0/node_7.0.0_Windows_amd64.zip'
|
|
39
|
+
},
|
|
40
|
+
genesis: {
|
|
41
|
+
genesis_url: 'https://raw.githubusercontent.com/xrplevm/networks/refs/heads/main/testnet/genesis.json'
|
|
42
|
+
},
|
|
43
|
+
sdk: {
|
|
44
|
+
type: 'cosmos',
|
|
45
|
+
repo: 'https://github.com/xrplevm/cosmos-sdk',
|
|
46
|
+
version: 'v0.50.13',
|
|
47
|
+
tag: 'v0.50.13-xrplevm.2'
|
|
48
|
+
},
|
|
49
|
+
ibc: {
|
|
50
|
+
type: 'go',
|
|
51
|
+
version: 'v8.7.0'
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
images: [{
|
|
55
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/xrplevmtestnet/images/xrplevm.png',
|
|
56
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/xrplevmtestnet/images/xrplevm.svg',
|
|
57
|
+
theme: {
|
|
58
|
+
circle: true,
|
|
59
|
+
primary_color_hex: '#FFFFFF'
|
|
60
|
+
}
|
|
61
|
+
}],
|
|
62
|
+
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.',
|
|
63
|
+
apis: {
|
|
64
|
+
rpc: [
|
|
65
|
+
{
|
|
66
|
+
address: 'https://rpc.testnet.xrplevm.org',
|
|
67
|
+
provider: 'Peersyst'
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
address: 'https://xrpl-evm-testnet.rpc.grove.city/v1/0caa84c4',
|
|
71
|
+
provider: 'Grove'
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
address: 'https://xrpevm.kintsugi-nodes.com',
|
|
75
|
+
provider: 'Kintsugi Nodes'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: 'https://xrp-testnet-rpc.polkachu.com/',
|
|
79
|
+
provider: 'Polkachu'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
address: 'https://rpc.xrpl.cumulo.com.es',
|
|
83
|
+
provider: 'Cumulo'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
address: 'https://xrpl-rpc.embervalidator.top/',
|
|
87
|
+
provider: 'Ember'
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
address: 'https://xrp-rpc.enigma-validator.com/',
|
|
91
|
+
provider: 'Enigma'
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
address: 'https://xrplevm-testnet-rpc.itrocket.net',
|
|
95
|
+
provider: 'ITRocket'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
address: 'http://xrpl-testnet-rpc.luckystar.asia/',
|
|
99
|
+
provider: 'LuckyStar'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
address: 'https://exrpd-testnet-rpc.mekonglabs.tech/',
|
|
103
|
+
provider: 'Mekong Labs'
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
address: 'https://xrpl-testnet-rpc.mictonode.com',
|
|
107
|
+
provider: 'MictoNode'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
address: 'https://rpc-t.xrp.nodestake.org',
|
|
111
|
+
provider: 'NodeStake'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
address: 'https://xrpl-testnet-rpc.cosmonautstakes.com',
|
|
115
|
+
provider: 'Cosmonaut Stakes'
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
rest: [
|
|
119
|
+
{
|
|
120
|
+
address: 'https://api.xrpl.cumulo.com.es',
|
|
121
|
+
provider: 'Cumulo'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
address: 'http://cosmos.testnet.xrplevm.org:1317',
|
|
125
|
+
provider: 'Peersyst'
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
address: 'https://api-xrp.kintsugi-nodes.com',
|
|
129
|
+
provider: 'Kintsugi Nodes'
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
address: 'https://xrp-testnet-api.polkachu.com/',
|
|
133
|
+
provider: 'Polkachu'
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
address: 'https://xrplevm-testnet-api.itrocket.net',
|
|
137
|
+
provider: 'ITRocket'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
address: 'https://xrpl-testnet-api.luckystar.asia/',
|
|
141
|
+
provider: 'LuckyStar'
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
address: 'https://exrpd-testnet-api.mekonglabs.tech/',
|
|
145
|
+
provider: 'Mekong Labs'
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
address: 'https://xrpl-testnet-api.mictonode.com',
|
|
149
|
+
provider: 'MictoNode'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
address: 'https://api-t.xrp.nodestake.org',
|
|
153
|
+
provider: 'NodeStake'
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
grpc: [
|
|
157
|
+
{
|
|
158
|
+
address: 'http://cosmos.testnet.xrplevm.org:9090',
|
|
159
|
+
provider: 'Peersyst'
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
address: 'grpc-xrp.kintsugi-nodes.com',
|
|
163
|
+
provider: 'Kintsugi Nodes'
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
address: 'https://polkachu.com/testnet_public_grpc',
|
|
167
|
+
provider: 'Polkachu'
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
address: 'grpc.xrpl.cumulo.com.es',
|
|
171
|
+
provider: 'Cumulo'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
address: 'xrplevm-testnet-grpc.itrocket.net:443',
|
|
175
|
+
provider: 'ITRocket'
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
address: 'https://xrpl-testnet-grpc.luckystar.asia/',
|
|
179
|
+
provider: 'LuckyStar'
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
address: 'exrpd-testnet-grpc.mekonglabs.tech:47090',
|
|
183
|
+
provider: 'Mekong Labs'
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
address: 'xrpl-testnet-grpc.mictonode.com:22090',
|
|
187
|
+
provider: 'MictoNode'
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
address: 't-xrpl.grpc.utsa.tech:433',
|
|
191
|
+
provider: 'UTSA (lesnik)'
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
address: 'http://xrplevm-testnet-grpc.blockitize.com/',
|
|
195
|
+
provider: 'blockitize'
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"evm-http-jsonrpc": [
|
|
199
|
+
{
|
|
200
|
+
address: 'https://exrpd-testnet-json-rpc.mekonglabs.tech',
|
|
201
|
+
provider: 'Mekong Labs'
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
address: 'https://xrpl-testnet-evmrpc.mictonode.com',
|
|
205
|
+
provider: 'MictoNode'
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
address: 'https://xrpl-evm.corenodehq.xyz/',
|
|
209
|
+
provider: 'CoreNode'
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
address: 'https://evmrpc-t.xrp.nodestake.org/',
|
|
213
|
+
provider: 'NodeStake'
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
address: 'http://xrplevm-devnet-jsonrpc.blockitize.com',
|
|
217
|
+
provider: 'blockitize'
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
address: 'https://json-rpc.xrpl.cumulo.com.es',
|
|
221
|
+
provider: 'Cumulo'
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
address: 'https://t-xrpl.evm.utsa.tech',
|
|
225
|
+
provider: '𝐥𝐞𝐬𝐧𝐢𝐤 | 𝐔𝐓𝐒𝐀'
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
address: 'https://xrplevm-testnet-jsonrpc.blockitize.com/',
|
|
229
|
+
provider: 'blockitize'
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
address: 'https://xrpl-testnet-json.techhubs.asia/',
|
|
233
|
+
provider: 'DeFatRat'
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
address: 'https://xrpl-evm.node9x.com/',
|
|
237
|
+
provider: 'node9x'
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
address: 'https://xrplevm-testnet-evm.itrocket.net',
|
|
241
|
+
provider: 'ITRocket'
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
address: 'https://json-rpc.testnet.xrplevm.p10node.com',
|
|
245
|
+
provider: 'p10node'
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
address: 'https://xrpl-testnet-evm.zstake.xyz',
|
|
249
|
+
provider: 'Zstake'
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
address: 'https://xrpl.evm.t.stavr.tech',
|
|
253
|
+
provider: 'STAVR'
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
address: 'https://xrpl-testnet-evm.cosmonautstakes.com',
|
|
257
|
+
provider: 'Cosmonaut Stakes'
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
address: 'https://xrp-testnet-evm.monkeylabs.me/',
|
|
261
|
+
provider: 'Monkey Labs'
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
address: 'https://xrpl-testnet-evm.bonynode.online/',
|
|
265
|
+
provider: 'BonyNode'
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
address: 'https://xrpl-testnet-jsonrpc.hazennetworksolutions.com/',
|
|
269
|
+
provider: 'Hazen Network Solutions'
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
address: 'https://xrpl-t-evm.brightlystake.com/evm',
|
|
273
|
+
provider: 'Brightlystake'
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
address: 'https://xrpl-testnet-jsonrpc.kgnodes.xyz',
|
|
277
|
+
provider: 'kgnodes Services'
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
address: 'https://evm.testnet.xrplevm.dongqn.com',
|
|
281
|
+
provider: 'Đông QN'
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
address: 'https://evmrpc-t.archive.xrp.nodestake.org',
|
|
285
|
+
provider: 'NodeStake'
|
|
286
|
+
}
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
explorers: [{
|
|
290
|
+
kind: 'evm',
|
|
291
|
+
url: 'https://explorer.testnet.xrplevm.org',
|
|
292
|
+
tx_page: 'https://explorer.testnet.xrplevm.org/tx/${txHash}',
|
|
293
|
+
account_page: 'https://explorer.testnet.xrplevm.org/address/${accountAddress}'
|
|
294
|
+
}, {
|
|
295
|
+
kind: 'cosmos',
|
|
296
|
+
url: 'https://governance.testnet.xrplevm.org',
|
|
297
|
+
tx_page: 'https://governance.testnet.xrplevm.org/tx/${txHash}',
|
|
298
|
+
account_page: 'https://governance.testnet.xrplevm.org/account/${accountAddress}'
|
|
299
|
+
}],
|
|
300
|
+
keywords: [
|
|
301
|
+
'xrpl',
|
|
302
|
+
'evm',
|
|
303
|
+
'testnet',
|
|
304
|
+
'sidechain',
|
|
305
|
+
'ripple',
|
|
306
|
+
'peersyst',
|
|
307
|
+
'cosmos',
|
|
308
|
+
'evmos',
|
|
309
|
+
'axelar',
|
|
310
|
+
'xrp',
|
|
311
|
+
'xrplevm'
|
|
312
|
+
]
|
|
313
|
+
};
|
|
314
|
+
export default info;
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../../ibc_data.schema.json',
|
|
4
|
+
chain_1: {
|
|
5
|
+
chain_name: 'cosmosicsprovidertestnet',
|
|
6
|
+
client_id: '07-tendermint-290',
|
|
7
|
+
connection_id: 'connection-208'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'xrplevmtestnet',
|
|
11
|
+
client_id: '07-tendermint-9',
|
|
12
|
+
connection_id: 'connection-1'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain_1: {
|
|
16
|
+
channel_id: 'channel-374',
|
|
17
|
+
port_id: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain_2: {
|
|
20
|
+
channel_id: 'channel-1',
|
|
21
|
+
port_id: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
status: 'live',
|
|
27
|
+
preferred: true,
|
|
28
|
+
dex: 'osmosis'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
$schema: '../../ibc_data.schema.json',
|
|
34
|
+
chain_1: {
|
|
35
|
+
chain_name: 'elystestnet',
|
|
36
|
+
client_id: '07-tendermint-13',
|
|
37
|
+
connection_id: 'connection-9'
|
|
38
|
+
},
|
|
39
|
+
chain_2: {
|
|
40
|
+
chain_name: 'xrplevmtestnet',
|
|
41
|
+
client_id: '07-tendermint-15',
|
|
42
|
+
connection_id: 'connection-3'
|
|
43
|
+
},
|
|
44
|
+
channels: [{
|
|
45
|
+
chain_1: {
|
|
46
|
+
channel_id: 'channel-10',
|
|
47
|
+
port_id: 'transfer'
|
|
48
|
+
},
|
|
49
|
+
chain_2: {
|
|
50
|
+
channel_id: 'channel-3',
|
|
51
|
+
port_id: 'transfer'
|
|
52
|
+
},
|
|
53
|
+
ordering: 'unordered',
|
|
54
|
+
version: 'ics20-1',
|
|
55
|
+
tags: {
|
|
56
|
+
status: 'live',
|
|
57
|
+
preferred: true,
|
|
58
|
+
dex: 'osmosis'
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
$schema: '../../ibc_data.schema.json',
|
|
64
|
+
chain_1: {
|
|
65
|
+
chain_name: 'osmosistestnet',
|
|
66
|
+
client_id: '07-tendermint-4629',
|
|
67
|
+
connection_id: 'connection-3984'
|
|
68
|
+
},
|
|
69
|
+
chain_2: {
|
|
70
|
+
chain_name: 'xrplevmtestnet',
|
|
71
|
+
client_id: '07-tendermint-10',
|
|
72
|
+
connection_id: 'connection-2'
|
|
73
|
+
},
|
|
74
|
+
channels: [{
|
|
75
|
+
chain_1: {
|
|
76
|
+
channel_id: 'channel-10361',
|
|
77
|
+
port_id: 'transfer'
|
|
78
|
+
},
|
|
79
|
+
chain_2: {
|
|
80
|
+
channel_id: 'channel-2',
|
|
81
|
+
port_id: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
ordering: 'unordered',
|
|
84
|
+
version: 'ics20-1',
|
|
85
|
+
tags: {
|
|
86
|
+
status: 'live',
|
|
87
|
+
preferred: true,
|
|
88
|
+
dex: 'osmosis'
|
|
89
|
+
}
|
|
90
|
+
}]
|
|
91
|
+
}
|
|
92
|
+
];
|
|
93
|
+
export default info;
|
|
@@ -665,14 +665,14 @@ const info = {
|
|
|
665
665
|
denom: 'cw20:bbn1j2nchmpuhkq0yj93g84txe33j5lhw2y7p3anhqjhvamqxsev6rmsneu85x',
|
|
666
666
|
exponent: 0
|
|
667
667
|
}, {
|
|
668
|
-
denom: 'satUniBTC',
|
|
668
|
+
denom: 'satUniBTC.e',
|
|
669
669
|
exponent: 8
|
|
670
670
|
}],
|
|
671
671
|
base: 'cw20:bbn1j2nchmpuhkq0yj93g84txe33j5lhw2y7p3anhqjhvamqxsev6rmsneu85x',
|
|
672
672
|
address: 'bbn1j2nchmpuhkq0yj93g84txe33j5lhw2y7p3anhqjhvamqxsev6rmsneu85x',
|
|
673
|
-
name: '
|
|
674
|
-
display: 'satUniBTC',
|
|
675
|
-
symbol: 'satUniBTC',
|
|
673
|
+
name: 'SatLayer uniBTC Bridged',
|
|
674
|
+
display: 'satUniBTC.e',
|
|
675
|
+
symbol: 'satUniBTC.e',
|
|
676
676
|
logo_URIs: {
|
|
677
677
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uniBTC.svg'
|
|
678
678
|
},
|
package/mainnet/elys/chain.js
CHANGED
|
@@ -123,6 +123,10 @@ const info = {
|
|
|
123
123
|
address: 'https://elys-rpc.cogwheel.zone:443',
|
|
124
124
|
provider: 'Cogwheel ⚙️'
|
|
125
125
|
},
|
|
126
|
+
{
|
|
127
|
+
address: 'https://rpc-elys.ottersync.io:443',
|
|
128
|
+
provider: 'OtterSync'
|
|
129
|
+
},
|
|
126
130
|
{
|
|
127
131
|
address: 'https://elys.rpc.quasarstaking.ai:443',
|
|
128
132
|
provider: 'Quasar'
|
|
@@ -209,6 +213,10 @@ const info = {
|
|
|
209
213
|
address: 'https://elys-api.cogwheel.zone:443',
|
|
210
214
|
provider: 'Cogwheel ⚙️'
|
|
211
215
|
},
|
|
216
|
+
{
|
|
217
|
+
address: 'https://api-elys.ottersync.io:443',
|
|
218
|
+
provider: 'OtterSync'
|
|
219
|
+
},
|
|
212
220
|
{
|
|
213
221
|
address: 'https://elys.api.quasarstaking.ai:443',
|
|
214
222
|
provider: 'Quasar'
|
|
@@ -279,6 +287,10 @@ const info = {
|
|
|
279
287
|
address: 'elys-grpc.cogwheel.zone:443',
|
|
280
288
|
provider: 'Cogwheel ⚙️'
|
|
281
289
|
},
|
|
290
|
+
{
|
|
291
|
+
address: 'https://grpc-elys.ottersync.io:443',
|
|
292
|
+
provider: 'OtterSync'
|
|
293
|
+
},
|
|
282
294
|
{
|
|
283
295
|
address: 'elys.grpc.quasarstaking.ai:443',
|
|
284
296
|
provider: 'Quasar'
|
|
@@ -357,6 +369,12 @@ const info = {
|
|
|
357
369
|
{
|
|
358
370
|
kind: 'Stake-Hub by Kleomedes',
|
|
359
371
|
url: 'https://www.stake-hub.xyz/elys'
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
kind: 'ElysScan by Kwak',
|
|
375
|
+
url: 'https://elysscan.io',
|
|
376
|
+
tx_page: 'https://elysscan.io/tx/${txHash}',
|
|
377
|
+
account_page: 'https://elysscan.io/address/${accountAddress}'
|
|
360
378
|
}
|
|
361
379
|
]
|
|
362
380
|
};
|
package/mainnet/initia/assets.js
CHANGED
|
@@ -5,6 +5,7 @@ const info = {
|
|
|
5
5
|
chain_name: 'initia',
|
|
6
6
|
assets: [{
|
|
7
7
|
description: 'The native token of Initia',
|
|
8
|
+
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.',
|
|
8
9
|
denom_units: [{
|
|
9
10
|
denom: 'uinit',
|
|
10
11
|
exponent: 0
|
|
@@ -28,7 +29,8 @@ const info = {
|
|
|
28
29
|
website: 'https://initia.xyz/',
|
|
29
30
|
twitter: 'https://twitter.com/initiaFDN'
|
|
30
31
|
},
|
|
31
|
-
type_asset: 'sdk.coin'
|
|
32
|
+
type_asset: 'sdk.coin',
|
|
33
|
+
coingecko_id: 'initia'
|
|
32
34
|
}]
|
|
33
35
|
};
|
|
34
36
|
exports.default = info;
|
package/mainnet/initia/chain.js
CHANGED
|
@@ -42,19 +42,28 @@ const info = {
|
|
|
42
42
|
genesis_url: 'https://storage.googleapis.com/init-common-genesis/interwoven-1/genesis.json'
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
description: 'Initia
|
|
45
|
+
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.',
|
|
46
46
|
apis: {
|
|
47
47
|
rpc: [{
|
|
48
48
|
address: 'https://rpc.initia.xyz',
|
|
49
49
|
provider: 'Initia Labs'
|
|
50
|
+
}, {
|
|
51
|
+
address: 'https://initia.rpc.quasarstaking.ai:443',
|
|
52
|
+
provider: 'Quasar'
|
|
50
53
|
}],
|
|
51
54
|
rest: [{
|
|
52
55
|
address: 'https://rest.initia.xyz',
|
|
53
56
|
provider: 'Initia Labs'
|
|
57
|
+
}, {
|
|
58
|
+
address: 'https://initia.api.quasarstaking.ai:443',
|
|
59
|
+
provider: 'Quasar'
|
|
54
60
|
}],
|
|
55
61
|
grpc: [{
|
|
56
62
|
address: 'grpc.initia.xyz:443',
|
|
57
63
|
provider: 'Initia Labs'
|
|
64
|
+
}, {
|
|
65
|
+
address: 'initia.grpc.quasarstaking.ai:80',
|
|
66
|
+
provider: 'Quasar'
|
|
58
67
|
}]
|
|
59
68
|
},
|
|
60
69
|
explorers: [{
|
package/mainnet/initia/ibc.js
CHANGED
|
@@ -4,29 +4,56 @@ const info = [{
|
|
|
4
4
|
$schema: '../ibc_data.schema.json',
|
|
5
5
|
chain_1: {
|
|
6
6
|
chain_name: 'initia',
|
|
7
|
-
client_id: '07-tendermint-
|
|
8
|
-
connection_id: 'connection-
|
|
7
|
+
client_id: '07-tendermint-20',
|
|
8
|
+
connection_id: 'connection-20'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'neutron',
|
|
12
|
+
client_id: '07-tendermint-161',
|
|
13
|
+
connection_id: 'connection-118'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-37',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-6885',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}, {
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain_1: {
|
|
34
|
+
chain_name: 'initia',
|
|
35
|
+
client_id: '07-tendermint-36',
|
|
36
|
+
connection_id: 'connection-36'
|
|
9
37
|
},
|
|
10
38
|
chain_2: {
|
|
11
39
|
chain_name: 'osmosis',
|
|
12
|
-
client_id: '07-tendermint-
|
|
13
|
-
connection_id: 'connection-
|
|
40
|
+
client_id: '07-tendermint-3477',
|
|
41
|
+
connection_id: 'connection-10713'
|
|
14
42
|
},
|
|
15
43
|
channels: [{
|
|
16
44
|
chain_1: {
|
|
17
|
-
channel_id: 'channel-
|
|
45
|
+
channel_id: 'channel-68',
|
|
18
46
|
port_id: 'transfer'
|
|
19
47
|
},
|
|
20
48
|
chain_2: {
|
|
21
|
-
channel_id: 'channel-
|
|
49
|
+
channel_id: 'channel-102122',
|
|
22
50
|
port_id: 'transfer'
|
|
23
51
|
},
|
|
24
52
|
ordering: 'unordered',
|
|
25
53
|
version: 'ics20-1',
|
|
26
54
|
tags: {
|
|
27
55
|
status: 'live',
|
|
28
|
-
preferred: true
|
|
29
|
-
dex: 'osmosis'
|
|
56
|
+
preferred: true
|
|
30
57
|
}
|
|
31
58
|
}]
|
|
32
59
|
}];
|
package/mainnet/neutron/ibc.js
CHANGED
|
@@ -365,6 +365,35 @@ const info = [
|
|
|
365
365
|
}
|
|
366
366
|
}]
|
|
367
367
|
},
|
|
368
|
+
{
|
|
369
|
+
$schema: '../ibc_data.schema.json',
|
|
370
|
+
chain_1: {
|
|
371
|
+
chain_name: 'initia',
|
|
372
|
+
client_id: '07-tendermint-20',
|
|
373
|
+
connection_id: 'connection-20'
|
|
374
|
+
},
|
|
375
|
+
chain_2: {
|
|
376
|
+
chain_name: 'neutron',
|
|
377
|
+
client_id: '07-tendermint-161',
|
|
378
|
+
connection_id: 'connection-118'
|
|
379
|
+
},
|
|
380
|
+
channels: [{
|
|
381
|
+
chain_1: {
|
|
382
|
+
channel_id: 'channel-37',
|
|
383
|
+
port_id: 'transfer'
|
|
384
|
+
},
|
|
385
|
+
chain_2: {
|
|
386
|
+
channel_id: 'channel-6885',
|
|
387
|
+
port_id: 'transfer'
|
|
388
|
+
},
|
|
389
|
+
ordering: 'unordered',
|
|
390
|
+
version: 'ics20-1',
|
|
391
|
+
tags: {
|
|
392
|
+
status: 'live',
|
|
393
|
+
preferred: true
|
|
394
|
+
}
|
|
395
|
+
}]
|
|
396
|
+
},
|
|
368
397
|
{
|
|
369
398
|
$schema: '../ibc_data.schema.json',
|
|
370
399
|
chain_1: {
|
package/mainnet/osmosis/ibc.js
CHANGED
|
@@ -1970,29 +1970,28 @@ const info = [
|
|
|
1970
1970
|
$schema: '../ibc_data.schema.json',
|
|
1971
1971
|
chain_1: {
|
|
1972
1972
|
chain_name: 'initia',
|
|
1973
|
-
client_id: '07-tendermint-
|
|
1974
|
-
connection_id: 'connection-
|
|
1973
|
+
client_id: '07-tendermint-36',
|
|
1974
|
+
connection_id: 'connection-36'
|
|
1975
1975
|
},
|
|
1976
1976
|
chain_2: {
|
|
1977
1977
|
chain_name: 'osmosis',
|
|
1978
|
-
client_id: '07-tendermint-
|
|
1979
|
-
connection_id: 'connection-
|
|
1978
|
+
client_id: '07-tendermint-3477',
|
|
1979
|
+
connection_id: 'connection-10713'
|
|
1980
1980
|
},
|
|
1981
1981
|
channels: [{
|
|
1982
1982
|
chain_1: {
|
|
1983
|
-
channel_id: 'channel-
|
|
1983
|
+
channel_id: 'channel-68',
|
|
1984
1984
|
port_id: 'transfer'
|
|
1985
1985
|
},
|
|
1986
1986
|
chain_2: {
|
|
1987
|
-
channel_id: 'channel-
|
|
1987
|
+
channel_id: 'channel-102122',
|
|
1988
1988
|
port_id: 'transfer'
|
|
1989
1989
|
},
|
|
1990
1990
|
ordering: 'unordered',
|
|
1991
1991
|
version: 'ics20-1',
|
|
1992
1992
|
tags: {
|
|
1993
1993
|
status: 'live',
|
|
1994
|
-
preferred: true
|
|
1995
|
-
dex: 'osmosis'
|
|
1994
|
+
preferred: true
|
|
1996
1995
|
}
|
|
1997
1996
|
}]
|
|
1998
1997
|
},
|