chain-registry 1.69.177 → 1.69.179
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/akash/chain.js +13 -0
- package/esm/mainnet/assets.js +2 -0
- package/esm/mainnet/atomone/chain.js +18 -0
- package/esm/mainnet/axelar/ibc.js +30 -2
- package/esm/mainnet/babylon/ibc.js +117 -0
- package/esm/mainnet/babylon/index.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/ibc.js +29 -0
- package/esm/mainnet/elys/ibc.js +29 -0
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/jackal/ibc.js +2 -2
- package/esm/mainnet/lombardledger/assets.js +49 -0
- package/esm/mainnet/lombardledger/chain.js +46 -0
- package/esm/mainnet/lombardledger/index.js +4 -0
- package/esm/mainnet/mantrachain/ibc.js +29 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/neutron/assets.js +41 -0
- package/esm/mainnet/neutron/ibc.js +58 -0
- package/esm/mainnet/noble/ibc.js +28 -0
- package/esm/mainnet/osmosis/assets.js +16 -4
- package/esm/mainnet/osmosis/chain.js +5 -5
- package/esm/mainnet/osmosis/ibc.js +29 -0
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/lombardledgertestnet/assets.js +49 -0
- package/esm/testnet/lombardledgertestnet/chain.js +46 -0
- package/esm/testnet/lombardledgertestnet/index.js +4 -0
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/osmosistestnet/chain.js +2 -17
- package/esm/testnet/titantestnet/assets.js +34 -0
- package/mainnet/akash/chain.js +13 -0
- package/mainnet/assets.js +2 -0
- package/mainnet/atomone/chain.js +18 -0
- package/mainnet/axelar/ibc.js +30 -2
- package/mainnet/babylon/ibc.d.ts +3 -0
- package/mainnet/babylon/ibc.js +119 -0
- package/mainnet/babylon/index.d.ts +1 -0
- package/mainnet/babylon/index.js +3 -1
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/ibc.js +29 -0
- package/mainnet/elys/ibc.js +29 -0
- package/mainnet/ibc.js +2 -0
- package/mainnet/jackal/ibc.js +2 -2
- package/mainnet/lombardledger/assets.d.ts +3 -0
- package/mainnet/lombardledger/assets.js +51 -0
- package/mainnet/lombardledger/chain.d.ts +3 -0
- package/mainnet/lombardledger/chain.js +48 -0
- package/mainnet/lombardledger/index.d.ts +2 -0
- package/mainnet/lombardledger/index.js +10 -0
- package/mainnet/mantrachain/ibc.js +29 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +3 -2
- package/mainnet/neutron/assets.js +41 -0
- package/mainnet/neutron/ibc.js +58 -0
- package/mainnet/noble/ibc.js +28 -0
- package/mainnet/osmosis/assets.js +16 -4
- package/mainnet/osmosis/chain.js +5 -5
- package/mainnet/osmosis/ibc.js +29 -0
- package/package.json +4 -4
- package/testnet/assets.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/lombardledgertestnet/assets.d.ts +3 -0
- package/testnet/lombardledgertestnet/assets.js +51 -0
- package/testnet/lombardledgertestnet/chain.d.ts +3 -0
- package/testnet/lombardledgertestnet/chain.js +48 -0
- package/testnet/lombardledgertestnet/index.d.ts +2 -0
- package/testnet/lombardledgertestnet/index.js +10 -0
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +3 -2
- package/testnet/osmosistestnet/chain.js +2 -17
- package/testnet/titantestnet/assets.js +34 -0
|
@@ -93,6 +93,10 @@ const info = {
|
|
|
93
93
|
{
|
|
94
94
|
address: 'https://rpc.akash.bronbro.io:443',
|
|
95
95
|
provider: 'Bro_n_Bro'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
address: 'https://akash.rpc.arcturian.tech/',
|
|
99
|
+
provider: 'Arcturian Tech'
|
|
96
100
|
}
|
|
97
101
|
],
|
|
98
102
|
rest: [
|
|
@@ -143,6 +147,10 @@ const info = {
|
|
|
143
147
|
{
|
|
144
148
|
address: 'https://lcd.akash.bronbro.io:443',
|
|
145
149
|
provider: 'Bro_n_Bro'
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
address: 'https://akash.api.arcturian.tech',
|
|
153
|
+
provider: 'Arcturian Tech'
|
|
146
154
|
}
|
|
147
155
|
],
|
|
148
156
|
grpc: [{
|
|
@@ -198,6 +206,11 @@ const info = {
|
|
|
198
206
|
url: 'https://mainnet.whispernode.com/akash',
|
|
199
207
|
tx_page: 'https://mainnet.whispernode.com/akash/tx/${txHash}',
|
|
200
208
|
account_page: 'https://mainnet.whispernode.com/akash/account/${accountAddress}'
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
kind: 'Arcturian Tech',
|
|
212
|
+
url: 'https://explorer.arcturian.tech',
|
|
213
|
+
tx_page: 'https://explorer.arcturian.tech/akash/tx/${txHash}'
|
|
201
214
|
}
|
|
202
215
|
],
|
|
203
216
|
images: [{
|
package/esm/mainnet/assets.js
CHANGED
|
@@ -100,6 +100,7 @@ import * as _lava from './lava';
|
|
|
100
100
|
import * as _lefeef from './lefeef';
|
|
101
101
|
import * as _likecoin from './likecoin';
|
|
102
102
|
import * as _logos from './logos';
|
|
103
|
+
import * as _lombardledger from './lombardledger';
|
|
103
104
|
import * as _loop from './loop';
|
|
104
105
|
import * as _lorenzo from './lorenzo';
|
|
105
106
|
import * as _loyal from './loyal';
|
|
@@ -300,6 +301,7 @@ const assets = [
|
|
|
300
301
|
_lefeef.assets,
|
|
301
302
|
_likecoin.assets,
|
|
302
303
|
_logos.assets,
|
|
304
|
+
_lombardledger.assets,
|
|
303
305
|
_loop.assets,
|
|
304
306
|
_lorenzo.assets,
|
|
305
307
|
_loyal.assets,
|
|
@@ -128,6 +128,10 @@ const info = {
|
|
|
128
128
|
{
|
|
129
129
|
address: 'https://rpc.atomone.roomit.xyz',
|
|
130
130
|
provider: 'Roomit'
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
address: 'https://rpc.atomone.chaintools.tech',
|
|
134
|
+
provider: 'ChainTools'
|
|
131
135
|
}
|
|
132
136
|
],
|
|
133
137
|
rest: [
|
|
@@ -202,6 +206,10 @@ const info = {
|
|
|
202
206
|
{
|
|
203
207
|
address: 'https://api.atomone.roomit.xyz',
|
|
204
208
|
provider: 'Roomit'
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
address: 'https://api.atomone.chaintools.tech',
|
|
212
|
+
provider: 'ChainTools'
|
|
205
213
|
}
|
|
206
214
|
],
|
|
207
215
|
grpc: [
|
|
@@ -248,6 +256,10 @@ const info = {
|
|
|
248
256
|
{
|
|
249
257
|
address: 'grpc.atomone.roomit.xyz:8443',
|
|
250
258
|
provider: 'Roomit'
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
address: 'grps.aomone.chaintools.tech:443',
|
|
262
|
+
provider: 'ChainTools'
|
|
251
263
|
}
|
|
252
264
|
]
|
|
253
265
|
},
|
|
@@ -299,6 +311,12 @@ const info = {
|
|
|
299
311
|
url: 'https://explorer.tendermint.roomit.xyz/atomone-mainnet',
|
|
300
312
|
tx_page: 'https://explorer.tendermint.roomit.xyz/atomone-mainnet/tx/${txHash}',
|
|
301
313
|
account_page: 'https://explorer.tendermint.roomit.xyz/atomone-mainnet/account/${accountAddress}'
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
kind: 'ChainTools',
|
|
317
|
+
url: 'https://explorer.chaintools.tech/atomone',
|
|
318
|
+
tx_page: 'https://explorer.chaintools.tech/atomone/tx/${txHash}',
|
|
319
|
+
account_page: 'https://explorer.chaintools.tech/atomone/account/${accountAddress}'
|
|
302
320
|
}
|
|
303
321
|
],
|
|
304
322
|
images: [{
|
|
@@ -114,6 +114,34 @@ const info = [
|
|
|
114
114
|
}
|
|
115
115
|
}]
|
|
116
116
|
},
|
|
117
|
+
{
|
|
118
|
+
$schema: '../ibc_data.schema.json',
|
|
119
|
+
chain_1: {
|
|
120
|
+
chain_name: 'axelar',
|
|
121
|
+
client_id: '07-tendermint-244',
|
|
122
|
+
connection_id: 'connection-233'
|
|
123
|
+
},
|
|
124
|
+
chain_2: {
|
|
125
|
+
chain_name: 'babylon',
|
|
126
|
+
client_id: '07-tendermint-2',
|
|
127
|
+
connection_id: 'connection-2'
|
|
128
|
+
},
|
|
129
|
+
channels: [{
|
|
130
|
+
chain_1: {
|
|
131
|
+
channel_id: 'channel-175',
|
|
132
|
+
port_id: 'transfer'
|
|
133
|
+
},
|
|
134
|
+
chain_2: {
|
|
135
|
+
channel_id: 'channel-2',
|
|
136
|
+
port_id: 'transfer'
|
|
137
|
+
},
|
|
138
|
+
ordering: 'unordered',
|
|
139
|
+
version: 'ics20-1',
|
|
140
|
+
tags: {
|
|
141
|
+
status: 'live'
|
|
142
|
+
}
|
|
143
|
+
}]
|
|
144
|
+
},
|
|
117
145
|
{
|
|
118
146
|
$schema: '../ibc_data.schema.json',
|
|
119
147
|
chain_1: {
|
|
@@ -566,11 +594,11 @@ const info = [
|
|
|
566
594
|
},
|
|
567
595
|
channels: [{
|
|
568
596
|
chain_1: {
|
|
569
|
-
channel_id: 'channel-
|
|
597
|
+
channel_id: 'channel-137',
|
|
570
598
|
port_id: 'transfer'
|
|
571
599
|
},
|
|
572
600
|
chain_2: {
|
|
573
|
-
channel_id: 'channel-
|
|
601
|
+
channel_id: 'channel-49',
|
|
574
602
|
port_id: 'transfer'
|
|
575
603
|
},
|
|
576
604
|
ordering: 'unordered',
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain_1: {
|
|
5
|
+
chain_name: 'axelar',
|
|
6
|
+
client_id: '07-tendermint-244',
|
|
7
|
+
connection_id: 'connection-233'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'babylon',
|
|
11
|
+
client_id: '07-tendermint-2',
|
|
12
|
+
connection_id: 'connection-2'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain_1: {
|
|
16
|
+
channel_id: 'channel-175',
|
|
17
|
+
port_id: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain_2: {
|
|
20
|
+
channel_id: 'channel-2',
|
|
21
|
+
port_id: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
status: 'live'
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
$schema: '../ibc_data.schema.json',
|
|
32
|
+
chain_1: {
|
|
33
|
+
chain_name: 'babylon',
|
|
34
|
+
client_id: '07-tendermint-0',
|
|
35
|
+
connection_id: 'connection-0'
|
|
36
|
+
},
|
|
37
|
+
chain_2: {
|
|
38
|
+
chain_name: 'cosmoshub',
|
|
39
|
+
client_id: '07-tendermint-1381',
|
|
40
|
+
connection_id: 'connection-1104'
|
|
41
|
+
},
|
|
42
|
+
channels: [{
|
|
43
|
+
chain_1: {
|
|
44
|
+
channel_id: 'channel-0',
|
|
45
|
+
port_id: 'transfer'
|
|
46
|
+
},
|
|
47
|
+
chain_2: {
|
|
48
|
+
channel_id: 'channel-1341',
|
|
49
|
+
port_id: 'transfer'
|
|
50
|
+
},
|
|
51
|
+
ordering: 'unordered',
|
|
52
|
+
version: 'ics20-1',
|
|
53
|
+
tags: {
|
|
54
|
+
status: 'live',
|
|
55
|
+
preferred: true
|
|
56
|
+
}
|
|
57
|
+
}]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
$schema: '../ibc_data.schema.json',
|
|
61
|
+
chain_1: {
|
|
62
|
+
chain_name: 'babylon',
|
|
63
|
+
client_id: '07-tendermint-1',
|
|
64
|
+
connection_id: 'connection-1'
|
|
65
|
+
},
|
|
66
|
+
chain_2: {
|
|
67
|
+
chain_name: 'noble',
|
|
68
|
+
client_id: '07-tendermint-147',
|
|
69
|
+
connection_id: 'connection-140'
|
|
70
|
+
},
|
|
71
|
+
channels: [{
|
|
72
|
+
chain_1: {
|
|
73
|
+
channel_id: 'channel-1',
|
|
74
|
+
port_id: 'transfer'
|
|
75
|
+
},
|
|
76
|
+
chain_2: {
|
|
77
|
+
channel_id: 'channel-132',
|
|
78
|
+
port_id: 'transfer'
|
|
79
|
+
},
|
|
80
|
+
ordering: 'unordered',
|
|
81
|
+
version: 'ics20-1',
|
|
82
|
+
tags: {
|
|
83
|
+
status: 'live'
|
|
84
|
+
}
|
|
85
|
+
}]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
$schema: '../ibc_data.schema.json',
|
|
89
|
+
chain_1: {
|
|
90
|
+
chain_name: 'babylon',
|
|
91
|
+
client_id: '07-tendermint-3',
|
|
92
|
+
connection_id: 'connection-3'
|
|
93
|
+
},
|
|
94
|
+
chain_2: {
|
|
95
|
+
chain_name: 'osmosis',
|
|
96
|
+
client_id: '07-tendermint-3470',
|
|
97
|
+
connection_id: 'connection-10694'
|
|
98
|
+
},
|
|
99
|
+
channels: [{
|
|
100
|
+
chain_1: {
|
|
101
|
+
channel_id: 'channel-3',
|
|
102
|
+
port_id: 'transfer'
|
|
103
|
+
},
|
|
104
|
+
chain_2: {
|
|
105
|
+
channel_id: 'channel-101635',
|
|
106
|
+
port_id: 'transfer'
|
|
107
|
+
},
|
|
108
|
+
ordering: 'unordered',
|
|
109
|
+
version: 'ics20-1',
|
|
110
|
+
tags: {
|
|
111
|
+
status: 'live',
|
|
112
|
+
preferred: true
|
|
113
|
+
}
|
|
114
|
+
}]
|
|
115
|
+
}
|
|
116
|
+
];
|
|
117
|
+
export default info;
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -100,6 +100,7 @@ import * as _lava from './lava';
|
|
|
100
100
|
import * as _lefeef from './lefeef';
|
|
101
101
|
import * as _likecoin from './likecoin';
|
|
102
102
|
import * as _logos from './logos';
|
|
103
|
+
import * as _lombardledger from './lombardledger';
|
|
103
104
|
import * as _loop from './loop';
|
|
104
105
|
import * as _lorenzo from './lorenzo';
|
|
105
106
|
import * as _loyal from './loyal';
|
|
@@ -300,6 +301,7 @@ const chains = [
|
|
|
300
301
|
_lefeef.chain,
|
|
301
302
|
_likecoin.chain,
|
|
302
303
|
_logos.chain,
|
|
304
|
+
_lombardledger.chain,
|
|
303
305
|
_loop.chain,
|
|
304
306
|
_lorenzo.chain,
|
|
305
307
|
_loyal.chain,
|
|
@@ -198,6 +198,35 @@ const info = [
|
|
|
198
198
|
}
|
|
199
199
|
}]
|
|
200
200
|
},
|
|
201
|
+
{
|
|
202
|
+
$schema: '../ibc_data.schema.json',
|
|
203
|
+
chain_1: {
|
|
204
|
+
chain_name: 'babylon',
|
|
205
|
+
client_id: '07-tendermint-0',
|
|
206
|
+
connection_id: 'connection-0'
|
|
207
|
+
},
|
|
208
|
+
chain_2: {
|
|
209
|
+
chain_name: 'cosmoshub',
|
|
210
|
+
client_id: '07-tendermint-1381',
|
|
211
|
+
connection_id: 'connection-1104'
|
|
212
|
+
},
|
|
213
|
+
channels: [{
|
|
214
|
+
chain_1: {
|
|
215
|
+
channel_id: 'channel-0',
|
|
216
|
+
port_id: 'transfer'
|
|
217
|
+
},
|
|
218
|
+
chain_2: {
|
|
219
|
+
channel_id: 'channel-1341',
|
|
220
|
+
port_id: 'transfer'
|
|
221
|
+
},
|
|
222
|
+
ordering: 'unordered',
|
|
223
|
+
version: 'ics20-1',
|
|
224
|
+
tags: {
|
|
225
|
+
status: 'live',
|
|
226
|
+
preferred: true
|
|
227
|
+
}
|
|
228
|
+
}]
|
|
229
|
+
},
|
|
201
230
|
{
|
|
202
231
|
$schema: '../ibc_data.schema.json',
|
|
203
232
|
chain_1: {
|
package/esm/mainnet/elys/ibc.js
CHANGED
|
@@ -130,6 +130,35 @@ const info = [
|
|
|
130
130
|
}
|
|
131
131
|
}]
|
|
132
132
|
},
|
|
133
|
+
{
|
|
134
|
+
$schema: '../ibc_data.schema.json',
|
|
135
|
+
chain_1: {
|
|
136
|
+
chain_name: 'elys',
|
|
137
|
+
client_id: '07-tendermint-36',
|
|
138
|
+
connection_id: 'connection-19'
|
|
139
|
+
},
|
|
140
|
+
chain_2: {
|
|
141
|
+
chain_name: 'neutron',
|
|
142
|
+
client_id: '07-tendermint-152',
|
|
143
|
+
connection_id: 'connection-112'
|
|
144
|
+
},
|
|
145
|
+
channels: [{
|
|
146
|
+
chain_1: {
|
|
147
|
+
channel_id: 'channel-16',
|
|
148
|
+
port_id: 'transfer'
|
|
149
|
+
},
|
|
150
|
+
chain_2: {
|
|
151
|
+
channel_id: 'channel-6476',
|
|
152
|
+
port_id: 'transfer'
|
|
153
|
+
},
|
|
154
|
+
ordering: 'unordered',
|
|
155
|
+
version: 'ics20-1',
|
|
156
|
+
tags: {
|
|
157
|
+
status: 'live',
|
|
158
|
+
preferred: true
|
|
159
|
+
}
|
|
160
|
+
}]
|
|
161
|
+
},
|
|
133
162
|
{
|
|
134
163
|
$schema: '../ibc_data.schema.json',
|
|
135
164
|
chain_1: {
|
package/esm/mainnet/ibc.js
CHANGED
|
@@ -12,6 +12,7 @@ import * as _assetmantle from './assetmantle';
|
|
|
12
12
|
import * as _atomone from './atomone';
|
|
13
13
|
import * as _aura from './aura';
|
|
14
14
|
import * as _axelar from './axelar';
|
|
15
|
+
import * as _babylon from './babylon';
|
|
15
16
|
import * as _bandchain from './bandchain';
|
|
16
17
|
import * as _beezee from './beezee';
|
|
17
18
|
import * as _bitcanna from './bitcanna';
|
|
@@ -164,6 +165,7 @@ const ibc = [
|
|
|
164
165
|
..._atomone.ibc,
|
|
165
166
|
..._aura.ibc,
|
|
166
167
|
..._axelar.ibc,
|
|
168
|
+
..._babylon.ibc,
|
|
167
169
|
..._bandchain.ibc,
|
|
168
170
|
..._beezee.ibc,
|
|
169
171
|
..._bitcanna.ibc,
|
|
@@ -62,11 +62,11 @@ const info = [
|
|
|
62
62
|
},
|
|
63
63
|
channels: [{
|
|
64
64
|
chain_1: {
|
|
65
|
-
channel_id: 'channel-
|
|
65
|
+
channel_id: 'channel-137',
|
|
66
66
|
port_id: 'transfer'
|
|
67
67
|
},
|
|
68
68
|
chain_2: {
|
|
69
|
-
channel_id: 'channel-
|
|
69
|
+
channel_id: 'channel-49',
|
|
70
70
|
port_id: 'transfer'
|
|
71
71
|
},
|
|
72
72
|
ordering: 'unordered',
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'lombardledger',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'LOM is the native fee token of Lombard Ledger',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'ulom',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'lom',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ulom',
|
|
15
|
+
name: 'Lom',
|
|
16
|
+
display: 'lom',
|
|
17
|
+
symbol: 'LOM',
|
|
18
|
+
type_asset: 'sdk.coin'
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
description: 'LBTC is liquid Bitcoin; it\'s yield-bearing, cross-chain, and 1:1 backed by BTC. LBTC enables yield-bearing BTC to move cross-chain without fragmenting liquidity, and is designed to seamlessly integrate Bitcoin into the decentralized finance (DeFi) ecosystem while maintaining the security and integrity of the underlying asset',
|
|
22
|
+
denom_units: [{
|
|
23
|
+
denom: 'uclbtc',
|
|
24
|
+
exponent: 0
|
|
25
|
+
}, {
|
|
26
|
+
denom: 'lbtc',
|
|
27
|
+
exponent: 8
|
|
28
|
+
}],
|
|
29
|
+
base: 'uclbtc',
|
|
30
|
+
name: 'Liquid Bitcoin',
|
|
31
|
+
display: 'lbtc',
|
|
32
|
+
symbol: 'LBTC',
|
|
33
|
+
type_asset: 'sdk.coin'
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
description: 'ustake is a syntetic token to implement a PoA with BFT features over CometBFT',
|
|
37
|
+
denom_units: [{
|
|
38
|
+
denom: 'ustake',
|
|
39
|
+
exponent: 0
|
|
40
|
+
}],
|
|
41
|
+
base: 'ustake',
|
|
42
|
+
name: 'ustake',
|
|
43
|
+
display: 'ustake',
|
|
44
|
+
symbol: 'USTAKE',
|
|
45
|
+
type_asset: 'sdk.coin'
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
};
|
|
49
|
+
export default info;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'lombardledger',
|
|
4
|
+
chain_type: 'cosmos',
|
|
5
|
+
chain_id: 'ledger-mainnet-1',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
bech32_prefix: 'lom',
|
|
9
|
+
daemon_name: 'ledgerd',
|
|
10
|
+
node_home: '$HOME/.ledgerd',
|
|
11
|
+
key_algos: ['secp256k1'],
|
|
12
|
+
pretty_name: 'Lombard Ledger',
|
|
13
|
+
slip44: 118,
|
|
14
|
+
fees: {
|
|
15
|
+
fee_tokens: [{
|
|
16
|
+
denom: 'ulom',
|
|
17
|
+
fixed_min_gas_price: 100,
|
|
18
|
+
low_gas_price: 100,
|
|
19
|
+
average_gas_price: 100,
|
|
20
|
+
high_gas_price: 100
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
staking_tokens: [{
|
|
25
|
+
denom: 'ustake'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
git_repo: 'https://github.com/lombard-finance/ledger',
|
|
30
|
+
recommended_version: 'v1.2.0',
|
|
31
|
+
genesis: {
|
|
32
|
+
genesis_url: 'https://github.com/lombard-finance/ledger-testnets/blob/441861abd12e5149663079c6e36db3064ec4745a/mainnet/config/genesis.json'
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
apis: {
|
|
36
|
+
rpc: [],
|
|
37
|
+
rest: [],
|
|
38
|
+
grpc: []
|
|
39
|
+
},
|
|
40
|
+
explorers: [{
|
|
41
|
+
kind: 'Mintscan',
|
|
42
|
+
url: 'https://www.mintscan.io/lombard',
|
|
43
|
+
tx_page: 'https://www.mintscan.io/lombard/tx/${txHash}'
|
|
44
|
+
}]
|
|
45
|
+
};
|
|
46
|
+
export default info;
|
|
@@ -86,6 +86,35 @@ const info = [
|
|
|
86
86
|
}
|
|
87
87
|
}]
|
|
88
88
|
},
|
|
89
|
+
{
|
|
90
|
+
$schema: '../ibc_data.schema.json',
|
|
91
|
+
chain_1: {
|
|
92
|
+
chain_name: 'mantrachain',
|
|
93
|
+
client_id: '07-tendermint-7',
|
|
94
|
+
connection_id: 'connection-7'
|
|
95
|
+
},
|
|
96
|
+
chain_2: {
|
|
97
|
+
chain_name: 'neutron',
|
|
98
|
+
client_id: '07-tendermint-162',
|
|
99
|
+
connection_id: 'connection-119'
|
|
100
|
+
},
|
|
101
|
+
channels: [{
|
|
102
|
+
chain_1: {
|
|
103
|
+
channel_id: 'channel-7',
|
|
104
|
+
port_id: 'transfer'
|
|
105
|
+
},
|
|
106
|
+
chain_2: {
|
|
107
|
+
channel_id: 'channel-6964',
|
|
108
|
+
port_id: 'transfer'
|
|
109
|
+
},
|
|
110
|
+
ordering: 'unordered',
|
|
111
|
+
version: 'ics20-1',
|
|
112
|
+
tags: {
|
|
113
|
+
status: 'live',
|
|
114
|
+
preferred: true
|
|
115
|
+
}
|
|
116
|
+
}]
|
|
117
|
+
},
|
|
89
118
|
{
|
|
90
119
|
$schema: '../ibc_data.schema.json',
|
|
91
120
|
chain_1: {
|
package/esm/mainnet/named.js
CHANGED
|
@@ -100,6 +100,7 @@ export * as lava from './lava';
|
|
|
100
100
|
export * as lefeef from './lefeef';
|
|
101
101
|
export * as likecoin from './likecoin';
|
|
102
102
|
export * as logos from './logos';
|
|
103
|
+
export * as lombardledger from './lombardledger';
|
|
103
104
|
export * as loop from './loop';
|
|
104
105
|
export * as lorenzo from './lorenzo';
|
|
105
106
|
export * as loyal from './loyal';
|
|
@@ -168,6 +168,47 @@ const info = {
|
|
|
168
168
|
},
|
|
169
169
|
coingecko_id: 'celestia'
|
|
170
170
|
},
|
|
171
|
+
{
|
|
172
|
+
description: 'ELYS on Neutron',
|
|
173
|
+
denom_units: [{
|
|
174
|
+
denom: 'ibc/28FC965E05DB1A4C0A6DE6B720F67AFF8CAB571FE262824976DDDFF49A4BAAF7',
|
|
175
|
+
exponent: 0,
|
|
176
|
+
aliases: ['uelys']
|
|
177
|
+
}, {
|
|
178
|
+
denom: 'elys',
|
|
179
|
+
exponent: 6
|
|
180
|
+
}],
|
|
181
|
+
type_asset: 'ics20',
|
|
182
|
+
base: 'ibc/28FC965E05DB1A4C0A6DE6B720F67AFF8CAB571FE262824976DDDFF49A4BAAF7',
|
|
183
|
+
name: 'ELYS',
|
|
184
|
+
display: 'elys',
|
|
185
|
+
symbol: 'ELYS',
|
|
186
|
+
traces: [{
|
|
187
|
+
type: 'ibc',
|
|
188
|
+
counterparty: {
|
|
189
|
+
chain_name: 'elys',
|
|
190
|
+
base_denom: 'uelys',
|
|
191
|
+
channel_id: 'channel-16'
|
|
192
|
+
},
|
|
193
|
+
chain: {
|
|
194
|
+
channel_id: 'channel-6476',
|
|
195
|
+
path: 'transfer/channel-6476/uelys'
|
|
196
|
+
}
|
|
197
|
+
}],
|
|
198
|
+
images: [{
|
|
199
|
+
image_sync: {
|
|
200
|
+
chain_name: 'elys',
|
|
201
|
+
base_denom: 'uelys'
|
|
202
|
+
},
|
|
203
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/elys/images/elys.png',
|
|
204
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/elys/images/elys.svg'
|
|
205
|
+
}],
|
|
206
|
+
logo_URIs: {
|
|
207
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/elys/images/elys.png',
|
|
208
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/elys/images/elys.svg'
|
|
209
|
+
},
|
|
210
|
+
coingecko_id: 'elys-network'
|
|
211
|
+
},
|
|
171
212
|
{
|
|
172
213
|
description: 'Astropepe meme coin',
|
|
173
214
|
denom_units: [{
|
|
@@ -305,6 +305,35 @@ const info = [
|
|
|
305
305
|
}
|
|
306
306
|
}]
|
|
307
307
|
},
|
|
308
|
+
{
|
|
309
|
+
$schema: '../ibc_data.schema.json',
|
|
310
|
+
chain_1: {
|
|
311
|
+
chain_name: 'elys',
|
|
312
|
+
client_id: '07-tendermint-36',
|
|
313
|
+
connection_id: 'connection-19'
|
|
314
|
+
},
|
|
315
|
+
chain_2: {
|
|
316
|
+
chain_name: 'neutron',
|
|
317
|
+
client_id: '07-tendermint-152',
|
|
318
|
+
connection_id: 'connection-112'
|
|
319
|
+
},
|
|
320
|
+
channels: [{
|
|
321
|
+
chain_1: {
|
|
322
|
+
channel_id: 'channel-16',
|
|
323
|
+
port_id: 'transfer'
|
|
324
|
+
},
|
|
325
|
+
chain_2: {
|
|
326
|
+
channel_id: 'channel-6476',
|
|
327
|
+
port_id: 'transfer'
|
|
328
|
+
},
|
|
329
|
+
ordering: 'unordered',
|
|
330
|
+
version: 'ics20-1',
|
|
331
|
+
tags: {
|
|
332
|
+
status: 'live',
|
|
333
|
+
preferred: true
|
|
334
|
+
}
|
|
335
|
+
}]
|
|
336
|
+
},
|
|
308
337
|
{
|
|
309
338
|
$schema: '../ibc_data.schema.json',
|
|
310
339
|
chain_1: {
|
|
@@ -450,6 +479,35 @@ const info = [
|
|
|
450
479
|
}
|
|
451
480
|
}]
|
|
452
481
|
},
|
|
482
|
+
{
|
|
483
|
+
$schema: '../ibc_data.schema.json',
|
|
484
|
+
chain_1: {
|
|
485
|
+
chain_name: 'mantrachain',
|
|
486
|
+
client_id: '07-tendermint-7',
|
|
487
|
+
connection_id: 'connection-7'
|
|
488
|
+
},
|
|
489
|
+
chain_2: {
|
|
490
|
+
chain_name: 'neutron',
|
|
491
|
+
client_id: '07-tendermint-162',
|
|
492
|
+
connection_id: 'connection-119'
|
|
493
|
+
},
|
|
494
|
+
channels: [{
|
|
495
|
+
chain_1: {
|
|
496
|
+
channel_id: 'channel-7',
|
|
497
|
+
port_id: 'transfer'
|
|
498
|
+
},
|
|
499
|
+
chain_2: {
|
|
500
|
+
channel_id: 'channel-6964',
|
|
501
|
+
port_id: 'transfer'
|
|
502
|
+
},
|
|
503
|
+
ordering: 'unordered',
|
|
504
|
+
version: 'ics20-1',
|
|
505
|
+
tags: {
|
|
506
|
+
status: 'live',
|
|
507
|
+
preferred: true
|
|
508
|
+
}
|
|
509
|
+
}]
|
|
510
|
+
},
|
|
453
511
|
{
|
|
454
512
|
$schema: '../ibc_data.schema.json',
|
|
455
513
|
chain_1: {
|