chain-registry 1.69.305 → 1.69.307
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/assets.js +2 -0
- package/esm/mainnet/axelar/ibc.js +29 -0
- package/esm/mainnet/bandchain/chain.js +9 -9
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/paxi/assets.js +30 -0
- package/esm/mainnet/paxi/chain.js +72 -0
- package/esm/mainnet/paxi/index.js +4 -0
- package/esm/mainnet/sunrise/chain.js +32 -9
- package/esm/mainnet/terra2/assets.js +31 -0
- package/esm/mainnet/thorchain/assets.js +66 -0
- package/esm/mainnet/xpla/ibc.js +35 -3
- package/esm/testnet/mantrachaintestnet2/assets.js +24 -0
- package/mainnet/assets.js +2 -0
- package/mainnet/axelar/ibc.js +29 -0
- package/mainnet/bandchain/chain.js +9 -9
- package/mainnet/chains.js +2 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +4 -3
- package/mainnet/paxi/assets.d.ts +3 -0
- package/mainnet/paxi/assets.js +32 -0
- package/mainnet/paxi/chain.d.ts +3 -0
- package/mainnet/paxi/chain.js +74 -0
- package/mainnet/paxi/index.d.ts +2 -0
- package/mainnet/paxi/index.js +10 -0
- package/mainnet/sunrise/chain.js +32 -9
- package/mainnet/terra2/assets.js +31 -0
- package/mainnet/thorchain/assets.js +66 -0
- package/mainnet/xpla/ibc.js +35 -3
- package/package.json +3 -3
- package/testnet/mantrachaintestnet2/assets.js +24 -0
package/esm/mainnet/assets.js
CHANGED
|
@@ -145,6 +145,7 @@ import * as _osmosis from './osmosis';
|
|
|
145
145
|
import * as _paloma from './paloma';
|
|
146
146
|
import * as _panacea from './panacea';
|
|
147
147
|
import * as _passage from './passage';
|
|
148
|
+
import * as _paxi from './paxi';
|
|
148
149
|
import * as _persistence from './persistence';
|
|
149
150
|
import * as _planq from './planq';
|
|
150
151
|
import * as _pocket from './pocket';
|
|
@@ -356,6 +357,7 @@ const assets = [
|
|
|
356
357
|
_paloma.assets,
|
|
357
358
|
_panacea.assets,
|
|
358
359
|
_passage.assets,
|
|
360
|
+
_paxi.assets,
|
|
359
361
|
_persistence.assets,
|
|
360
362
|
_planq.assets,
|
|
361
363
|
_pocket.assets,
|
|
@@ -1466,6 +1466,35 @@ const info = [
|
|
|
1466
1466
|
preferred: true
|
|
1467
1467
|
}
|
|
1468
1468
|
}]
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
$schema: '../ibc_data.schema.json',
|
|
1472
|
+
chain_1: {
|
|
1473
|
+
chain_name: 'axelar',
|
|
1474
|
+
client_id: '07-tendermint-75',
|
|
1475
|
+
connection_id: 'connection-62'
|
|
1476
|
+
},
|
|
1477
|
+
chain_2: {
|
|
1478
|
+
chain_name: 'xpla',
|
|
1479
|
+
client_id: '07-tendermint-0',
|
|
1480
|
+
connection_id: 'connection-0'
|
|
1481
|
+
},
|
|
1482
|
+
channels: [{
|
|
1483
|
+
chain_1: {
|
|
1484
|
+
channel_id: 'channel-49',
|
|
1485
|
+
port_id: 'transfer'
|
|
1486
|
+
},
|
|
1487
|
+
chain_2: {
|
|
1488
|
+
channel_id: 'channel-0',
|
|
1489
|
+
port_id: 'transfer'
|
|
1490
|
+
},
|
|
1491
|
+
ordering: 'unordered',
|
|
1492
|
+
version: 'ics20-1',
|
|
1493
|
+
tags: {
|
|
1494
|
+
status: 'live',
|
|
1495
|
+
preferred: true
|
|
1496
|
+
}
|
|
1497
|
+
}]
|
|
1469
1498
|
}
|
|
1470
1499
|
];
|
|
1471
1500
|
export default info;
|
|
@@ -31,26 +31,26 @@ const info = {
|
|
|
31
31
|
},
|
|
32
32
|
codebase: {
|
|
33
33
|
git_repo: 'https://github.com/bandprotocol/chain',
|
|
34
|
-
recommended_version: '
|
|
35
|
-
compatible_versions: [
|
|
36
|
-
'v2.5.2',
|
|
37
|
-
'v2.5.3',
|
|
38
|
-
'v2.5.4'
|
|
39
|
-
],
|
|
34
|
+
recommended_version: 'v3.1.0',
|
|
35
|
+
compatible_versions: ['v3.1.0'],
|
|
40
36
|
consensus: {
|
|
41
37
|
type: 'cometbft',
|
|
42
|
-
version: 'v0.
|
|
38
|
+
version: 'v0.38.17'
|
|
43
39
|
},
|
|
44
40
|
genesis: {
|
|
45
41
|
genesis_url: 'https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/genesis.json'
|
|
46
42
|
},
|
|
47
43
|
sdk: {
|
|
48
44
|
type: 'cosmos',
|
|
49
|
-
version: '
|
|
45
|
+
version: 'v0.50.14'
|
|
50
46
|
},
|
|
51
47
|
ibc: {
|
|
52
48
|
type: 'go',
|
|
53
|
-
version: '
|
|
49
|
+
version: 'v8.7.0'
|
|
50
|
+
},
|
|
51
|
+
language: {
|
|
52
|
+
type: 'go',
|
|
53
|
+
version: 'v1.24.2'
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
56
|
logo_URIs: {
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -145,6 +145,7 @@ import * as _osmosis from './osmosis';
|
|
|
145
145
|
import * as _paloma from './paloma';
|
|
146
146
|
import * as _panacea from './panacea';
|
|
147
147
|
import * as _passage from './passage';
|
|
148
|
+
import * as _paxi from './paxi';
|
|
148
149
|
import * as _persistence from './persistence';
|
|
149
150
|
import * as _planq from './planq';
|
|
150
151
|
import * as _pocket from './pocket';
|
|
@@ -356,6 +357,7 @@ const chains = [
|
|
|
356
357
|
_paloma.chain,
|
|
357
358
|
_panacea.chain,
|
|
358
359
|
_passage.chain,
|
|
360
|
+
_paxi.chain,
|
|
359
361
|
_persistence.chain,
|
|
360
362
|
_planq.chain,
|
|
361
363
|
_pocket.chain,
|
package/esm/mainnet/named.js
CHANGED
|
@@ -145,6 +145,7 @@ export * as osmosis from './osmosis';
|
|
|
145
145
|
export * as paloma from './paloma';
|
|
146
146
|
export * as panacea from './panacea';
|
|
147
147
|
export * as passage from './passage';
|
|
148
|
+
export * as paxi from './paxi';
|
|
148
149
|
export * as persistence from './persistence';
|
|
149
150
|
export * as planq from './planq';
|
|
150
151
|
export * as pocket from './pocket';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'paxi',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'PAXI is the native token of the Paxi blockchain.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'upaxi',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'PAXI',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
type_asset: 'sdk.coin',
|
|
14
|
+
base: 'upaxi',
|
|
15
|
+
name: 'Paxi',
|
|
16
|
+
display: 'PAXI',
|
|
17
|
+
symbol: 'PAXI',
|
|
18
|
+
images: [{
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
|
|
20
|
+
theme: {
|
|
21
|
+
circle: false
|
|
22
|
+
}
|
|
23
|
+
}],
|
|
24
|
+
keywords: ['staking'],
|
|
25
|
+
socials: {
|
|
26
|
+
website: 'https://paxinet.io'
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
};
|
|
30
|
+
export default info;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'paxi',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://paxinet.io',
|
|
6
|
+
network_type: 'mainnet',
|
|
7
|
+
chain_type: 'cosmos',
|
|
8
|
+
pretty_name: 'Paxi',
|
|
9
|
+
chain_id: 'paxi-mainnet',
|
|
10
|
+
bech32_prefix: 'paxi',
|
|
11
|
+
daemon_name: 'paxid',
|
|
12
|
+
node_home: '$HOME/.paxi',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'upaxi',
|
|
18
|
+
fixed_min_gas_price: 0.05,
|
|
19
|
+
low_gas_price: 0.05,
|
|
20
|
+
average_gas_price: 0.1,
|
|
21
|
+
high_gas_price: 0.25
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'upaxi'
|
|
27
|
+
}],
|
|
28
|
+
lock_duration: {
|
|
29
|
+
time: '604800s'
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
codebase: {
|
|
33
|
+
git_repo: 'https://github.com/paxi-web3/paxi',
|
|
34
|
+
genesis: {
|
|
35
|
+
name: 'paxi-mainnet',
|
|
36
|
+
genesis_url: 'https://mainnet-rpc.paxinet.io/genesis'
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
images: [{
|
|
40
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
|
|
41
|
+
theme: {
|
|
42
|
+
circle: false
|
|
43
|
+
}
|
|
44
|
+
}],
|
|
45
|
+
apis: {
|
|
46
|
+
rpc: [{
|
|
47
|
+
address: 'https://mainnet-rpc.paxinet.io',
|
|
48
|
+
provider: 'Paxi Foundation'
|
|
49
|
+
}],
|
|
50
|
+
rest: [{
|
|
51
|
+
address: 'https://mainnet-lcd.paxinet.io',
|
|
52
|
+
provider: 'Paxi Foundation'
|
|
53
|
+
}],
|
|
54
|
+
grpc: [{
|
|
55
|
+
address: 'mainnet-rpc.paxinet.io:443',
|
|
56
|
+
provider: 'Paxi Foundation'
|
|
57
|
+
}]
|
|
58
|
+
},
|
|
59
|
+
explorers: [{
|
|
60
|
+
kind: 'paxi-explorer',
|
|
61
|
+
url: 'https://explorer.paxinet.io',
|
|
62
|
+
tx_page: 'https://explorer.paxinet.io/tx/${txHash}',
|
|
63
|
+
account_page: 'https://explorer.paxinet.io/address/${accountAddress}'
|
|
64
|
+
}],
|
|
65
|
+
keywords: [
|
|
66
|
+
'ibc',
|
|
67
|
+
'staking',
|
|
68
|
+
'dex',
|
|
69
|
+
'wasm'
|
|
70
|
+
]
|
|
71
|
+
};
|
|
72
|
+
export default info;
|
|
@@ -54,20 +54,34 @@ const info = {
|
|
|
54
54
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
|
|
55
55
|
},
|
|
56
56
|
apis: {
|
|
57
|
-
rpc: [
|
|
57
|
+
rpc: [
|
|
58
|
+
{
|
|
58
59
|
address: 'https://a.consensus.sunrise-1.sunriselayer.io',
|
|
59
60
|
provider: 'Sunrise Team'
|
|
60
|
-
},
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
address: 'https://sunrise-mainnet-rpc.mekonglabs.tech',
|
|
64
|
+
provider: 'MekongLabs'
|
|
65
|
+
},
|
|
66
|
+
{
|
|
61
67
|
address: 'https://rpc-sunrise.nodeist.net',
|
|
62
68
|
provider: 'Nodeist'
|
|
63
|
-
}
|
|
64
|
-
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
rest: [
|
|
72
|
+
{
|
|
65
73
|
address: 'https://a.consensus.sunrise-1.sunriselayer.io:1318',
|
|
66
74
|
provider: 'Sunrise Team'
|
|
67
|
-
},
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: 'https://sunrise-mainnet-api.mekonglabs.tech',
|
|
78
|
+
provider: 'MekongLabs'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
68
81
|
address: 'https://api-sunrise.nodeist.net',
|
|
69
82
|
provider: 'Nodeist'
|
|
70
|
-
}
|
|
83
|
+
}
|
|
84
|
+
],
|
|
71
85
|
grpc: [{
|
|
72
86
|
address: 'https://a.consensus.sunrise-1.sunriselayer.io:9092',
|
|
73
87
|
provider: 'Sunrise Team'
|
|
@@ -76,17 +90,26 @@ const info = {
|
|
|
76
90
|
provider: 'Nodeist'
|
|
77
91
|
}]
|
|
78
92
|
},
|
|
79
|
-
explorers: [
|
|
93
|
+
explorers: [
|
|
94
|
+
{
|
|
80
95
|
kind: 'Risescan',
|
|
81
96
|
url: 'https://risescan.sunriselayer.io',
|
|
82
97
|
tx_page: 'https://risescan.sunriselayer.io/txs/${txHash}',
|
|
83
98
|
account_page: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
|
|
84
|
-
},
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
kind: 'MekongLabs Explorer',
|
|
102
|
+
url: 'https://explorer.mekonglabs.tech/sunrise/staking',
|
|
103
|
+
tx_page: 'https://explorer.mekonglabs.tech/sunrise/tx/${txHash}',
|
|
104
|
+
account_page: 'https://explorer.mekonglabs.tech/sunrise/account/${accountAddress}'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
85
107
|
kind: 'Explorer.ist',
|
|
86
108
|
url: 'https://explorer.ist/sunrise',
|
|
87
109
|
tx_page: 'https://explorer.ist/sunrise/tx/${txHash}',
|
|
88
110
|
account_page: 'https://explorer.ist/sunrise/account/${accountAddress}'
|
|
89
|
-
}
|
|
111
|
+
}
|
|
112
|
+
],
|
|
90
113
|
images: [{
|
|
91
114
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
|
|
92
115
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'
|
|
@@ -1401,6 +1401,37 @@ const info = {
|
|
|
1401
1401
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Capapult.png',
|
|
1402
1402
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Capapult.svg'
|
|
1403
1403
|
}]
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
description: 'ampCAPA is the liquid staking governance token of SOLID ecosystem, powered by ERIS Protocol',
|
|
1407
|
+
denom_units: [{
|
|
1408
|
+
denom: 'factory/terra186rpfczl7l2kugdsqqedegl4es4hp624phfc7ddy8my02a4e8lgq5rlx7y/ampCAPA',
|
|
1409
|
+
exponent: 0
|
|
1410
|
+
}, {
|
|
1411
|
+
denom: 'ampCAPA',
|
|
1412
|
+
exponent: 6
|
|
1413
|
+
}],
|
|
1414
|
+
base: 'factory/terra186rpfczl7l2kugdsqqedegl4es4hp624phfc7ddy8my02a4e8lgq5rlx7y/ampCAPA',
|
|
1415
|
+
name: 'ERIS Amplified CAPA',
|
|
1416
|
+
display: 'ampCAPA',
|
|
1417
|
+
symbol: 'ampCAPA',
|
|
1418
|
+
logo_URIs: {
|
|
1419
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.png',
|
|
1420
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.svg'
|
|
1421
|
+
},
|
|
1422
|
+
images: [{
|
|
1423
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.png',
|
|
1424
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.svg'
|
|
1425
|
+
}],
|
|
1426
|
+
type_asset: 'sdk.coin',
|
|
1427
|
+
traces: [{
|
|
1428
|
+
type: 'liquid-stake',
|
|
1429
|
+
counterparty: {
|
|
1430
|
+
chain_name: 'terra2',
|
|
1431
|
+
base_denom: 'uluna'
|
|
1432
|
+
},
|
|
1433
|
+
provider: 'ERIS Protocol'
|
|
1434
|
+
}]
|
|
1404
1435
|
}
|
|
1405
1436
|
]
|
|
1406
1437
|
};
|
|
@@ -267,6 +267,72 @@ const info = {
|
|
|
267
267
|
telegram: 'https://t.me/NAMIProtocol',
|
|
268
268
|
twitter: 'https://twitter.com/NamiProtocol'
|
|
269
269
|
}
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
base: 'x/nami-index-nav-thor1mlphkryw5g54yfkrp6xpqzlpv4f8wh6hyw27yyg4z2els8a9gxpqhfhekt-rcpt',
|
|
273
|
+
type_asset: 'sdk.coin',
|
|
274
|
+
description: 'The Yield Bearing RUNE Index (yRUNE) is an auto-rebalancing index that tracks the performance of RUNE and TCY while generating yield from TCY staking.',
|
|
275
|
+
denom_units: [{
|
|
276
|
+
denom: 'YRUNE',
|
|
277
|
+
exponent: 8
|
|
278
|
+
}, {
|
|
279
|
+
denom: 'x/nami-index-nav-thor1mlphkryw5g54yfkrp6xpqzlpv4f8wh6hyw27yyg4z2els8a9gxpqhfhekt-rcpt',
|
|
280
|
+
exponent: 0
|
|
281
|
+
}],
|
|
282
|
+
name: 'YRUNE',
|
|
283
|
+
display: 'YRUNE',
|
|
284
|
+
symbol: 'YRUNE',
|
|
285
|
+
logo_URIs: {
|
|
286
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/yrune.png'
|
|
287
|
+
},
|
|
288
|
+
images: [{
|
|
289
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/yrune.png'
|
|
290
|
+
}],
|
|
291
|
+
keywords: [
|
|
292
|
+
'index',
|
|
293
|
+
'rujira',
|
|
294
|
+
'defi',
|
|
295
|
+
'nami'
|
|
296
|
+
],
|
|
297
|
+
socials: {
|
|
298
|
+
website: 'https://rujira.network/index',
|
|
299
|
+
discord: 'https://discord.gg/WGgUADfxXR',
|
|
300
|
+
telegram: 'https://t.me/NAMIProtocol',
|
|
301
|
+
twitter: 'https://x.com/Nami_Index_'
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
base: 'x/nami-index-nav-thor1h0hr0rm3dawkedh44hlrmgvya6plsryehcr46yda2vj0wfwgq5xqrs86px-rcpt',
|
|
306
|
+
type_asset: 'sdk.coin',
|
|
307
|
+
description: 'The Yield Bearing TCY Index (yTCY) is an auto-rebalancing index designed to track the performance of both RUNE and TCY, with a strategic overweight on TCY to maximize yield potential.',
|
|
308
|
+
denom_units: [{
|
|
309
|
+
denom: 'YTCY',
|
|
310
|
+
exponent: 8
|
|
311
|
+
}, {
|
|
312
|
+
denom: 'x/nami-index-nav-thor1h0hr0rm3dawkedh44hlrmgvya6plsryehcr46yda2vj0wfwgq5xqrs86px-rcpt',
|
|
313
|
+
exponent: 0
|
|
314
|
+
}],
|
|
315
|
+
name: 'YTCY',
|
|
316
|
+
display: 'YTCY',
|
|
317
|
+
symbol: 'YTCY',
|
|
318
|
+
logo_URIs: {
|
|
319
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/ytcy.png'
|
|
320
|
+
},
|
|
321
|
+
images: [{
|
|
322
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/ytcy.png'
|
|
323
|
+
}],
|
|
324
|
+
keywords: [
|
|
325
|
+
'index',
|
|
326
|
+
'rujira',
|
|
327
|
+
'defi',
|
|
328
|
+
'nami'
|
|
329
|
+
],
|
|
330
|
+
socials: {
|
|
331
|
+
website: 'https://rujira.network/index',
|
|
332
|
+
discord: 'https://discord.gg/WGgUADfxXR',
|
|
333
|
+
telegram: 'https://t.me/NAMIProtocol',
|
|
334
|
+
twitter: 'https://x.com/Nami_Index_'
|
|
335
|
+
}
|
|
270
336
|
}
|
|
271
337
|
]
|
|
272
338
|
};
|
package/esm/mainnet/xpla/ibc.js
CHANGED
|
@@ -1,4 +1,34 @@
|
|
|
1
|
-
const info = [
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain_1: {
|
|
5
|
+
chain_name: 'axelar',
|
|
6
|
+
client_id: '07-tendermint-75',
|
|
7
|
+
connection_id: 'connection-62'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'xpla',
|
|
11
|
+
client_id: '07-tendermint-0',
|
|
12
|
+
connection_id: 'connection-0'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain_1: {
|
|
16
|
+
channel_id: 'channel-49',
|
|
17
|
+
port_id: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain_2: {
|
|
20
|
+
channel_id: 'channel-0',
|
|
21
|
+
port_id: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
ordering: 'unordered',
|
|
24
|
+
version: 'ics20-1',
|
|
25
|
+
tags: {
|
|
26
|
+
status: 'live',
|
|
27
|
+
preferred: true
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
2
32
|
$schema: '../ibc_data.schema.json',
|
|
3
33
|
chain_1: {
|
|
4
34
|
chain_name: 'injective',
|
|
@@ -26,7 +56,8 @@ const info = [{
|
|
|
26
56
|
preferred: true
|
|
27
57
|
}
|
|
28
58
|
}]
|
|
29
|
-
},
|
|
59
|
+
},
|
|
60
|
+
{
|
|
30
61
|
$schema: '../ibc_data.schema.json',
|
|
31
62
|
chain_1: {
|
|
32
63
|
chain_name: 'osmosis',
|
|
@@ -55,5 +86,6 @@ const info = [{
|
|
|
55
86
|
dex: 'osmosis'
|
|
56
87
|
}
|
|
57
88
|
}]
|
|
58
|
-
}
|
|
89
|
+
}
|
|
90
|
+
];
|
|
59
91
|
export default info;
|
|
@@ -220,6 +220,30 @@ const info = {
|
|
|
220
220
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
221
221
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
222
222
|
}]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
description: 'This tThe ultimate snack-based meme coin for loyal degens. Earn them, trade them, and feed your inner Shibe — no utility, just tasty vibes.',
|
|
226
|
+
extended_description: 'This tThe ultimate snack-based meme coin for loyal degens. Earn them, trade them, and feed your inner Shibe — no utility, just tasty vibes.',
|
|
227
|
+
denom_units: [{
|
|
228
|
+
denom: 'factory/mantra1uvn4qgh96lc83dzu8mpf3u93lk605ls0vg0nf2/TREATS',
|
|
229
|
+
exponent: 0,
|
|
230
|
+
aliases: []
|
|
231
|
+
}, {
|
|
232
|
+
denom: 'TREATS',
|
|
233
|
+
exponent: 18,
|
|
234
|
+
aliases: ['treats']
|
|
235
|
+
}],
|
|
236
|
+
base: 'factory/mantra1uvn4qgh96lc83dzu8mpf3u93lk605ls0vg0nf2/TREATS',
|
|
237
|
+
name: 'Shibe Inu Treats',
|
|
238
|
+
display: 'TREATS',
|
|
239
|
+
symbol: 'TREATS',
|
|
240
|
+
logo_URIs: {
|
|
241
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet2/images/treats.png'
|
|
242
|
+
},
|
|
243
|
+
images: [{
|
|
244
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet2/images/treats.png'
|
|
245
|
+
}],
|
|
246
|
+
type_asset: 'sdk.coin'
|
|
223
247
|
}
|
|
224
248
|
]
|
|
225
249
|
};
|
package/mainnet/assets.js
CHANGED
|
@@ -170,6 +170,7 @@ const _osmosis = __importStar(require("./osmosis"));
|
|
|
170
170
|
const _paloma = __importStar(require("./paloma"));
|
|
171
171
|
const _panacea = __importStar(require("./panacea"));
|
|
172
172
|
const _passage = __importStar(require("./passage"));
|
|
173
|
+
const _paxi = __importStar(require("./paxi"));
|
|
173
174
|
const _persistence = __importStar(require("./persistence"));
|
|
174
175
|
const _planq = __importStar(require("./planq"));
|
|
175
176
|
const _pocket = __importStar(require("./pocket"));
|
|
@@ -381,6 +382,7 @@ const assets = [
|
|
|
381
382
|
_paloma.assets,
|
|
382
383
|
_panacea.assets,
|
|
383
384
|
_passage.assets,
|
|
385
|
+
_paxi.assets,
|
|
384
386
|
_persistence.assets,
|
|
385
387
|
_planq.assets,
|
|
386
388
|
_pocket.assets,
|
package/mainnet/axelar/ibc.js
CHANGED
|
@@ -1468,6 +1468,35 @@ const info = [
|
|
|
1468
1468
|
preferred: true
|
|
1469
1469
|
}
|
|
1470
1470
|
}]
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
$schema: '../ibc_data.schema.json',
|
|
1474
|
+
chain_1: {
|
|
1475
|
+
chain_name: 'axelar',
|
|
1476
|
+
client_id: '07-tendermint-75',
|
|
1477
|
+
connection_id: 'connection-62'
|
|
1478
|
+
},
|
|
1479
|
+
chain_2: {
|
|
1480
|
+
chain_name: 'xpla',
|
|
1481
|
+
client_id: '07-tendermint-0',
|
|
1482
|
+
connection_id: 'connection-0'
|
|
1483
|
+
},
|
|
1484
|
+
channels: [{
|
|
1485
|
+
chain_1: {
|
|
1486
|
+
channel_id: 'channel-49',
|
|
1487
|
+
port_id: 'transfer'
|
|
1488
|
+
},
|
|
1489
|
+
chain_2: {
|
|
1490
|
+
channel_id: 'channel-0',
|
|
1491
|
+
port_id: 'transfer'
|
|
1492
|
+
},
|
|
1493
|
+
ordering: 'unordered',
|
|
1494
|
+
version: 'ics20-1',
|
|
1495
|
+
tags: {
|
|
1496
|
+
status: 'live',
|
|
1497
|
+
preferred: true
|
|
1498
|
+
}
|
|
1499
|
+
}]
|
|
1471
1500
|
}
|
|
1472
1501
|
];
|
|
1473
1502
|
exports.default = info;
|
|
@@ -33,26 +33,26 @@ const info = {
|
|
|
33
33
|
},
|
|
34
34
|
codebase: {
|
|
35
35
|
git_repo: 'https://github.com/bandprotocol/chain',
|
|
36
|
-
recommended_version: '
|
|
37
|
-
compatible_versions: [
|
|
38
|
-
'v2.5.2',
|
|
39
|
-
'v2.5.3',
|
|
40
|
-
'v2.5.4'
|
|
41
|
-
],
|
|
36
|
+
recommended_version: 'v3.1.0',
|
|
37
|
+
compatible_versions: ['v3.1.0'],
|
|
42
38
|
consensus: {
|
|
43
39
|
type: 'cometbft',
|
|
44
|
-
version: 'v0.
|
|
40
|
+
version: 'v0.38.17'
|
|
45
41
|
},
|
|
46
42
|
genesis: {
|
|
47
43
|
genesis_url: 'https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/genesis.json'
|
|
48
44
|
},
|
|
49
45
|
sdk: {
|
|
50
46
|
type: 'cosmos',
|
|
51
|
-
version: '
|
|
47
|
+
version: 'v0.50.14'
|
|
52
48
|
},
|
|
53
49
|
ibc: {
|
|
54
50
|
type: 'go',
|
|
55
|
-
version: '
|
|
51
|
+
version: 'v8.7.0'
|
|
52
|
+
},
|
|
53
|
+
language: {
|
|
54
|
+
type: 'go',
|
|
55
|
+
version: 'v1.24.2'
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
logo_URIs: {
|
package/mainnet/chains.js
CHANGED
|
@@ -170,6 +170,7 @@ const _osmosis = __importStar(require("./osmosis"));
|
|
|
170
170
|
const _paloma = __importStar(require("./paloma"));
|
|
171
171
|
const _panacea = __importStar(require("./panacea"));
|
|
172
172
|
const _passage = __importStar(require("./passage"));
|
|
173
|
+
const _paxi = __importStar(require("./paxi"));
|
|
173
174
|
const _persistence = __importStar(require("./persistence"));
|
|
174
175
|
const _planq = __importStar(require("./planq"));
|
|
175
176
|
const _pocket = __importStar(require("./pocket"));
|
|
@@ -381,6 +382,7 @@ const chains = [
|
|
|
381
382
|
_paloma.chain,
|
|
382
383
|
_panacea.chain,
|
|
383
384
|
_passage.chain,
|
|
385
|
+
_paxi.chain,
|
|
384
386
|
_persistence.chain,
|
|
385
387
|
_planq.chain,
|
|
386
388
|
_pocket.chain,
|
package/mainnet/named.d.ts
CHANGED
|
@@ -145,6 +145,7 @@ export * as osmosis from './osmosis';
|
|
|
145
145
|
export * as paloma from './paloma';
|
|
146
146
|
export * as panacea from './panacea';
|
|
147
147
|
export * as passage from './passage';
|
|
148
|
+
export * as paxi from './paxi';
|
|
148
149
|
export * as persistence from './persistence';
|
|
149
150
|
export * as planq from './planq';
|
|
150
151
|
export * as pocket from './pocket';
|
package/mainnet/named.js
CHANGED
|
@@ -25,9 +25,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.buycex = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.babylon = exports.axone = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.arkeo = exports.archway = exports.andromeda = exports.althea = exports.allora = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.namada = exports.ethereum = void 0;
|
|
27
27
|
exports.kopi = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.int3face = exports.injective = exports.initia = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.hippoprotocol = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.ggezchain = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = void 0;
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.vector = exports.uptick = exports.ununifi = exports.unification = void 0;
|
|
28
|
+
exports.planq = exports.persistence = exports.paxi = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nillion = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mantrachain = exports.manifest = exports.mande = exports.lumnetwork = exports.lumera = exports.loyal = exports.lorenzo = exports.loop = exports.lombardledger = exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = void 0;
|
|
29
|
+
exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.symphony = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.qubetics = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.pocket = void 0;
|
|
30
|
+
exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = void 0;
|
|
31
31
|
exports.ethereum = __importStar(require("./ethereum"));
|
|
32
32
|
exports.namada = __importStar(require("./namada"));
|
|
33
33
|
exports.rootstock = __importStar(require("./rootstock"));
|
|
@@ -175,6 +175,7 @@ exports.osmosis = __importStar(require("./osmosis"));
|
|
|
175
175
|
exports.paloma = __importStar(require("./paloma"));
|
|
176
176
|
exports.panacea = __importStar(require("./panacea"));
|
|
177
177
|
exports.passage = __importStar(require("./passage"));
|
|
178
|
+
exports.paxi = __importStar(require("./paxi"));
|
|
178
179
|
exports.persistence = __importStar(require("./persistence"));
|
|
179
180
|
exports.planq = __importStar(require("./planq"));
|
|
180
181
|
exports.pocket = __importStar(require("./pocket"));
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'paxi',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'PAXI is the native token of the Paxi blockchain.',
|
|
8
|
+
denom_units: [{
|
|
9
|
+
denom: 'upaxi',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'PAXI',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
type_asset: 'sdk.coin',
|
|
16
|
+
base: 'upaxi',
|
|
17
|
+
name: 'Paxi',
|
|
18
|
+
display: 'PAXI',
|
|
19
|
+
symbol: 'PAXI',
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
|
|
22
|
+
theme: {
|
|
23
|
+
circle: false
|
|
24
|
+
}
|
|
25
|
+
}],
|
|
26
|
+
keywords: ['staking'],
|
|
27
|
+
socials: {
|
|
28
|
+
website: 'https://paxinet.io'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
exports.default = info;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'paxi',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://paxinet.io',
|
|
8
|
+
network_type: 'mainnet',
|
|
9
|
+
chain_type: 'cosmos',
|
|
10
|
+
pretty_name: 'Paxi',
|
|
11
|
+
chain_id: 'paxi-mainnet',
|
|
12
|
+
bech32_prefix: 'paxi',
|
|
13
|
+
daemon_name: 'paxid',
|
|
14
|
+
node_home: '$HOME/.paxi',
|
|
15
|
+
key_algos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
fee_tokens: [{
|
|
19
|
+
denom: 'upaxi',
|
|
20
|
+
fixed_min_gas_price: 0.05,
|
|
21
|
+
low_gas_price: 0.05,
|
|
22
|
+
average_gas_price: 0.1,
|
|
23
|
+
high_gas_price: 0.25
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
staking_tokens: [{
|
|
28
|
+
denom: 'upaxi'
|
|
29
|
+
}],
|
|
30
|
+
lock_duration: {
|
|
31
|
+
time: '604800s'
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
codebase: {
|
|
35
|
+
git_repo: 'https://github.com/paxi-web3/paxi',
|
|
36
|
+
genesis: {
|
|
37
|
+
name: 'paxi-mainnet',
|
|
38
|
+
genesis_url: 'https://mainnet-rpc.paxinet.io/genesis'
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
images: [{
|
|
42
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
|
|
43
|
+
theme: {
|
|
44
|
+
circle: false
|
|
45
|
+
}
|
|
46
|
+
}],
|
|
47
|
+
apis: {
|
|
48
|
+
rpc: [{
|
|
49
|
+
address: 'https://mainnet-rpc.paxinet.io',
|
|
50
|
+
provider: 'Paxi Foundation'
|
|
51
|
+
}],
|
|
52
|
+
rest: [{
|
|
53
|
+
address: 'https://mainnet-lcd.paxinet.io',
|
|
54
|
+
provider: 'Paxi Foundation'
|
|
55
|
+
}],
|
|
56
|
+
grpc: [{
|
|
57
|
+
address: 'mainnet-rpc.paxinet.io:443',
|
|
58
|
+
provider: 'Paxi Foundation'
|
|
59
|
+
}]
|
|
60
|
+
},
|
|
61
|
+
explorers: [{
|
|
62
|
+
kind: 'paxi-explorer',
|
|
63
|
+
url: 'https://explorer.paxinet.io',
|
|
64
|
+
tx_page: 'https://explorer.paxinet.io/tx/${txHash}',
|
|
65
|
+
account_page: 'https://explorer.paxinet.io/address/${accountAddress}'
|
|
66
|
+
}],
|
|
67
|
+
keywords: [
|
|
68
|
+
'ibc',
|
|
69
|
+
'staking',
|
|
70
|
+
'dex',
|
|
71
|
+
'wasm'
|
|
72
|
+
]
|
|
73
|
+
};
|
|
74
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.chain = exports.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assets = assets_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/mainnet/sunrise/chain.js
CHANGED
|
@@ -56,20 +56,34 @@ const info = {
|
|
|
56
56
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
|
|
57
57
|
},
|
|
58
58
|
apis: {
|
|
59
|
-
rpc: [
|
|
59
|
+
rpc: [
|
|
60
|
+
{
|
|
60
61
|
address: 'https://a.consensus.sunrise-1.sunriselayer.io',
|
|
61
62
|
provider: 'Sunrise Team'
|
|
62
|
-
},
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
address: 'https://sunrise-mainnet-rpc.mekonglabs.tech',
|
|
66
|
+
provider: 'MekongLabs'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
63
69
|
address: 'https://rpc-sunrise.nodeist.net',
|
|
64
70
|
provider: 'Nodeist'
|
|
65
|
-
}
|
|
66
|
-
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
rest: [
|
|
74
|
+
{
|
|
67
75
|
address: 'https://a.consensus.sunrise-1.sunriselayer.io:1318',
|
|
68
76
|
provider: 'Sunrise Team'
|
|
69
|
-
},
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://sunrise-mainnet-api.mekonglabs.tech',
|
|
80
|
+
provider: 'MekongLabs'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
70
83
|
address: 'https://api-sunrise.nodeist.net',
|
|
71
84
|
provider: 'Nodeist'
|
|
72
|
-
}
|
|
85
|
+
}
|
|
86
|
+
],
|
|
73
87
|
grpc: [{
|
|
74
88
|
address: 'https://a.consensus.sunrise-1.sunriselayer.io:9092',
|
|
75
89
|
provider: 'Sunrise Team'
|
|
@@ -78,17 +92,26 @@ const info = {
|
|
|
78
92
|
provider: 'Nodeist'
|
|
79
93
|
}]
|
|
80
94
|
},
|
|
81
|
-
explorers: [
|
|
95
|
+
explorers: [
|
|
96
|
+
{
|
|
82
97
|
kind: 'Risescan',
|
|
83
98
|
url: 'https://risescan.sunriselayer.io',
|
|
84
99
|
tx_page: 'https://risescan.sunriselayer.io/txs/${txHash}',
|
|
85
100
|
account_page: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
|
|
86
|
-
},
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
kind: 'MekongLabs Explorer',
|
|
104
|
+
url: 'https://explorer.mekonglabs.tech/sunrise/staking',
|
|
105
|
+
tx_page: 'https://explorer.mekonglabs.tech/sunrise/tx/${txHash}',
|
|
106
|
+
account_page: 'https://explorer.mekonglabs.tech/sunrise/account/${accountAddress}'
|
|
107
|
+
},
|
|
108
|
+
{
|
|
87
109
|
kind: 'Explorer.ist',
|
|
88
110
|
url: 'https://explorer.ist/sunrise',
|
|
89
111
|
tx_page: 'https://explorer.ist/sunrise/tx/${txHash}',
|
|
90
112
|
account_page: 'https://explorer.ist/sunrise/account/${accountAddress}'
|
|
91
|
-
}
|
|
113
|
+
}
|
|
114
|
+
],
|
|
92
115
|
images: [{
|
|
93
116
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
|
|
94
117
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'
|
package/mainnet/terra2/assets.js
CHANGED
|
@@ -1403,6 +1403,37 @@ const info = {
|
|
|
1403
1403
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Capapult.png',
|
|
1404
1404
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Capapult.svg'
|
|
1405
1405
|
}]
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
description: 'ampCAPA is the liquid staking governance token of SOLID ecosystem, powered by ERIS Protocol',
|
|
1409
|
+
denom_units: [{
|
|
1410
|
+
denom: 'factory/terra186rpfczl7l2kugdsqqedegl4es4hp624phfc7ddy8my02a4e8lgq5rlx7y/ampCAPA',
|
|
1411
|
+
exponent: 0
|
|
1412
|
+
}, {
|
|
1413
|
+
denom: 'ampCAPA',
|
|
1414
|
+
exponent: 6
|
|
1415
|
+
}],
|
|
1416
|
+
base: 'factory/terra186rpfczl7l2kugdsqqedegl4es4hp624phfc7ddy8my02a4e8lgq5rlx7y/ampCAPA',
|
|
1417
|
+
name: 'ERIS Amplified CAPA',
|
|
1418
|
+
display: 'ampCAPA',
|
|
1419
|
+
symbol: 'ampCAPA',
|
|
1420
|
+
logo_URIs: {
|
|
1421
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.png',
|
|
1422
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.svg'
|
|
1423
|
+
},
|
|
1424
|
+
images: [{
|
|
1425
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.png',
|
|
1426
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.svg'
|
|
1427
|
+
}],
|
|
1428
|
+
type_asset: 'sdk.coin',
|
|
1429
|
+
traces: [{
|
|
1430
|
+
type: 'liquid-stake',
|
|
1431
|
+
counterparty: {
|
|
1432
|
+
chain_name: 'terra2',
|
|
1433
|
+
base_denom: 'uluna'
|
|
1434
|
+
},
|
|
1435
|
+
provider: 'ERIS Protocol'
|
|
1436
|
+
}]
|
|
1406
1437
|
}
|
|
1407
1438
|
]
|
|
1408
1439
|
};
|
|
@@ -269,6 +269,72 @@ const info = {
|
|
|
269
269
|
telegram: 'https://t.me/NAMIProtocol',
|
|
270
270
|
twitter: 'https://twitter.com/NamiProtocol'
|
|
271
271
|
}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
base: 'x/nami-index-nav-thor1mlphkryw5g54yfkrp6xpqzlpv4f8wh6hyw27yyg4z2els8a9gxpqhfhekt-rcpt',
|
|
275
|
+
type_asset: 'sdk.coin',
|
|
276
|
+
description: 'The Yield Bearing RUNE Index (yRUNE) is an auto-rebalancing index that tracks the performance of RUNE and TCY while generating yield from TCY staking.',
|
|
277
|
+
denom_units: [{
|
|
278
|
+
denom: 'YRUNE',
|
|
279
|
+
exponent: 8
|
|
280
|
+
}, {
|
|
281
|
+
denom: 'x/nami-index-nav-thor1mlphkryw5g54yfkrp6xpqzlpv4f8wh6hyw27yyg4z2els8a9gxpqhfhekt-rcpt',
|
|
282
|
+
exponent: 0
|
|
283
|
+
}],
|
|
284
|
+
name: 'YRUNE',
|
|
285
|
+
display: 'YRUNE',
|
|
286
|
+
symbol: 'YRUNE',
|
|
287
|
+
logo_URIs: {
|
|
288
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/yrune.png'
|
|
289
|
+
},
|
|
290
|
+
images: [{
|
|
291
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/yrune.png'
|
|
292
|
+
}],
|
|
293
|
+
keywords: [
|
|
294
|
+
'index',
|
|
295
|
+
'rujira',
|
|
296
|
+
'defi',
|
|
297
|
+
'nami'
|
|
298
|
+
],
|
|
299
|
+
socials: {
|
|
300
|
+
website: 'https://rujira.network/index',
|
|
301
|
+
discord: 'https://discord.gg/WGgUADfxXR',
|
|
302
|
+
telegram: 'https://t.me/NAMIProtocol',
|
|
303
|
+
twitter: 'https://x.com/Nami_Index_'
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
base: 'x/nami-index-nav-thor1h0hr0rm3dawkedh44hlrmgvya6plsryehcr46yda2vj0wfwgq5xqrs86px-rcpt',
|
|
308
|
+
type_asset: 'sdk.coin',
|
|
309
|
+
description: 'The Yield Bearing TCY Index (yTCY) is an auto-rebalancing index designed to track the performance of both RUNE and TCY, with a strategic overweight on TCY to maximize yield potential.',
|
|
310
|
+
denom_units: [{
|
|
311
|
+
denom: 'YTCY',
|
|
312
|
+
exponent: 8
|
|
313
|
+
}, {
|
|
314
|
+
denom: 'x/nami-index-nav-thor1h0hr0rm3dawkedh44hlrmgvya6plsryehcr46yda2vj0wfwgq5xqrs86px-rcpt',
|
|
315
|
+
exponent: 0
|
|
316
|
+
}],
|
|
317
|
+
name: 'YTCY',
|
|
318
|
+
display: 'YTCY',
|
|
319
|
+
symbol: 'YTCY',
|
|
320
|
+
logo_URIs: {
|
|
321
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/ytcy.png'
|
|
322
|
+
},
|
|
323
|
+
images: [{
|
|
324
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/ytcy.png'
|
|
325
|
+
}],
|
|
326
|
+
keywords: [
|
|
327
|
+
'index',
|
|
328
|
+
'rujira',
|
|
329
|
+
'defi',
|
|
330
|
+
'nami'
|
|
331
|
+
],
|
|
332
|
+
socials: {
|
|
333
|
+
website: 'https://rujira.network/index',
|
|
334
|
+
discord: 'https://discord.gg/WGgUADfxXR',
|
|
335
|
+
telegram: 'https://t.me/NAMIProtocol',
|
|
336
|
+
twitter: 'https://x.com/Nami_Index_'
|
|
337
|
+
}
|
|
272
338
|
}
|
|
273
339
|
]
|
|
274
340
|
};
|
package/mainnet/xpla/ibc.js
CHANGED
|
@@ -1,6 +1,36 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const info = [
|
|
3
|
+
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain_1: {
|
|
7
|
+
chain_name: 'axelar',
|
|
8
|
+
client_id: '07-tendermint-75',
|
|
9
|
+
connection_id: 'connection-62'
|
|
10
|
+
},
|
|
11
|
+
chain_2: {
|
|
12
|
+
chain_name: 'xpla',
|
|
13
|
+
client_id: '07-tendermint-0',
|
|
14
|
+
connection_id: 'connection-0'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain_1: {
|
|
18
|
+
channel_id: 'channel-49',
|
|
19
|
+
port_id: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain_2: {
|
|
22
|
+
channel_id: 'channel-0',
|
|
23
|
+
port_id: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
status: 'live',
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
4
34
|
$schema: '../ibc_data.schema.json',
|
|
5
35
|
chain_1: {
|
|
6
36
|
chain_name: 'injective',
|
|
@@ -28,7 +58,8 @@ const info = [{
|
|
|
28
58
|
preferred: true
|
|
29
59
|
}
|
|
30
60
|
}]
|
|
31
|
-
},
|
|
61
|
+
},
|
|
62
|
+
{
|
|
32
63
|
$schema: '../ibc_data.schema.json',
|
|
33
64
|
chain_1: {
|
|
34
65
|
chain_name: 'osmosis',
|
|
@@ -57,5 +88,6 @@ const info = [{
|
|
|
57
88
|
dex: 'osmosis'
|
|
58
89
|
}
|
|
59
90
|
}]
|
|
60
|
-
}
|
|
91
|
+
}
|
|
92
|
+
];
|
|
61
93
|
exports.default = info;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.307",
|
|
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,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^0.50.
|
|
32
|
+
"@chain-registry/types": "^0.50.193"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "7c190d9c31955090d8d264329fffca7518b95d54"
|
|
43
43
|
}
|
|
@@ -222,6 +222,30 @@ const info = {
|
|
|
222
222
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
223
223
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
224
224
|
}]
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
description: 'This tThe ultimate snack-based meme coin for loyal degens. Earn them, trade them, and feed your inner Shibe — no utility, just tasty vibes.',
|
|
228
|
+
extended_description: 'This tThe ultimate snack-based meme coin for loyal degens. Earn them, trade them, and feed your inner Shibe — no utility, just tasty vibes.',
|
|
229
|
+
denom_units: [{
|
|
230
|
+
denom: 'factory/mantra1uvn4qgh96lc83dzu8mpf3u93lk605ls0vg0nf2/TREATS',
|
|
231
|
+
exponent: 0,
|
|
232
|
+
aliases: []
|
|
233
|
+
}, {
|
|
234
|
+
denom: 'TREATS',
|
|
235
|
+
exponent: 18,
|
|
236
|
+
aliases: ['treats']
|
|
237
|
+
}],
|
|
238
|
+
base: 'factory/mantra1uvn4qgh96lc83dzu8mpf3u93lk605ls0vg0nf2/TREATS',
|
|
239
|
+
name: 'Shibe Inu Treats',
|
|
240
|
+
display: 'TREATS',
|
|
241
|
+
symbol: 'TREATS',
|
|
242
|
+
logo_URIs: {
|
|
243
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet2/images/treats.png'
|
|
244
|
+
},
|
|
245
|
+
images: [{
|
|
246
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet2/images/treats.png'
|
|
247
|
+
}],
|
|
248
|
+
type_asset: 'sdk.coin'
|
|
225
249
|
}
|
|
226
250
|
]
|
|
227
251
|
};
|