chain-registry 2.0.41 → 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/conscious/asset-list.js +0 -1
- package/esm/mainnet/cosmoshub/ibc-data.js +29 -0
- package/esm/mainnet/dymension/asset-list.js +1 -2
- package/esm/mainnet/ethereum/asset-list.js +0 -1
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/lambda/asset-list.js +0 -1
- package/esm/mainnet/mande/asset-list.js +0 -1
- package/esm/mainnet/noble/ibc-data.js +29 -0
- package/esm/mainnet/odin/asset-list.js +0 -1
- package/esm/mainnet/onomy/asset-list.js +0 -1
- package/esm/mainnet/osmosis/asset-list.js +708 -3144
- 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/rebus/asset-list.js +0 -1
- package/esm/mainnet/scorum/asset-list.js +0 -1
- package/esm/mainnet/sge/asset-list.js +0 -1
- package/esm/mainnet/starname/asset-list.js +0 -1
- package/esm/mainnet/stride/asset-list.js +0 -1
- package/esm/mainnet/sunrise/chain.js +32 -9
- package/esm/mainnet/sunrise/ibc-data.js +58 -0
- package/esm/mainnet/sunrise/index.js +2 -0
- 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/noncosmos/0l/asset-list.js +0 -1
- 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/conscious/asset-list.js +0 -1
- package/mainnet/cosmoshub/ibc-data.js +29 -0
- package/mainnet/dymension/asset-list.js +1 -2
- package/mainnet/ethereum/asset-list.js +0 -1
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/lambda/asset-list.js +0 -1
- package/mainnet/mande/asset-list.js +0 -1
- package/mainnet/noble/ibc-data.js +29 -0
- package/mainnet/odin/asset-list.js +0 -1
- package/mainnet/onomy/asset-list.js +0 -1
- package/mainnet/osmosis/asset-list.js +708 -3144
- 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/rebus/asset-list.js +0 -1
- package/mainnet/scorum/asset-list.js +0 -1
- package/mainnet/sge/asset-list.js +0 -1
- package/mainnet/starname/asset-list.js +0 -1
- package/mainnet/stride/asset-list.js +0 -1
- package/mainnet/sunrise/chain.js +32 -9
- package/mainnet/sunrise/ibc-data.d.ts +3 -0
- package/mainnet/sunrise/ibc-data.js +60 -0
- package/mainnet/sunrise/index.d.ts +1 -0
- package/mainnet/sunrise/index.js +3 -1
- 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/noncosmos/0l/asset-list.js +0 -1
- package/package.json +3 -3
- package/testnet/mantrachaintestnet2/asset-list.js +24 -0
|
@@ -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;
|
|
@@ -18,7 +18,6 @@ const info = {
|
|
|
18
18
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png',
|
|
19
19
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg'
|
|
20
20
|
},
|
|
21
|
-
coingeckoId: 'rebus',
|
|
22
21
|
images: [{
|
|
23
22
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png',
|
|
24
23
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg'
|
|
@@ -19,7 +19,6 @@ const info = {
|
|
|
19
19
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png',
|
|
20
20
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg'
|
|
21
21
|
},
|
|
22
|
-
coingeckoId: 'scorum',
|
|
23
22
|
images: [{
|
|
24
23
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png',
|
|
25
24
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg'
|
|
@@ -19,7 +19,6 @@ const info = {
|
|
|
19
19
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png',
|
|
20
20
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg'
|
|
21
21
|
},
|
|
22
|
-
coingeckoId: 'six-sigma',
|
|
23
22
|
images: [{
|
|
24
23
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png',
|
|
25
24
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg',
|
|
@@ -18,7 +18,6 @@ const info = {
|
|
|
18
18
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png',
|
|
19
19
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg'
|
|
20
20
|
},
|
|
21
|
-
coingeckoId: 'starname',
|
|
22
21
|
images: [{
|
|
23
22
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png',
|
|
24
23
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg'
|
|
@@ -423,7 +423,6 @@ const info = {
|
|
|
423
423
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png',
|
|
424
424
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg'
|
|
425
425
|
},
|
|
426
|
-
coingeckoId: 'stride-staked-sommelier',
|
|
427
426
|
images: [{
|
|
428
427
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png',
|
|
429
428
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg'
|
|
@@ -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'
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'cosmoshub',
|
|
5
|
+
clientId: '07-tendermint-1430',
|
|
6
|
+
connectionId: 'connection-1148'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'sunrise',
|
|
10
|
+
clientId: '07-tendermint-7',
|
|
11
|
+
connectionId: 'connection-2'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-1421',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-1',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}, {
|
|
30
|
+
$schema: '../ibc_data.schema.json',
|
|
31
|
+
chain1: {
|
|
32
|
+
chainName: 'noble',
|
|
33
|
+
clientId: '07-tendermint-180',
|
|
34
|
+
connectionId: 'connection-174'
|
|
35
|
+
},
|
|
36
|
+
chain2: {
|
|
37
|
+
chainName: 'sunrise',
|
|
38
|
+
clientId: '07-tendermint-2',
|
|
39
|
+
connectionId: 'connection-0'
|
|
40
|
+
},
|
|
41
|
+
channels: [{
|
|
42
|
+
chain1: {
|
|
43
|
+
channelId: 'channel-168',
|
|
44
|
+
portId: 'transfer'
|
|
45
|
+
},
|
|
46
|
+
chain2: {
|
|
47
|
+
channelId: 'channel-0',
|
|
48
|
+
portId: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
ordering: 'unordered',
|
|
51
|
+
version: 'ics20-1',
|
|
52
|
+
tags: {
|
|
53
|
+
status: 'live',
|
|
54
|
+
preferred: true
|
|
55
|
+
}
|
|
56
|
+
}]
|
|
57
|
+
}];
|
|
58
|
+
export default info;
|
|
@@ -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;
|
|
@@ -24,7 +24,6 @@ const info = {
|
|
|
24
24
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png',
|
|
25
25
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg'
|
|
26
26
|
}],
|
|
27
|
-
coingeckoId: 'libra-3',
|
|
28
27
|
socials: {
|
|
29
28
|
website: 'https://0l.network/',
|
|
30
29
|
twitter: 'https://twitter.com/0LNetwork'
|
|
@@ -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,
|
|
@@ -21,7 +21,6 @@ const info = {
|
|
|
21
21
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png',
|
|
22
22
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg'
|
|
23
23
|
},
|
|
24
|
-
coingeckoId: 'consciousdao',
|
|
25
24
|
images: [{
|
|
26
25
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png',
|
|
27
26
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg'
|
|
@@ -1985,6 +1985,35 @@ const info = [
|
|
|
1985
1985
|
}
|
|
1986
1986
|
}]
|
|
1987
1987
|
},
|
|
1988
|
+
{
|
|
1989
|
+
$schema: '../ibc_data.schema.json',
|
|
1990
|
+
chain1: {
|
|
1991
|
+
chainName: 'cosmoshub',
|
|
1992
|
+
clientId: '07-tendermint-1430',
|
|
1993
|
+
connectionId: 'connection-1148'
|
|
1994
|
+
},
|
|
1995
|
+
chain2: {
|
|
1996
|
+
chainName: 'sunrise',
|
|
1997
|
+
clientId: '07-tendermint-7',
|
|
1998
|
+
connectionId: 'connection-2'
|
|
1999
|
+
},
|
|
2000
|
+
channels: [{
|
|
2001
|
+
chain1: {
|
|
2002
|
+
channelId: 'channel-1421',
|
|
2003
|
+
portId: 'transfer'
|
|
2004
|
+
},
|
|
2005
|
+
chain2: {
|
|
2006
|
+
channelId: 'channel-1',
|
|
2007
|
+
portId: 'transfer'
|
|
2008
|
+
},
|
|
2009
|
+
ordering: 'unordered',
|
|
2010
|
+
version: 'ics20-1',
|
|
2011
|
+
tags: {
|
|
2012
|
+
status: 'live',
|
|
2013
|
+
preferred: true
|
|
2014
|
+
}
|
|
2015
|
+
}]
|
|
2016
|
+
},
|
|
1988
2017
|
{
|
|
1989
2018
|
$schema: '../ibc_data.schema.json',
|
|
1990
2019
|
chain1: {
|
|
@@ -123,8 +123,7 @@ const info = {
|
|
|
123
123
|
logoURIs: {
|
|
124
124
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png',
|
|
125
125
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg'
|
|
126
|
-
}
|
|
127
|
-
coingeckoId: 'mande-network'
|
|
126
|
+
}
|
|
128
127
|
}
|
|
129
128
|
]
|
|
130
129
|
};
|