chain-registry 2.0.42 → 2.0.43
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/asset-lists.js +2 -0
- package/esm/mainnet/axelar/ibc-data.js +29 -0
- package/esm/mainnet/bandchain/chain.js +9 -9
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/paxi/asset-list.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/asset-list.js +31 -0
- package/esm/mainnet/thorchain/asset-list.js +66 -0
- package/esm/mainnet/xpla/ibc-data.js +35 -3
- package/esm/testnet/mantrachaintestnet2/asset-list.js +24 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/axelar/ibc-data.js +29 -0
- package/mainnet/bandchain/chain.js +9 -9
- package/mainnet/chains.js +2 -0
- package/mainnet/paxi/asset-list.d.ts +3 -0
- package/mainnet/paxi/asset-list.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/asset-list.js +31 -0
- package/mainnet/thorchain/asset-list.js +66 -0
- package/mainnet/xpla/ibc-data.js +35 -3
- package/package.json +3 -3
- package/testnet/mantrachaintestnet2/asset-list.js +24 -0
|
@@ -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 assetList = [
|
|
|
356
357
|
_paloma.assetList,
|
|
357
358
|
_panacea.assetList,
|
|
358
359
|
_passage.assetList,
|
|
360
|
+
_paxi.assetList,
|
|
359
361
|
_persistence.assetList,
|
|
360
362
|
_planq.assetList,
|
|
361
363
|
_pocket.assetList,
|
|
@@ -1466,6 +1466,35 @@ const info = [
|
|
|
1466
1466
|
preferred: true
|
|
1467
1467
|
}
|
|
1468
1468
|
}]
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
$schema: '../ibc_data.schema.json',
|
|
1472
|
+
chain1: {
|
|
1473
|
+
chainName: 'axelar',
|
|
1474
|
+
clientId: '07-tendermint-75',
|
|
1475
|
+
connectionId: 'connection-62'
|
|
1476
|
+
},
|
|
1477
|
+
chain2: {
|
|
1478
|
+
chainName: 'xpla',
|
|
1479
|
+
clientId: '07-tendermint-0',
|
|
1480
|
+
connectionId: 'connection-0'
|
|
1481
|
+
},
|
|
1482
|
+
channels: [{
|
|
1483
|
+
chain1: {
|
|
1484
|
+
channelId: 'channel-49',
|
|
1485
|
+
portId: 'transfer'
|
|
1486
|
+
},
|
|
1487
|
+
chain2: {
|
|
1488
|
+
channelId: 'channel-0',
|
|
1489
|
+
portId: '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
|
gitRepo: 'https://github.com/bandprotocol/chain',
|
|
34
|
-
recommendedVersion: '
|
|
35
|
-
compatibleVersions: [
|
|
36
|
-
'v2.5.2',
|
|
37
|
-
'v2.5.3',
|
|
38
|
-
'v2.5.4'
|
|
39
|
-
],
|
|
34
|
+
recommendedVersion: 'v3.1.0',
|
|
35
|
+
compatibleVersions: ['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
|
genesisUrl: '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
|
logoURIs: {
|
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,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'paxi',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'PAXI is the native token of the Paxi blockchain.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'upaxi',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'PAXI',
|
|
11
|
+
exponent: 6
|
|
12
|
+
}],
|
|
13
|
+
typeAsset: '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
|
+
chainName: 'paxi',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://paxinet.io',
|
|
6
|
+
networkType: 'mainnet',
|
|
7
|
+
chainType: 'cosmos',
|
|
8
|
+
prettyName: 'Paxi',
|
|
9
|
+
chainId: 'paxi-mainnet',
|
|
10
|
+
bech32Prefix: 'paxi',
|
|
11
|
+
daemonName: 'paxid',
|
|
12
|
+
nodeHome: '$HOME/.paxi',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'upaxi',
|
|
18
|
+
fixedMinGasPrice: 0.05,
|
|
19
|
+
lowGasPrice: 0.05,
|
|
20
|
+
averageGasPrice: 0.1,
|
|
21
|
+
highGasPrice: 0.25
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'upaxi'
|
|
27
|
+
}],
|
|
28
|
+
lockDuration: {
|
|
29
|
+
time: '604800s'
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
codebase: {
|
|
33
|
+
gitRepo: 'https://github.com/paxi-web3/paxi',
|
|
34
|
+
genesis: {
|
|
35
|
+
name: 'paxi-mainnet',
|
|
36
|
+
genesisUrl: '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
|
+
txPage: 'https://explorer.paxinet.io/tx/${txHash}',
|
|
63
|
+
accountPage: '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
|
txPage: 'https://risescan.sunriselayer.io/txs/${txHash}',
|
|
83
98
|
accountPage: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
|
|
84
|
-
},
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
kind: 'MekongLabs Explorer',
|
|
102
|
+
url: 'https://explorer.mekonglabs.tech/sunrise/staking',
|
|
103
|
+
txPage: 'https://explorer.mekonglabs.tech/sunrise/tx/${txHash}',
|
|
104
|
+
accountPage: 'https://explorer.mekonglabs.tech/sunrise/account/${accountAddress}'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
85
107
|
kind: 'Explorer.ist',
|
|
86
108
|
url: 'https://explorer.ist/sunrise',
|
|
87
109
|
txPage: 'https://explorer.ist/sunrise/tx/${txHash}',
|
|
88
110
|
accountPage: '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
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
+
typeAsset: 'sdk.coin',
|
|
1427
|
+
traces: [{
|
|
1428
|
+
type: 'liquid-stake',
|
|
1429
|
+
counterparty: {
|
|
1430
|
+
chainName: 'terra2',
|
|
1431
|
+
baseDenom: '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
|
+
typeAsset: '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
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
+
typeAsset: '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
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
};
|
|
@@ -1,4 +1,34 @@
|
|
|
1
|
-
const info = [
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'axelar',
|
|
6
|
+
clientId: '07-tendermint-75',
|
|
7
|
+
connectionId: 'connection-62'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'xpla',
|
|
11
|
+
clientId: '07-tendermint-0',
|
|
12
|
+
connectionId: 'connection-0'
|
|
13
|
+
},
|
|
14
|
+
channels: [{
|
|
15
|
+
chain1: {
|
|
16
|
+
channelId: 'channel-49',
|
|
17
|
+
portId: 'transfer'
|
|
18
|
+
},
|
|
19
|
+
chain2: {
|
|
20
|
+
channelId: 'channel-0',
|
|
21
|
+
portId: '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
|
chain1: {
|
|
4
34
|
chainName: '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
|
chain1: {
|
|
32
63
|
chainName: '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
|
+
extendedDescription: '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
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
+
typeAsset: 'sdk.coin'
|
|
223
247
|
}
|
|
224
248
|
]
|
|
225
249
|
};
|
package/mainnet/asset-lists.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 assetList = [
|
|
|
381
382
|
_paloma.assetList,
|
|
382
383
|
_panacea.assetList,
|
|
383
384
|
_passage.assetList,
|
|
385
|
+
_paxi.assetList,
|
|
384
386
|
_persistence.assetList,
|
|
385
387
|
_planq.assetList,
|
|
386
388
|
_pocket.assetList,
|
|
@@ -1468,6 +1468,35 @@ const info = [
|
|
|
1468
1468
|
preferred: true
|
|
1469
1469
|
}
|
|
1470
1470
|
}]
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
$schema: '../ibc_data.schema.json',
|
|
1474
|
+
chain1: {
|
|
1475
|
+
chainName: 'axelar',
|
|
1476
|
+
clientId: '07-tendermint-75',
|
|
1477
|
+
connectionId: 'connection-62'
|
|
1478
|
+
},
|
|
1479
|
+
chain2: {
|
|
1480
|
+
chainName: 'xpla',
|
|
1481
|
+
clientId: '07-tendermint-0',
|
|
1482
|
+
connectionId: 'connection-0'
|
|
1483
|
+
},
|
|
1484
|
+
channels: [{
|
|
1485
|
+
chain1: {
|
|
1486
|
+
channelId: 'channel-49',
|
|
1487
|
+
portId: 'transfer'
|
|
1488
|
+
},
|
|
1489
|
+
chain2: {
|
|
1490
|
+
channelId: 'channel-0',
|
|
1491
|
+
portId: '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
|
gitRepo: 'https://github.com/bandprotocol/chain',
|
|
36
|
-
recommendedVersion: '
|
|
37
|
-
compatibleVersions: [
|
|
38
|
-
'v2.5.2',
|
|
39
|
-
'v2.5.3',
|
|
40
|
-
'v2.5.4'
|
|
41
|
-
],
|
|
36
|
+
recommendedVersion: 'v3.1.0',
|
|
37
|
+
compatibleVersions: ['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
|
genesisUrl: '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
|
logoURIs: {
|
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,
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'paxi',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'PAXI is the native token of the Paxi blockchain.',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'upaxi',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'PAXI',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
typeAsset: '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
|
+
chainName: 'paxi',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://paxinet.io',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
prettyName: 'Paxi',
|
|
11
|
+
chainId: 'paxi-mainnet',
|
|
12
|
+
bech32Prefix: 'paxi',
|
|
13
|
+
daemonName: 'paxid',
|
|
14
|
+
nodeHome: '$HOME/.paxi',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'upaxi',
|
|
20
|
+
fixedMinGasPrice: 0.05,
|
|
21
|
+
lowGasPrice: 0.05,
|
|
22
|
+
averageGasPrice: 0.1,
|
|
23
|
+
highGasPrice: 0.25
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'upaxi'
|
|
29
|
+
}],
|
|
30
|
+
lockDuration: {
|
|
31
|
+
time: '604800s'
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
codebase: {
|
|
35
|
+
gitRepo: 'https://github.com/paxi-web3/paxi',
|
|
36
|
+
genesis: {
|
|
37
|
+
name: 'paxi-mainnet',
|
|
38
|
+
genesisUrl: '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
|
+
txPage: 'https://explorer.paxinet.io/tx/${txHash}',
|
|
65
|
+
accountPage: '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.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assetList = asset_list_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
|
txPage: 'https://risescan.sunriselayer.io/txs/${txHash}',
|
|
85
100
|
accountPage: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
|
|
86
|
-
},
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
kind: 'MekongLabs Explorer',
|
|
104
|
+
url: 'https://explorer.mekonglabs.tech/sunrise/staking',
|
|
105
|
+
txPage: 'https://explorer.mekonglabs.tech/sunrise/tx/${txHash}',
|
|
106
|
+
accountPage: 'https://explorer.mekonglabs.tech/sunrise/account/${accountAddress}'
|
|
107
|
+
},
|
|
108
|
+
{
|
|
87
109
|
kind: 'Explorer.ist',
|
|
88
110
|
url: 'https://explorer.ist/sunrise',
|
|
89
111
|
txPage: 'https://explorer.ist/sunrise/tx/${txHash}',
|
|
90
112
|
accountPage: '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'
|
|
@@ -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
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
+
typeAsset: 'sdk.coin',
|
|
1429
|
+
traces: [{
|
|
1430
|
+
type: 'liquid-stake',
|
|
1431
|
+
counterparty: {
|
|
1432
|
+
chainName: 'terra2',
|
|
1433
|
+
baseDenom: '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
|
+
typeAsset: '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
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
+
typeAsset: '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
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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-data.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
|
+
chain1: {
|
|
7
|
+
chainName: 'axelar',
|
|
8
|
+
clientId: '07-tendermint-75',
|
|
9
|
+
connectionId: 'connection-62'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'xpla',
|
|
13
|
+
clientId: '07-tendermint-0',
|
|
14
|
+
connectionId: 'connection-0'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain1: {
|
|
18
|
+
channelId: 'channel-49',
|
|
19
|
+
portId: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain2: {
|
|
22
|
+
channelId: 'channel-0',
|
|
23
|
+
portId: '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
|
chain1: {
|
|
6
36
|
chainName: '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
|
chain1: {
|
|
34
65
|
chainName: '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": "2.0.
|
|
3
|
+
"version": "2.0.43",
|
|
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": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.43"
|
|
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": "2a6ae629bb4cd3fa00ce91e2373582fc92849b9e"
|
|
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
|
+
extendedDescription: '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
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
+
typeAsset: 'sdk.coin'
|
|
225
249
|
}
|
|
226
250
|
]
|
|
227
251
|
};
|