chain-registry 2.0.7 → 2.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/mainnet/akash/ibc-data.js +30 -0
- package/esm/mainnet/asset-lists.js +2 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/ethereum/asset-list.js +12 -1
- package/esm/mainnet/lumera/chain.js +21 -4
- package/esm/mainnet/namada/asset-list.js +7 -1
- package/esm/mainnet/osmosis/asset-list.js +46 -4
- package/esm/mainnet/qubetics/asset-list.js +33 -0
- package/esm/mainnet/qubetics/chain.js +88 -0
- package/esm/mainnet/qubetics/index.js +4 -0
- package/esm/mainnet/stargaze/ibc-data.js +30 -0
- package/esm/mainnet/stratos/asset-list.js +1 -1
- package/mainnet/akash/ibc-data.js +30 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/ethereum/asset-list.js +12 -1
- package/mainnet/lumera/chain.js +21 -4
- package/mainnet/namada/asset-list.js +7 -1
- package/mainnet/osmosis/asset-list.js +46 -4
- package/mainnet/qubetics/asset-list.d.ts +3 -0
- package/mainnet/qubetics/asset-list.js +35 -0
- package/mainnet/qubetics/chain.d.ts +3 -0
- package/mainnet/qubetics/chain.js +90 -0
- package/mainnet/qubetics/index.d.ts +2 -0
- package/mainnet/qubetics/index.js +10 -0
- package/mainnet/stargaze/ibc-data.js +30 -0
- package/mainnet/stratos/asset-list.js +1 -1
- package/package.json +3 -3
|
@@ -442,6 +442,36 @@ const info = [
|
|
|
442
442
|
tags: {}
|
|
443
443
|
}]
|
|
444
444
|
},
|
|
445
|
+
{
|
|
446
|
+
$schema: '../ibc_data.schema.json',
|
|
447
|
+
chain1: {
|
|
448
|
+
chainName: 'akash',
|
|
449
|
+
clientId: '07-tendermint-192',
|
|
450
|
+
connectionId: 'connection-178'
|
|
451
|
+
},
|
|
452
|
+
chain2: {
|
|
453
|
+
chainName: 'stargaze',
|
|
454
|
+
clientId: '07-tendermint-379',
|
|
455
|
+
connectionId: 'connection-336'
|
|
456
|
+
},
|
|
457
|
+
channels: [{
|
|
458
|
+
chain1: {
|
|
459
|
+
channelId: 'channel-130',
|
|
460
|
+
portId: 'transfer'
|
|
461
|
+
},
|
|
462
|
+
chain2: {
|
|
463
|
+
channelId: 'channel-447',
|
|
464
|
+
portId: 'transfer'
|
|
465
|
+
},
|
|
466
|
+
ordering: 'unordered',
|
|
467
|
+
version: 'ics20-1',
|
|
468
|
+
tags: {
|
|
469
|
+
status: 'live',
|
|
470
|
+
preferred: true,
|
|
471
|
+
dex: 'osmosis'
|
|
472
|
+
}
|
|
473
|
+
}]
|
|
474
|
+
},
|
|
445
475
|
{
|
|
446
476
|
$schema: '../ibc_data.schema.json',
|
|
447
477
|
chain1: {
|
|
@@ -153,6 +153,7 @@ import * as _pundix from './pundix';
|
|
|
153
153
|
import * as _pylons from './pylons';
|
|
154
154
|
import * as _qfs from './qfs';
|
|
155
155
|
import * as _quasar from './quasar';
|
|
156
|
+
import * as _qubetics from './qubetics';
|
|
156
157
|
import * as _quicksilver from './quicksilver';
|
|
157
158
|
import * as _qwoyn from './qwoyn';
|
|
158
159
|
import * as _realio from './realio';
|
|
@@ -359,6 +360,7 @@ const assetList = [
|
|
|
359
360
|
_pylons.assetList,
|
|
360
361
|
_qfs.assetList,
|
|
361
362
|
_quasar.assetList,
|
|
363
|
+
_qubetics.assetList,
|
|
362
364
|
_quicksilver.assetList,
|
|
363
365
|
_qwoyn.assetList,
|
|
364
366
|
_realio.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -153,6 +153,7 @@ import * as _pundix from './pundix';
|
|
|
153
153
|
import * as _pylons from './pylons';
|
|
154
154
|
import * as _qfs from './qfs';
|
|
155
155
|
import * as _quasar from './quasar';
|
|
156
|
+
import * as _qubetics from './qubetics';
|
|
156
157
|
import * as _quicksilver from './quicksilver';
|
|
157
158
|
import * as _qwoyn from './qwoyn';
|
|
158
159
|
import * as _realio from './realio';
|
|
@@ -359,6 +360,7 @@ const chains = [
|
|
|
359
360
|
_pylons.chain,
|
|
360
361
|
_qfs.chain,
|
|
361
362
|
_quasar.chain,
|
|
363
|
+
_qubetics.chain,
|
|
362
364
|
_quicksilver.chain,
|
|
363
365
|
_qwoyn.chain,
|
|
364
366
|
_realio.chain,
|
|
@@ -1826,9 +1826,20 @@ const info = {
|
|
|
1826
1826
|
exponent: 8
|
|
1827
1827
|
}],
|
|
1828
1828
|
base: '0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a',
|
|
1829
|
-
name: '
|
|
1829
|
+
name: 'lorenzo Wrapped Bitcoin',
|
|
1830
1830
|
display: 'enzobtc',
|
|
1831
1831
|
symbol: 'enzoBTC',
|
|
1832
|
+
traces: [{
|
|
1833
|
+
type: 'bridge',
|
|
1834
|
+
counterparty: {
|
|
1835
|
+
chainName: 'bitcoin',
|
|
1836
|
+
baseDenom: 'sat'
|
|
1837
|
+
},
|
|
1838
|
+
provider: 'Lorenzo Protocol'
|
|
1839
|
+
}],
|
|
1840
|
+
images: [{
|
|
1841
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lorenzo-wrapped-bitcoin.png'
|
|
1842
|
+
}],
|
|
1832
1843
|
coingeckoId: 'lorenzo-wrapped-bitcoin'
|
|
1833
1844
|
},
|
|
1834
1845
|
{
|
|
@@ -6,7 +6,7 @@ const info = {
|
|
|
6
6
|
prettyName: 'Lumera',
|
|
7
7
|
website: 'https://lumera.protocol',
|
|
8
8
|
networkType: 'mainnet',
|
|
9
|
-
status: '
|
|
9
|
+
status: 'live',
|
|
10
10
|
bech32Prefix: 'lumera',
|
|
11
11
|
bech32Config: {
|
|
12
12
|
bech32PrefixAccAddr: 'lumera',
|
|
@@ -36,12 +36,15 @@ const info = {
|
|
|
36
36
|
},
|
|
37
37
|
codebase: {
|
|
38
38
|
gitRepo: 'https://github.com/LumeraProtocol/lumera',
|
|
39
|
-
tag: 'v1.
|
|
40
|
-
recommendedVersion: 'v1.
|
|
39
|
+
tag: 'v1.5.0',
|
|
40
|
+
recommendedVersion: 'v1.5.0',
|
|
41
41
|
language: {
|
|
42
42
|
type: 'go',
|
|
43
43
|
version: 'v1.24'
|
|
44
44
|
},
|
|
45
|
+
binaries: {
|
|
46
|
+
"linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v1.5.0/lumera_v1.5.0_linux_amd64.tar.gz?checksum=sha256:3d33c600ad35b94c72acf4ce81247f6171b79169f5b84a6e415df1ec30d690dc'
|
|
47
|
+
},
|
|
45
48
|
sdk: {
|
|
46
49
|
type: 'cosmos',
|
|
47
50
|
version: 'v0.50.13'
|
|
@@ -59,9 +62,23 @@ const info = {
|
|
|
59
62
|
version: 'v8.5.1'
|
|
60
63
|
},
|
|
61
64
|
genesis: {
|
|
62
|
-
genesisUrl: 'https://
|
|
65
|
+
genesisUrl: 'https://raw.githubusercontent.com/LumeraProtocol/lumera-networks/refs/heads/master/mainnet/genesis.json'
|
|
63
66
|
}
|
|
64
67
|
},
|
|
68
|
+
apis: {
|
|
69
|
+
rpc: [{
|
|
70
|
+
address: 'https://rpc.lumera.io:443',
|
|
71
|
+
provider: 'LumeraProtocol'
|
|
72
|
+
}],
|
|
73
|
+
rest: [{
|
|
74
|
+
address: 'https://lcd.lumera.io:443',
|
|
75
|
+
provider: 'LumeraProtocol'
|
|
76
|
+
}],
|
|
77
|
+
grpc: [{
|
|
78
|
+
address: 'https://grpc.lumera.io:443',
|
|
79
|
+
provider: 'LumeraProtocol'
|
|
80
|
+
}]
|
|
81
|
+
},
|
|
65
82
|
explorers: [{
|
|
66
83
|
kind: 'ping.pub',
|
|
67
84
|
url: 'https://portal.lumera.io/lumera-mainnet-1/',
|
|
@@ -4,6 +4,7 @@ const info = {
|
|
|
4
4
|
assets: [
|
|
5
5
|
{
|
|
6
6
|
description: 'The native token of Namada.',
|
|
7
|
+
extendedDescription: 'Namada is the Composable Privacy Layer of the Multichain. It is a proof-of-stake layer-1 blockchain that protects users’ personal data by providing a shielded asset hub and enabling shielded cross-chain transactions. Namada is capable of supporting any asset and can be used to retrofit data protection to existing chains, dapps, tokens, and NFTs.\nPrimarily built in Rust, Namada uses CometBFT consensus and the IBC (Inter-Blockchain Communication) protocol for multichain interoperability, but can be upgraded to support additional ecosystems beyond IBC. By leveraging advanced cryptographic standards like zk-SNARKs and its potential for interoperability, Namada positions itself as a useful cryptographic primitive for users to protect their on-chain data while interoperating with a wide variety of other blockchains and protocols.',
|
|
7
8
|
denomUnits: [{
|
|
8
9
|
denom: 'unam',
|
|
9
10
|
exponent: 0
|
|
@@ -19,7 +20,12 @@ const info = {
|
|
|
19
20
|
address: 'tnam1q9gr66cvu4hrzm0sd5kmlnjje82gs3xlfg3v6nu7',
|
|
20
21
|
logoURIs: {
|
|
21
22
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/namada/images/namada.svg'
|
|
22
|
-
}
|
|
23
|
+
},
|
|
24
|
+
socials: {
|
|
25
|
+
website: 'https://namada.net/',
|
|
26
|
+
twitter: 'https://x.com/namada'
|
|
27
|
+
},
|
|
28
|
+
coingeckoId: 'namada'
|
|
23
29
|
},
|
|
24
30
|
{
|
|
25
31
|
description: 'Stride\'s liquid staked OSMO',
|
|
@@ -20225,7 +20225,7 @@ const info = {
|
|
|
20225
20225
|
}]
|
|
20226
20226
|
},
|
|
20227
20227
|
{
|
|
20228
|
-
description: 'STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0
|
|
20228
|
+
description: 'STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developers and dApps through our scalable, reliable, and high-performance networks.',
|
|
20229
20229
|
denomUnits: [
|
|
20230
20230
|
{
|
|
20231
20231
|
denom: 'ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C',
|
|
@@ -20601,7 +20601,7 @@ const info = {
|
|
|
20601
20601
|
}]
|
|
20602
20602
|
},
|
|
20603
20603
|
{
|
|
20604
|
-
description: 'Native LTC from
|
|
20604
|
+
description: 'Native LTC from Litecoin blockchain bridged via Int3face bridge',
|
|
20605
20605
|
denomUnits: [{
|
|
20606
20606
|
denom: 'ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46',
|
|
20607
20607
|
exponent: 0,
|
|
@@ -24067,7 +24067,7 @@ const info = {
|
|
|
24067
24067
|
},
|
|
24068
24068
|
{
|
|
24069
24069
|
description: 'ashLAB - Burned LAB',
|
|
24070
|
-
extendedDescription: 'ashLAB - receipt token
|
|
24070
|
+
extendedDescription: 'ashLAB - receipt token received when burning LAB via ASH DAOs Furnace',
|
|
24071
24071
|
denomUnits: [{
|
|
24072
24072
|
denom: 'factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash',
|
|
24073
24073
|
exponent: 0
|
|
@@ -24164,7 +24164,7 @@ const info = {
|
|
|
24164
24164
|
},
|
|
24165
24165
|
{
|
|
24166
24166
|
description: 'ashION - Burned ION',
|
|
24167
|
-
extendedDescription: 'ashION - receipt token
|
|
24167
|
+
extendedDescription: 'ashION - receipt token received when burning ION via ASH DAOs Furnace',
|
|
24168
24168
|
denomUnits: [{
|
|
24169
24169
|
denom: 'factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/ion.ash',
|
|
24170
24170
|
exponent: 0
|
|
@@ -24865,7 +24865,49 @@ const info = {
|
|
|
24865
24865
|
logoURIs: {
|
|
24866
24866
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.atom.svg',
|
|
24867
24867
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.atom.png'
|
|
24868
|
+
},
|
|
24869
|
+
socials: {
|
|
24870
|
+
website: 'https://www.paxos.com/pax-gold',
|
|
24871
|
+
twitter: 'https://x.com/Paxos'
|
|
24868
24872
|
}
|
|
24873
|
+
},
|
|
24874
|
+
{
|
|
24875
|
+
description: 'The native token of Namada.',
|
|
24876
|
+
denomUnits: [{
|
|
24877
|
+
denom: 'ibc/C7110DEC66869DAE9BE9C3C60F4B5313B16A2204AE020C3B0527DD6B322386A3',
|
|
24878
|
+
exponent: 0,
|
|
24879
|
+
aliases: ['unam']
|
|
24880
|
+
}, {
|
|
24881
|
+
denom: 'nam',
|
|
24882
|
+
exponent: 6
|
|
24883
|
+
}],
|
|
24884
|
+
typeAsset: 'ics20',
|
|
24885
|
+
base: 'ibc/C7110DEC66869DAE9BE9C3C60F4B5313B16A2204AE020C3B0527DD6B322386A3',
|
|
24886
|
+
name: 'Namada',
|
|
24887
|
+
display: 'nam',
|
|
24888
|
+
symbol: 'NAM',
|
|
24889
|
+
traces: [{
|
|
24890
|
+
type: 'ibc',
|
|
24891
|
+
counterparty: {
|
|
24892
|
+
chainName: 'namada',
|
|
24893
|
+
baseDenom: 'unam',
|
|
24894
|
+
channelId: 'channel-1'
|
|
24895
|
+
},
|
|
24896
|
+
chain: {
|
|
24897
|
+
channelId: 'channel-98451',
|
|
24898
|
+
path: 'transfer/channel-98451/tnam1q9gr66cvu4hrzm0sd5kmlnjje82gs3xlfg3v6nu7'
|
|
24899
|
+
}
|
|
24900
|
+
}],
|
|
24901
|
+
logoURIs: {
|
|
24902
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/namada/images/namada.svg'
|
|
24903
|
+
},
|
|
24904
|
+
images: [{
|
|
24905
|
+
imageSync: {
|
|
24906
|
+
chainName: 'namada',
|
|
24907
|
+
baseDenom: 'unam'
|
|
24908
|
+
},
|
|
24909
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/namada/images/namada.svg'
|
|
24910
|
+
}]
|
|
24869
24911
|
}
|
|
24870
24912
|
]
|
|
24871
24913
|
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'qubetics',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The EVM, governance and staking token of the qubetics Chain',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'tics',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'TICS',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
base: 'tics',
|
|
14
|
+
name: 'Qubetics Mainnet',
|
|
15
|
+
display: 'TICS',
|
|
16
|
+
symbol: 'TICS',
|
|
17
|
+
logoURIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png'
|
|
19
|
+
},
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png',
|
|
22
|
+
theme: {
|
|
23
|
+
primaryColorHex: '#046ffc'
|
|
24
|
+
}
|
|
25
|
+
}],
|
|
26
|
+
socials: {
|
|
27
|
+
website: 'https://www.qubetics.com/',
|
|
28
|
+
twitter: 'https://x.com/qubetics'
|
|
29
|
+
},
|
|
30
|
+
typeAsset: 'sdk.coin'
|
|
31
|
+
}]
|
|
32
|
+
};
|
|
33
|
+
export default info;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'qubetics',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
website: 'https://www.qubetics.com/',
|
|
7
|
+
prettyName: 'Qubetics',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'qubetics_9030-1',
|
|
10
|
+
bech32Prefix: 'qubetics',
|
|
11
|
+
nodeHome: '$HOME/.qubeticsd',
|
|
12
|
+
daemonName: 'qubeticsd',
|
|
13
|
+
keyAlgos: ['ethsecp256k1'],
|
|
14
|
+
extraCodecs: ['ethermint'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'tics',
|
|
19
|
+
fixedMinGasPrice: 250000000,
|
|
20
|
+
lowGasPrice: 20000000000,
|
|
21
|
+
averageGasPrice: 25000000000,
|
|
22
|
+
highGasPrice: 40000000000
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'tics'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
gitRepo: 'https://github.com/Qubetics/qubetics-chain',
|
|
32
|
+
recommendedVersion: 'v1.0.0',
|
|
33
|
+
compatibleVersions: ['v1.0.0'],
|
|
34
|
+
consensus: {
|
|
35
|
+
type: 'cometbft',
|
|
36
|
+
version: 'v0.37.9'
|
|
37
|
+
},
|
|
38
|
+
binaries: {
|
|
39
|
+
"linux/amd64": 'https://github.com/Qubetics/qubetics-mainnetnode-script/tree/main/ubuntu22.04build/qubeticsd'
|
|
40
|
+
},
|
|
41
|
+
genesis: {
|
|
42
|
+
genesisUrl: 'https://github.com/Qubetics/qubetics-mainnetnode-script/blob/main/genesis.json'
|
|
43
|
+
},
|
|
44
|
+
sdk: {
|
|
45
|
+
type: 'cosmos',
|
|
46
|
+
version: 'v0.47.12'
|
|
47
|
+
},
|
|
48
|
+
ibc: {
|
|
49
|
+
type: 'go',
|
|
50
|
+
version: 'v7.6.0'
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
logoURIs: {
|
|
54
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png'
|
|
55
|
+
},
|
|
56
|
+
description: 'Developers use qubetics as the Ethereum Chain to deploy applications of the future. Get all the functionalities of Ethereum with the power of IBC and Interchain composability.',
|
|
57
|
+
apis: {
|
|
58
|
+
rpc: [{
|
|
59
|
+
address: 'https://tendermint.qubetics.com',
|
|
60
|
+
provider: 'Qubetics'
|
|
61
|
+
}],
|
|
62
|
+
rest: [{
|
|
63
|
+
address: 'https://swagger.qubetics.com',
|
|
64
|
+
provider: 'Qubetics'
|
|
65
|
+
}],
|
|
66
|
+
grpc: [{
|
|
67
|
+
address: 'https://grpc.qubetics.com',
|
|
68
|
+
provider: 'Qubetics'
|
|
69
|
+
}],
|
|
70
|
+
evmHttpJsonrpc: [{
|
|
71
|
+
address: 'https://rpc.qubetics.com',
|
|
72
|
+
provider: 'Qubetics'
|
|
73
|
+
}]
|
|
74
|
+
},
|
|
75
|
+
explorers: [{
|
|
76
|
+
kind: 'qubetics',
|
|
77
|
+
url: 'https://ticsscan.com',
|
|
78
|
+
txPage: 'https://ticsscan.com/tx/${txHash}',
|
|
79
|
+
accountPage: 'https://ticsscan.com/address/${accountAddress}'
|
|
80
|
+
}],
|
|
81
|
+
images: [{
|
|
82
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png',
|
|
83
|
+
theme: {
|
|
84
|
+
primaryColorHex: '#046ffc'
|
|
85
|
+
}
|
|
86
|
+
}]
|
|
87
|
+
};
|
|
88
|
+
export default info;
|
|
@@ -28,6 +28,36 @@ const info = [
|
|
|
28
28
|
}
|
|
29
29
|
}]
|
|
30
30
|
},
|
|
31
|
+
{
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain1: {
|
|
34
|
+
chainName: 'akash',
|
|
35
|
+
clientId: '07-tendermint-192',
|
|
36
|
+
connectionId: 'connection-178'
|
|
37
|
+
},
|
|
38
|
+
chain2: {
|
|
39
|
+
chainName: 'stargaze',
|
|
40
|
+
clientId: '07-tendermint-379',
|
|
41
|
+
connectionId: 'connection-336'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain1: {
|
|
45
|
+
channelId: 'channel-130',
|
|
46
|
+
portId: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain2: {
|
|
49
|
+
channelId: 'channel-447',
|
|
50
|
+
portId: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
ordering: 'unordered',
|
|
53
|
+
version: 'ics20-1',
|
|
54
|
+
tags: {
|
|
55
|
+
status: 'live',
|
|
56
|
+
preferred: true,
|
|
57
|
+
dex: 'osmosis'
|
|
58
|
+
}
|
|
59
|
+
}]
|
|
60
|
+
},
|
|
31
61
|
{
|
|
32
62
|
$schema: '../ibc_data.schema.json',
|
|
33
63
|
chain1: {
|
|
@@ -2,7 +2,7 @@ const info = {
|
|
|
2
2
|
$schema: '../assetlist.schema.json',
|
|
3
3
|
chainName: 'stratos',
|
|
4
4
|
assets: [{
|
|
5
|
-
description: 'STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0
|
|
5
|
+
description: 'STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developers and dApps through our scalable, reliable, and high-performance networks.',
|
|
6
6
|
extendedDescription: 'By spearheading the next generation of decentralized data mesh, Stratos enhances blockchain scalability while upholding the core benefits of a distributed protocol—data ownership, traceability, verifiability, and privacy. Embrace the future of Web 3.0 with Stratos, where cutting-edge innovation meets seamless decentralization. The Stratos Decentralized Storage Network enables projects to break free from centralized dependencies, offering robust storage solutions that enhance performance and decentralization. Surpassing centralized cloud services like Google Drive, our Proof-of-Traffic consensus mechanism rewards network node providers based on real-time file usage. Since launching the Stratos blockchain and decentralized storage mainnet in September 2023, over 800 active storage resource nodes worldwide have contributed to a total capacity nearing 14 PB. Additionally, our videostreaming API service allows your platform to stream live events and content smoothly and securely.',
|
|
7
7
|
denomUnits: [
|
|
8
8
|
{
|
|
@@ -444,6 +444,36 @@ const info = [
|
|
|
444
444
|
tags: {}
|
|
445
445
|
}]
|
|
446
446
|
},
|
|
447
|
+
{
|
|
448
|
+
$schema: '../ibc_data.schema.json',
|
|
449
|
+
chain1: {
|
|
450
|
+
chainName: 'akash',
|
|
451
|
+
clientId: '07-tendermint-192',
|
|
452
|
+
connectionId: 'connection-178'
|
|
453
|
+
},
|
|
454
|
+
chain2: {
|
|
455
|
+
chainName: 'stargaze',
|
|
456
|
+
clientId: '07-tendermint-379',
|
|
457
|
+
connectionId: 'connection-336'
|
|
458
|
+
},
|
|
459
|
+
channels: [{
|
|
460
|
+
chain1: {
|
|
461
|
+
channelId: 'channel-130',
|
|
462
|
+
portId: 'transfer'
|
|
463
|
+
},
|
|
464
|
+
chain2: {
|
|
465
|
+
channelId: 'channel-447',
|
|
466
|
+
portId: 'transfer'
|
|
467
|
+
},
|
|
468
|
+
ordering: 'unordered',
|
|
469
|
+
version: 'ics20-1',
|
|
470
|
+
tags: {
|
|
471
|
+
status: 'live',
|
|
472
|
+
preferred: true,
|
|
473
|
+
dex: 'osmosis'
|
|
474
|
+
}
|
|
475
|
+
}]
|
|
476
|
+
},
|
|
447
477
|
{
|
|
448
478
|
$schema: '../ibc_data.schema.json',
|
|
449
479
|
chain1: {
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -178,6 +178,7 @@ const _pundix = __importStar(require("./pundix"));
|
|
|
178
178
|
const _pylons = __importStar(require("./pylons"));
|
|
179
179
|
const _qfs = __importStar(require("./qfs"));
|
|
180
180
|
const _quasar = __importStar(require("./quasar"));
|
|
181
|
+
const _qubetics = __importStar(require("./qubetics"));
|
|
181
182
|
const _quicksilver = __importStar(require("./quicksilver"));
|
|
182
183
|
const _qwoyn = __importStar(require("./qwoyn"));
|
|
183
184
|
const _realio = __importStar(require("./realio"));
|
|
@@ -384,6 +385,7 @@ const assetList = [
|
|
|
384
385
|
_pylons.assetList,
|
|
385
386
|
_qfs.assetList,
|
|
386
387
|
_quasar.assetList,
|
|
388
|
+
_qubetics.assetList,
|
|
387
389
|
_quicksilver.assetList,
|
|
388
390
|
_qwoyn.assetList,
|
|
389
391
|
_realio.assetList,
|
package/mainnet/chains.js
CHANGED
|
@@ -178,6 +178,7 @@ const _pundix = __importStar(require("./pundix"));
|
|
|
178
178
|
const _pylons = __importStar(require("./pylons"));
|
|
179
179
|
const _qfs = __importStar(require("./qfs"));
|
|
180
180
|
const _quasar = __importStar(require("./quasar"));
|
|
181
|
+
const _qubetics = __importStar(require("./qubetics"));
|
|
181
182
|
const _quicksilver = __importStar(require("./quicksilver"));
|
|
182
183
|
const _qwoyn = __importStar(require("./qwoyn"));
|
|
183
184
|
const _realio = __importStar(require("./realio"));
|
|
@@ -384,6 +385,7 @@ const chains = [
|
|
|
384
385
|
_pylons.chain,
|
|
385
386
|
_qfs.chain,
|
|
386
387
|
_quasar.chain,
|
|
388
|
+
_qubetics.chain,
|
|
387
389
|
_quicksilver.chain,
|
|
388
390
|
_qwoyn.chain,
|
|
389
391
|
_realio.chain,
|
|
@@ -1828,9 +1828,20 @@ const info = {
|
|
|
1828
1828
|
exponent: 8
|
|
1829
1829
|
}],
|
|
1830
1830
|
base: '0x6a9a65b84843f5fd4ac9a0471c4fc11afffbce4a',
|
|
1831
|
-
name: '
|
|
1831
|
+
name: 'lorenzo Wrapped Bitcoin',
|
|
1832
1832
|
display: 'enzobtc',
|
|
1833
1833
|
symbol: 'enzoBTC',
|
|
1834
|
+
traces: [{
|
|
1835
|
+
type: 'bridge',
|
|
1836
|
+
counterparty: {
|
|
1837
|
+
chainName: 'bitcoin',
|
|
1838
|
+
baseDenom: 'sat'
|
|
1839
|
+
},
|
|
1840
|
+
provider: 'Lorenzo Protocol'
|
|
1841
|
+
}],
|
|
1842
|
+
images: [{
|
|
1843
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lorenzo-wrapped-bitcoin.png'
|
|
1844
|
+
}],
|
|
1834
1845
|
coingeckoId: 'lorenzo-wrapped-bitcoin'
|
|
1835
1846
|
},
|
|
1836
1847
|
{
|
package/mainnet/lumera/chain.js
CHANGED
|
@@ -8,7 +8,7 @@ const info = {
|
|
|
8
8
|
prettyName: 'Lumera',
|
|
9
9
|
website: 'https://lumera.protocol',
|
|
10
10
|
networkType: 'mainnet',
|
|
11
|
-
status: '
|
|
11
|
+
status: 'live',
|
|
12
12
|
bech32Prefix: 'lumera',
|
|
13
13
|
bech32Config: {
|
|
14
14
|
bech32PrefixAccAddr: 'lumera',
|
|
@@ -38,12 +38,15 @@ const info = {
|
|
|
38
38
|
},
|
|
39
39
|
codebase: {
|
|
40
40
|
gitRepo: 'https://github.com/LumeraProtocol/lumera',
|
|
41
|
-
tag: 'v1.
|
|
42
|
-
recommendedVersion: 'v1.
|
|
41
|
+
tag: 'v1.5.0',
|
|
42
|
+
recommendedVersion: 'v1.5.0',
|
|
43
43
|
language: {
|
|
44
44
|
type: 'go',
|
|
45
45
|
version: 'v1.24'
|
|
46
46
|
},
|
|
47
|
+
binaries: {
|
|
48
|
+
"linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v1.5.0/lumera_v1.5.0_linux_amd64.tar.gz?checksum=sha256:3d33c600ad35b94c72acf4ce81247f6171b79169f5b84a6e415df1ec30d690dc'
|
|
49
|
+
},
|
|
47
50
|
sdk: {
|
|
48
51
|
type: 'cosmos',
|
|
49
52
|
version: 'v0.50.13'
|
|
@@ -61,9 +64,23 @@ const info = {
|
|
|
61
64
|
version: 'v8.5.1'
|
|
62
65
|
},
|
|
63
66
|
genesis: {
|
|
64
|
-
genesisUrl: 'https://
|
|
67
|
+
genesisUrl: 'https://raw.githubusercontent.com/LumeraProtocol/lumera-networks/refs/heads/master/mainnet/genesis.json'
|
|
65
68
|
}
|
|
66
69
|
},
|
|
70
|
+
apis: {
|
|
71
|
+
rpc: [{
|
|
72
|
+
address: 'https://rpc.lumera.io:443',
|
|
73
|
+
provider: 'LumeraProtocol'
|
|
74
|
+
}],
|
|
75
|
+
rest: [{
|
|
76
|
+
address: 'https://lcd.lumera.io:443',
|
|
77
|
+
provider: 'LumeraProtocol'
|
|
78
|
+
}],
|
|
79
|
+
grpc: [{
|
|
80
|
+
address: 'https://grpc.lumera.io:443',
|
|
81
|
+
provider: 'LumeraProtocol'
|
|
82
|
+
}]
|
|
83
|
+
},
|
|
67
84
|
explorers: [{
|
|
68
85
|
kind: 'ping.pub',
|
|
69
86
|
url: 'https://portal.lumera.io/lumera-mainnet-1/',
|
|
@@ -6,6 +6,7 @@ const info = {
|
|
|
6
6
|
assets: [
|
|
7
7
|
{
|
|
8
8
|
description: 'The native token of Namada.',
|
|
9
|
+
extendedDescription: 'Namada is the Composable Privacy Layer of the Multichain. It is a proof-of-stake layer-1 blockchain that protects users’ personal data by providing a shielded asset hub and enabling shielded cross-chain transactions. Namada is capable of supporting any asset and can be used to retrofit data protection to existing chains, dapps, tokens, and NFTs.\nPrimarily built in Rust, Namada uses CometBFT consensus and the IBC (Inter-Blockchain Communication) protocol for multichain interoperability, but can be upgraded to support additional ecosystems beyond IBC. By leveraging advanced cryptographic standards like zk-SNARKs and its potential for interoperability, Namada positions itself as a useful cryptographic primitive for users to protect their on-chain data while interoperating with a wide variety of other blockchains and protocols.',
|
|
9
10
|
denomUnits: [{
|
|
10
11
|
denom: 'unam',
|
|
11
12
|
exponent: 0
|
|
@@ -21,7 +22,12 @@ const info = {
|
|
|
21
22
|
address: 'tnam1q9gr66cvu4hrzm0sd5kmlnjje82gs3xlfg3v6nu7',
|
|
22
23
|
logoURIs: {
|
|
23
24
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/namada/images/namada.svg'
|
|
24
|
-
}
|
|
25
|
+
},
|
|
26
|
+
socials: {
|
|
27
|
+
website: 'https://namada.net/',
|
|
28
|
+
twitter: 'https://x.com/namada'
|
|
29
|
+
},
|
|
30
|
+
coingeckoId: 'namada'
|
|
25
31
|
},
|
|
26
32
|
{
|
|
27
33
|
description: 'Stride\'s liquid staked OSMO',
|
|
@@ -20227,7 +20227,7 @@ const info = {
|
|
|
20227
20227
|
}]
|
|
20228
20228
|
},
|
|
20229
20229
|
{
|
|
20230
|
-
description: 'STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0
|
|
20230
|
+
description: 'STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developers and dApps through our scalable, reliable, and high-performance networks.',
|
|
20231
20231
|
denomUnits: [
|
|
20232
20232
|
{
|
|
20233
20233
|
denom: 'ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C',
|
|
@@ -20603,7 +20603,7 @@ const info = {
|
|
|
20603
20603
|
}]
|
|
20604
20604
|
},
|
|
20605
20605
|
{
|
|
20606
|
-
description: 'Native LTC from
|
|
20606
|
+
description: 'Native LTC from Litecoin blockchain bridged via Int3face bridge',
|
|
20607
20607
|
denomUnits: [{
|
|
20608
20608
|
denom: 'ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46',
|
|
20609
20609
|
exponent: 0,
|
|
@@ -24069,7 +24069,7 @@ const info = {
|
|
|
24069
24069
|
},
|
|
24070
24070
|
{
|
|
24071
24071
|
description: 'ashLAB - Burned LAB',
|
|
24072
|
-
extendedDescription: 'ashLAB - receipt token
|
|
24072
|
+
extendedDescription: 'ashLAB - receipt token received when burning LAB via ASH DAOs Furnace',
|
|
24073
24073
|
denomUnits: [{
|
|
24074
24074
|
denom: 'factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash',
|
|
24075
24075
|
exponent: 0
|
|
@@ -24166,7 +24166,7 @@ const info = {
|
|
|
24166
24166
|
},
|
|
24167
24167
|
{
|
|
24168
24168
|
description: 'ashION - Burned ION',
|
|
24169
|
-
extendedDescription: 'ashION - receipt token
|
|
24169
|
+
extendedDescription: 'ashION - receipt token received when burning ION via ASH DAOs Furnace',
|
|
24170
24170
|
denomUnits: [{
|
|
24171
24171
|
denom: 'factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/ion.ash',
|
|
24172
24172
|
exponent: 0
|
|
@@ -24867,7 +24867,49 @@ const info = {
|
|
|
24867
24867
|
logoURIs: {
|
|
24868
24868
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.atom.svg',
|
|
24869
24869
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.atom.png'
|
|
24870
|
+
},
|
|
24871
|
+
socials: {
|
|
24872
|
+
website: 'https://www.paxos.com/pax-gold',
|
|
24873
|
+
twitter: 'https://x.com/Paxos'
|
|
24870
24874
|
}
|
|
24875
|
+
},
|
|
24876
|
+
{
|
|
24877
|
+
description: 'The native token of Namada.',
|
|
24878
|
+
denomUnits: [{
|
|
24879
|
+
denom: 'ibc/C7110DEC66869DAE9BE9C3C60F4B5313B16A2204AE020C3B0527DD6B322386A3',
|
|
24880
|
+
exponent: 0,
|
|
24881
|
+
aliases: ['unam']
|
|
24882
|
+
}, {
|
|
24883
|
+
denom: 'nam',
|
|
24884
|
+
exponent: 6
|
|
24885
|
+
}],
|
|
24886
|
+
typeAsset: 'ics20',
|
|
24887
|
+
base: 'ibc/C7110DEC66869DAE9BE9C3C60F4B5313B16A2204AE020C3B0527DD6B322386A3',
|
|
24888
|
+
name: 'Namada',
|
|
24889
|
+
display: 'nam',
|
|
24890
|
+
symbol: 'NAM',
|
|
24891
|
+
traces: [{
|
|
24892
|
+
type: 'ibc',
|
|
24893
|
+
counterparty: {
|
|
24894
|
+
chainName: 'namada',
|
|
24895
|
+
baseDenom: 'unam',
|
|
24896
|
+
channelId: 'channel-1'
|
|
24897
|
+
},
|
|
24898
|
+
chain: {
|
|
24899
|
+
channelId: 'channel-98451',
|
|
24900
|
+
path: 'transfer/channel-98451/tnam1q9gr66cvu4hrzm0sd5kmlnjje82gs3xlfg3v6nu7'
|
|
24901
|
+
}
|
|
24902
|
+
}],
|
|
24903
|
+
logoURIs: {
|
|
24904
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/namada/images/namada.svg'
|
|
24905
|
+
},
|
|
24906
|
+
images: [{
|
|
24907
|
+
imageSync: {
|
|
24908
|
+
chainName: 'namada',
|
|
24909
|
+
baseDenom: 'unam'
|
|
24910
|
+
},
|
|
24911
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/namada/images/namada.svg'
|
|
24912
|
+
}]
|
|
24871
24913
|
}
|
|
24872
24914
|
]
|
|
24873
24915
|
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'qubetics',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The EVM, governance and staking token of the qubetics Chain',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'tics',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'TICS',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
base: 'tics',
|
|
16
|
+
name: 'Qubetics Mainnet',
|
|
17
|
+
display: 'TICS',
|
|
18
|
+
symbol: 'TICS',
|
|
19
|
+
logoURIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png',
|
|
24
|
+
theme: {
|
|
25
|
+
primaryColorHex: '#046ffc'
|
|
26
|
+
}
|
|
27
|
+
}],
|
|
28
|
+
socials: {
|
|
29
|
+
website: 'https://www.qubetics.com/',
|
|
30
|
+
twitter: 'https://x.com/qubetics'
|
|
31
|
+
},
|
|
32
|
+
typeAsset: 'sdk.coin'
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
exports.default = info;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'qubetics',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
website: 'https://www.qubetics.com/',
|
|
9
|
+
prettyName: 'Qubetics',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'qubetics_9030-1',
|
|
12
|
+
bech32Prefix: 'qubetics',
|
|
13
|
+
nodeHome: '$HOME/.qubeticsd',
|
|
14
|
+
daemonName: 'qubeticsd',
|
|
15
|
+
keyAlgos: ['ethsecp256k1'],
|
|
16
|
+
extraCodecs: ['ethermint'],
|
|
17
|
+
slip44: 60,
|
|
18
|
+
fees: {
|
|
19
|
+
feeTokens: [{
|
|
20
|
+
denom: 'tics',
|
|
21
|
+
fixedMinGasPrice: 250000000,
|
|
22
|
+
lowGasPrice: 20000000000,
|
|
23
|
+
averageGasPrice: 25000000000,
|
|
24
|
+
highGasPrice: 40000000000
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
staking: {
|
|
28
|
+
stakingTokens: [{
|
|
29
|
+
denom: 'tics'
|
|
30
|
+
}]
|
|
31
|
+
},
|
|
32
|
+
codebase: {
|
|
33
|
+
gitRepo: 'https://github.com/Qubetics/qubetics-chain',
|
|
34
|
+
recommendedVersion: 'v1.0.0',
|
|
35
|
+
compatibleVersions: ['v1.0.0'],
|
|
36
|
+
consensus: {
|
|
37
|
+
type: 'cometbft',
|
|
38
|
+
version: 'v0.37.9'
|
|
39
|
+
},
|
|
40
|
+
binaries: {
|
|
41
|
+
"linux/amd64": 'https://github.com/Qubetics/qubetics-mainnetnode-script/tree/main/ubuntu22.04build/qubeticsd'
|
|
42
|
+
},
|
|
43
|
+
genesis: {
|
|
44
|
+
genesisUrl: 'https://github.com/Qubetics/qubetics-mainnetnode-script/blob/main/genesis.json'
|
|
45
|
+
},
|
|
46
|
+
sdk: {
|
|
47
|
+
type: 'cosmos',
|
|
48
|
+
version: 'v0.47.12'
|
|
49
|
+
},
|
|
50
|
+
ibc: {
|
|
51
|
+
type: 'go',
|
|
52
|
+
version: 'v7.6.0'
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
logoURIs: {
|
|
56
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png'
|
|
57
|
+
},
|
|
58
|
+
description: 'Developers use qubetics as the Ethereum Chain to deploy applications of the future. Get all the functionalities of Ethereum with the power of IBC and Interchain composability.',
|
|
59
|
+
apis: {
|
|
60
|
+
rpc: [{
|
|
61
|
+
address: 'https://tendermint.qubetics.com',
|
|
62
|
+
provider: 'Qubetics'
|
|
63
|
+
}],
|
|
64
|
+
rest: [{
|
|
65
|
+
address: 'https://swagger.qubetics.com',
|
|
66
|
+
provider: 'Qubetics'
|
|
67
|
+
}],
|
|
68
|
+
grpc: [{
|
|
69
|
+
address: 'https://grpc.qubetics.com',
|
|
70
|
+
provider: 'Qubetics'
|
|
71
|
+
}],
|
|
72
|
+
evmHttpJsonrpc: [{
|
|
73
|
+
address: 'https://rpc.qubetics.com',
|
|
74
|
+
provider: 'Qubetics'
|
|
75
|
+
}]
|
|
76
|
+
},
|
|
77
|
+
explorers: [{
|
|
78
|
+
kind: 'qubetics',
|
|
79
|
+
url: 'https://ticsscan.com',
|
|
80
|
+
txPage: 'https://ticsscan.com/tx/${txHash}',
|
|
81
|
+
accountPage: 'https://ticsscan.com/address/${accountAddress}'
|
|
82
|
+
}],
|
|
83
|
+
images: [{
|
|
84
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qubetics/images/qubetics.png',
|
|
85
|
+
theme: {
|
|
86
|
+
primaryColorHex: '#046ffc'
|
|
87
|
+
}
|
|
88
|
+
}]
|
|
89
|
+
};
|
|
90
|
+
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;
|
|
@@ -30,6 +30,36 @@ const info = [
|
|
|
30
30
|
}
|
|
31
31
|
}]
|
|
32
32
|
},
|
|
33
|
+
{
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain1: {
|
|
36
|
+
chainName: 'akash',
|
|
37
|
+
clientId: '07-tendermint-192',
|
|
38
|
+
connectionId: 'connection-178'
|
|
39
|
+
},
|
|
40
|
+
chain2: {
|
|
41
|
+
chainName: 'stargaze',
|
|
42
|
+
clientId: '07-tendermint-379',
|
|
43
|
+
connectionId: 'connection-336'
|
|
44
|
+
},
|
|
45
|
+
channels: [{
|
|
46
|
+
chain1: {
|
|
47
|
+
channelId: 'channel-130',
|
|
48
|
+
portId: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
chain2: {
|
|
51
|
+
channelId: 'channel-447',
|
|
52
|
+
portId: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
ordering: 'unordered',
|
|
55
|
+
version: 'ics20-1',
|
|
56
|
+
tags: {
|
|
57
|
+
status: 'live',
|
|
58
|
+
preferred: true,
|
|
59
|
+
dex: 'osmosis'
|
|
60
|
+
}
|
|
61
|
+
}]
|
|
62
|
+
},
|
|
33
63
|
{
|
|
34
64
|
$schema: '../ibc_data.schema.json',
|
|
35
65
|
chain1: {
|
|
@@ -4,7 +4,7 @@ const info = {
|
|
|
4
4
|
$schema: '../assetlist.schema.json',
|
|
5
5
|
chainName: 'stratos',
|
|
6
6
|
assets: [{
|
|
7
|
-
description: 'STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0
|
|
7
|
+
description: 'STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developers and dApps through our scalable, reliable, and high-performance networks.',
|
|
8
8
|
extendedDescription: 'By spearheading the next generation of decentralized data mesh, Stratos enhances blockchain scalability while upholding the core benefits of a distributed protocol—data ownership, traceability, verifiability, and privacy. Embrace the future of Web 3.0 with Stratos, where cutting-edge innovation meets seamless decentralization. The Stratos Decentralized Storage Network enables projects to break free from centralized dependencies, offering robust storage solutions that enhance performance and decentralization. Surpassing centralized cloud services like Google Drive, our Proof-of-Traffic consensus mechanism rewards network node providers based on real-time file usage. Since launching the Stratos blockchain and decentralized storage mainnet in September 2023, over 800 active storage resource nodes worldwide have contributed to a total capacity nearing 14 PB. Additionally, our videostreaming API service allows your platform to stream live events and content smoothly and securely.',
|
|
9
9
|
denomUnits: [
|
|
10
10
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
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.9"
|
|
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": "72798c66eb082b383a95d9f875fa0bfc0c8da6ac"
|
|
43
43
|
}
|