chain-registry 2.0.17 → 2.0.19
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/bitbadges/asset-list.js +5 -2
- package/esm/mainnet/bitbadges/ibc-data.js +28 -0
- package/esm/mainnet/cheqd/chain.js +12 -0
- package/esm/mainnet/chihuahua/asset-list.js +24 -0
- package/esm/mainnet/elys/asset-list.js +45 -0
- package/esm/mainnet/noble/ibc-data.js +29 -0
- package/esm/mainnet/sunrise/asset-list.js +38 -4
- package/esm/mainnet/sunrise/chain.js +1 -1
- package/esm/mainnet/taketitan/asset-list.js +10 -6
- package/esm/mainnet/taketitan/chain.js +16 -16
- package/esm/testnet/safrochaintestnet/asset-list.js +9 -18
- package/esm/testnet/safrochaintestnet/chain.js +6 -11
- package/esm/testnet/sunrisetestnet/asset-list.js +38 -4
- package/esm/testnet/sunrisetestnet/chain.js +11 -22
- package/mainnet/bitbadges/asset-list.js +5 -2
- package/mainnet/bitbadges/ibc-data.js +28 -0
- package/mainnet/cheqd/chain.js +12 -0
- package/mainnet/chihuahua/asset-list.js +24 -0
- package/mainnet/elys/asset-list.js +45 -0
- package/mainnet/noble/ibc-data.js +29 -0
- package/mainnet/sunrise/asset-list.js +38 -4
- package/mainnet/sunrise/chain.js +1 -1
- package/mainnet/taketitan/asset-list.js +10 -6
- package/mainnet/taketitan/chain.js +16 -16
- package/package.json +3 -3
- package/testnet/safrochaintestnet/asset-list.js +9 -18
- package/testnet/safrochaintestnet/chain.js +6 -11
- package/testnet/sunrisetestnet/asset-list.js +38 -4
- package/testnet/sunrisetestnet/chain.js +11 -22
|
@@ -3,6 +3,7 @@ const info = {
|
|
|
3
3
|
chainName: 'bitbadges',
|
|
4
4
|
assets: [{
|
|
5
5
|
description: '$BADGE is the native in-app token for BitBadges.',
|
|
6
|
+
extendedDescription: '$BADGE is the native in-app currency for the BitBadges app, blockchain, and ecosystem. It is intended to be used for both chain-native functionalities and also as an in-app currency for badge payments.',
|
|
6
7
|
denomUnits: [{
|
|
7
8
|
denom: 'ubadge',
|
|
8
9
|
exponent: 0
|
|
@@ -15,10 +16,12 @@ const info = {
|
|
|
15
16
|
display: 'badge',
|
|
16
17
|
symbol: 'BADGE',
|
|
17
18
|
logoURIs: {
|
|
18
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.png'
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.svg'
|
|
19
21
|
},
|
|
20
22
|
images: [{
|
|
21
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.png'
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.svg'
|
|
22
25
|
}],
|
|
23
26
|
socials: {
|
|
24
27
|
website: 'https://bitbadges.io/',
|
|
@@ -1,4 +1,32 @@
|
|
|
1
1
|
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'bitbadges',
|
|
5
|
+
clientId: '07-tendermint-10',
|
|
6
|
+
connectionId: 'connection-6'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'noble',
|
|
10
|
+
clientId: '07-tendermint-172',
|
|
11
|
+
connectionId: 'connection-165'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-2',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-158',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}, {
|
|
2
30
|
$schema: '../ibc_data.schema.json',
|
|
3
31
|
chain1: {
|
|
4
32
|
chainName: 'bitbadges',
|
|
@@ -95,6 +95,10 @@ const info = {
|
|
|
95
95
|
address: 'https://cheq-rpc.kleomedes.network',
|
|
96
96
|
provider: 'Kleomedes'
|
|
97
97
|
},
|
|
98
|
+
{
|
|
99
|
+
address: 'https://cheqd.srvs.vnodesv.net/rpc',
|
|
100
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
101
|
+
},
|
|
98
102
|
{
|
|
99
103
|
address: 'https://cheqd-rpc.publicnode.com:443',
|
|
100
104
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
@@ -141,6 +145,10 @@ const info = {
|
|
|
141
145
|
address: 'https://cheq-api.kleomedes.network',
|
|
142
146
|
provider: 'Kleomedes'
|
|
143
147
|
},
|
|
148
|
+
{
|
|
149
|
+
address: 'https://cheqd.srvs.vnodesv.net/rest',
|
|
150
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
151
|
+
},
|
|
144
152
|
{
|
|
145
153
|
address: 'https://cheqd-rest.publicnode.com',
|
|
146
154
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
@@ -175,6 +183,10 @@ const info = {
|
|
|
175
183
|
address: 'grpc-cheqd.blockval.io:9290',
|
|
176
184
|
provider: 'Blockval'
|
|
177
185
|
},
|
|
186
|
+
{
|
|
187
|
+
address: 'https://cheqd.srvs.vnodesv.net/grpc',
|
|
188
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
189
|
+
},
|
|
178
190
|
{
|
|
179
191
|
address: 'cheqd-grpc.publicnode.com:443',
|
|
180
192
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
@@ -86,6 +86,30 @@ const info = {
|
|
|
86
86
|
},
|
|
87
87
|
typeAsset: 'sdk.coin'
|
|
88
88
|
},
|
|
89
|
+
{
|
|
90
|
+
description: 'BeerDog',
|
|
91
|
+
denomUnits: [{
|
|
92
|
+
denom: 'factory/chihuahua1sj9verkuk8aa9jrngnpwup6zjht4vwngjlpemnt9w38ccp0qnlcswvsuzc/beer',
|
|
93
|
+
exponent: 0
|
|
94
|
+
}, {
|
|
95
|
+
denom: 'BEER',
|
|
96
|
+
exponent: 6
|
|
97
|
+
}],
|
|
98
|
+
base: 'factory/chihuahua1sj9verkuk8aa9jrngnpwup6zjht4vwngjlpemnt9w38ccp0qnlcswvsuzc/beer',
|
|
99
|
+
name: 'BEER',
|
|
100
|
+
display: 'BEER',
|
|
101
|
+
symbol: 'BEER',
|
|
102
|
+
logoURIs: {
|
|
103
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/beer.png'
|
|
104
|
+
},
|
|
105
|
+
images: [{
|
|
106
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/beer.png',
|
|
107
|
+
theme: {
|
|
108
|
+
primaryColorHex: '#d9905f'
|
|
109
|
+
}
|
|
110
|
+
}],
|
|
111
|
+
typeAsset: 'sdk.coin'
|
|
112
|
+
},
|
|
89
113
|
{
|
|
90
114
|
description: 'Woof',
|
|
91
115
|
denomUnits: [{
|
|
@@ -407,6 +407,51 @@ const info = {
|
|
|
407
407
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg'
|
|
408
408
|
},
|
|
409
409
|
coingeckoId: 'saga-2'
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
description: 'XRPL EVM Token',
|
|
413
|
+
denomUnits: [{
|
|
414
|
+
denom: 'ibc/8464A63954C0350A26C8588E20719F3A0AC8705E4CA0F7450B60C3F16B2D3421',
|
|
415
|
+
exponent: 0,
|
|
416
|
+
aliases: ['axrp']
|
|
417
|
+
}, {
|
|
418
|
+
denom: 'xrp',
|
|
419
|
+
exponent: 18
|
|
420
|
+
}],
|
|
421
|
+
typeAsset: 'ics20',
|
|
422
|
+
base: 'ibc/8464A63954C0350A26C8588E20719F3A0AC8705E4CA0F7450B60C3F16B2D3421',
|
|
423
|
+
name: 'Ripple',
|
|
424
|
+
display: 'xrp',
|
|
425
|
+
symbol: 'XRP',
|
|
426
|
+
traces: [{
|
|
427
|
+
type: 'ibc',
|
|
428
|
+
counterparty: {
|
|
429
|
+
chainName: 'xrplevm',
|
|
430
|
+
baseDenom: 'axrp',
|
|
431
|
+
channelId: 'channel-1'
|
|
432
|
+
},
|
|
433
|
+
chain: {
|
|
434
|
+
channelId: 'channel-27',
|
|
435
|
+
path: 'transfer/channel-27/axrp'
|
|
436
|
+
}
|
|
437
|
+
}],
|
|
438
|
+
images: [{
|
|
439
|
+
imageSync: {
|
|
440
|
+
chainName: 'xrplevm',
|
|
441
|
+
baseDenom: 'axrp'
|
|
442
|
+
},
|
|
443
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png',
|
|
444
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg',
|
|
445
|
+
theme: {
|
|
446
|
+
primaryColorHex: '#040404',
|
|
447
|
+
darkMode: true
|
|
448
|
+
}
|
|
449
|
+
}],
|
|
450
|
+
logoURIs: {
|
|
451
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png',
|
|
452
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg'
|
|
453
|
+
},
|
|
454
|
+
coingeckoId: 'ripple'
|
|
410
455
|
}
|
|
411
456
|
]
|
|
412
457
|
};
|
|
@@ -142,6 +142,35 @@ const info = [
|
|
|
142
142
|
}
|
|
143
143
|
}]
|
|
144
144
|
},
|
|
145
|
+
{
|
|
146
|
+
$schema: '../ibc_data.schema.json',
|
|
147
|
+
chain1: {
|
|
148
|
+
chainName: 'bitbadges',
|
|
149
|
+
clientId: '07-tendermint-10',
|
|
150
|
+
connectionId: 'connection-6'
|
|
151
|
+
},
|
|
152
|
+
chain2: {
|
|
153
|
+
chainName: 'noble',
|
|
154
|
+
clientId: '07-tendermint-172',
|
|
155
|
+
connectionId: 'connection-165'
|
|
156
|
+
},
|
|
157
|
+
channels: [{
|
|
158
|
+
chain1: {
|
|
159
|
+
channelId: 'channel-2',
|
|
160
|
+
portId: 'transfer'
|
|
161
|
+
},
|
|
162
|
+
chain2: {
|
|
163
|
+
channelId: 'channel-158',
|
|
164
|
+
portId: 'transfer'
|
|
165
|
+
},
|
|
166
|
+
ordering: 'unordered',
|
|
167
|
+
version: 'ics20-1',
|
|
168
|
+
tags: {
|
|
169
|
+
status: 'live',
|
|
170
|
+
preferred: true
|
|
171
|
+
}
|
|
172
|
+
}]
|
|
173
|
+
},
|
|
145
174
|
{
|
|
146
175
|
$schema: '../ibc_data.schema.json',
|
|
147
176
|
chain1: {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const info = {
|
|
2
2
|
$schema: '../assetlist.schema.json',
|
|
3
3
|
chainName: 'sunrise',
|
|
4
|
-
assets: [
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
5
6
|
description: 'The native token of the Sunrise network for staking. This token is non transferrable. This token can be retrieved by providing liquidity.',
|
|
6
7
|
denomUnits: [{
|
|
7
8
|
denom: 'uvrise',
|
|
@@ -31,8 +32,9 @@ const info = {
|
|
|
31
32
|
twitter: 'https://twitter.com/SunriseLayer'
|
|
32
33
|
},
|
|
33
34
|
typeAsset: 'sdk.coin'
|
|
34
|
-
},
|
|
35
|
-
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
description: 'The native token of the Sunrise network.',
|
|
36
38
|
denomUnits: [{
|
|
37
39
|
denom: 'urise',
|
|
38
40
|
exponent: 0,
|
|
@@ -61,6 +63,38 @@ const info = {
|
|
|
61
63
|
twitter: 'https://twitter.com/SunriseLayer'
|
|
62
64
|
},
|
|
63
65
|
typeAsset: 'sdk.coin'
|
|
64
|
-
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
description: 'The USD stable coin of the Sunrise network for fees.',
|
|
69
|
+
denomUnits: [{
|
|
70
|
+
denom: 'uusdrise',
|
|
71
|
+
exponent: 0,
|
|
72
|
+
aliases: ['microUSDrise', 'microusdrise']
|
|
73
|
+
}, {
|
|
74
|
+
denom: 'usdrise',
|
|
75
|
+
exponent: 6
|
|
76
|
+
}],
|
|
77
|
+
base: 'uusdrise',
|
|
78
|
+
name: 'Sunrise USDrise',
|
|
79
|
+
display: 'usdrise',
|
|
80
|
+
symbol: 'USDRISE',
|
|
81
|
+
logoURIs: {
|
|
82
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
83
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg'
|
|
84
|
+
},
|
|
85
|
+
images: [{
|
|
86
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg',
|
|
87
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
88
|
+
theme: {
|
|
89
|
+
primaryColorHex: '#ecbc64'
|
|
90
|
+
}
|
|
91
|
+
}],
|
|
92
|
+
socials: {
|
|
93
|
+
website: 'https://sunriselayer.io/',
|
|
94
|
+
twitter: 'https://twitter.com/SunriseLayer'
|
|
95
|
+
},
|
|
96
|
+
typeAsset: 'sdk.coin'
|
|
97
|
+
}
|
|
98
|
+
]
|
|
65
99
|
};
|
|
66
100
|
export default info;
|
|
@@ -5,13 +5,17 @@ const info = {
|
|
|
5
5
|
description: 'Taketitan the future of the asset management industry.',
|
|
6
6
|
extendedDescription: 'Taketitan is seen as the future of the asset management industry. This new blockchain technology is changing how asset management works in exciting ways.\n\nTaketitan aims to make managing assets simpler, faster, and more secure. By using blockchain technology, it provides a transparent and trustworthy system where all transactions are recorded in a secure and unchangeable way. This helps reduce the risk of fraud and errors, making asset management safer for everyone.\n\nWith Taketitan, managing assets becomes more efficient. Transactions are processed quickly, and the costs are lower compared to traditional methods. This means more people can benefit from high-quality asset management services without the high fees usually involved.\n\nTaketitan also makes it easier for people to track and manage their investments. Everything is done through a digital platform that is easy to use and always available. This gives users better control and visibility over their assets.\n\nIn short, Taketitan is revolutionizing the asset management industry by making it more secure, efficient, and accessible for everyone. This blockchain technology is paving the way for a new era in how we manage and grow our financial assets.',
|
|
7
7
|
denomUnits: [{
|
|
8
|
-
denom: '
|
|
9
|
-
exponent: 0
|
|
8
|
+
denom: 'utitan',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['microtitan']
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'titan',
|
|
13
|
+
exponent: 6
|
|
10
14
|
}],
|
|
11
|
-
base: '
|
|
12
|
-
name: '
|
|
13
|
-
display: '
|
|
14
|
-
symbol: '
|
|
15
|
+
base: 'utitan',
|
|
16
|
+
name: 'Titan',
|
|
17
|
+
display: 'titan',
|
|
18
|
+
symbol: 'TITAN',
|
|
15
19
|
logoURIs: {
|
|
16
20
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/taketitan/images/taketitan.png',
|
|
17
21
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/taketitan/images/taketitan.svg'
|
|
@@ -6,15 +6,15 @@ const info = {
|
|
|
6
6
|
website: 'https://taketitan.com/',
|
|
7
7
|
prettyName: 'TakeTitan',
|
|
8
8
|
chainType: 'cosmos',
|
|
9
|
-
chainId: 'taketitan-
|
|
10
|
-
bech32Prefix: '
|
|
11
|
-
daemonName: '
|
|
12
|
-
nodeHome: '$HOME/.
|
|
9
|
+
chainId: 'taketitan-1',
|
|
10
|
+
bech32Prefix: 'titan',
|
|
11
|
+
daemonName: 'titand',
|
|
12
|
+
nodeHome: '$HOME/.titand',
|
|
13
13
|
keyAlgos: ['secp256k1'],
|
|
14
|
-
slip44:
|
|
14
|
+
slip44: 118,
|
|
15
15
|
staking: {
|
|
16
16
|
stakingTokens: [{
|
|
17
|
-
denom: '
|
|
17
|
+
denom: 'utitan'
|
|
18
18
|
}],
|
|
19
19
|
lockDuration: {
|
|
20
20
|
time: '1814400s'
|
|
@@ -22,23 +22,23 @@ const info = {
|
|
|
22
22
|
},
|
|
23
23
|
fees: {
|
|
24
24
|
feeTokens: [{
|
|
25
|
-
denom: '
|
|
26
|
-
lowGasPrice: 0.
|
|
27
|
-
averageGasPrice: 0.
|
|
28
|
-
highGasPrice: 0.
|
|
25
|
+
denom: 'utitan',
|
|
26
|
+
lowGasPrice: 0.025,
|
|
27
|
+
averageGasPrice: 0.03,
|
|
28
|
+
highGasPrice: 0.035
|
|
29
29
|
}]
|
|
30
30
|
},
|
|
31
31
|
apis: {
|
|
32
32
|
rpc: [{
|
|
33
|
-
address: 'https://
|
|
33
|
+
address: 'https://rpc.taketitan.com',
|
|
34
34
|
provider: 'taketitan'
|
|
35
35
|
}],
|
|
36
36
|
rest: [{
|
|
37
|
-
address: 'https://
|
|
37
|
+
address: 'https://lcd.taketitan.com',
|
|
38
38
|
provider: 'taketitan'
|
|
39
39
|
}],
|
|
40
40
|
grpc: [{
|
|
41
|
-
address: 'https://
|
|
41
|
+
address: 'https://grpc.taketitan.com',
|
|
42
42
|
provider: 'taketitan'
|
|
43
43
|
}]
|
|
44
44
|
},
|
|
@@ -48,9 +48,9 @@ const info = {
|
|
|
48
48
|
},
|
|
49
49
|
explorers: [{
|
|
50
50
|
kind: 'ping.pub',
|
|
51
|
-
url: 'https://
|
|
52
|
-
txPage: 'https://
|
|
53
|
-
accountPage: 'https://
|
|
51
|
+
url: 'https://blockexplorer.taketitan.com',
|
|
52
|
+
txPage: 'https://blockexplorer.taketitan.com/tx/${txHash}',
|
|
53
|
+
accountPage: 'https://blockexplorer.taketitan.com/accounts/${accountAddress}'
|
|
54
54
|
}],
|
|
55
55
|
keywords: [],
|
|
56
56
|
images: [{
|
|
@@ -2,27 +2,18 @@ const info = {
|
|
|
2
2
|
$schema: '../../assetlist.schema.json',
|
|
3
3
|
chainName: 'safrochaintestnet',
|
|
4
4
|
assets: [{
|
|
5
|
-
description: 'The native token of Safrochain testnet used for staking, governance, and fees.',
|
|
6
|
-
denomUnits: [
|
|
7
|
-
|
|
8
|
-
denom: 'saf',
|
|
5
|
+
description: 'The native token of Safrochain testnet used for staking, governance, and gas fees.',
|
|
6
|
+
denomUnits: [{
|
|
7
|
+
denom: 'usaf',
|
|
9
8
|
exponent: 0,
|
|
10
9
|
aliases: ['microsaf']
|
|
11
|
-
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
denom: 'hela',
|
|
19
|
-
exponent: 6,
|
|
20
|
-
aliases: []
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
base: 'saf',
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'saf',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'usaf',
|
|
24
15
|
name: 'Safrochain',
|
|
25
|
-
display: '
|
|
16
|
+
display: 'saf',
|
|
26
17
|
symbol: 'SAF',
|
|
27
18
|
logoURIs: {
|
|
28
19
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/safrochaintestnet/images/saf.png',
|
|
@@ -6,15 +6,15 @@ const info = {
|
|
|
6
6
|
networkType: 'testnet',
|
|
7
7
|
website: 'https://safrochain.com',
|
|
8
8
|
prettyName: 'Safrochain Testnet',
|
|
9
|
-
chainId: '
|
|
9
|
+
chainId: 'safro-testnet-1',
|
|
10
10
|
bech32Prefix: 'addr_safro',
|
|
11
11
|
daemonName: 'safrochaind',
|
|
12
|
-
nodeHome: '.
|
|
12
|
+
nodeHome: '.safrochain',
|
|
13
13
|
keyAlgos: ['secp256k1', 'ed25519'],
|
|
14
14
|
slip44: 118,
|
|
15
15
|
fees: {
|
|
16
16
|
feeTokens: [{
|
|
17
|
-
denom: '
|
|
17
|
+
denom: 'usaf',
|
|
18
18
|
fixedMinGasPrice: 0.001,
|
|
19
19
|
lowGasPrice: 0.0025,
|
|
20
20
|
averageGasPrice: 0.025,
|
|
@@ -23,18 +23,13 @@ const info = {
|
|
|
23
23
|
},
|
|
24
24
|
staking: {
|
|
25
25
|
stakingTokens: [{
|
|
26
|
-
denom: '
|
|
26
|
+
denom: 'usaf'
|
|
27
27
|
}]
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
gitRepo: 'https://github.com/Safrochain-Org/safrochain-node',
|
|
31
|
-
recommendedVersion: '
|
|
32
|
-
compatibleVersions: ['
|
|
33
|
-
binaries: {
|
|
34
|
-
"linux/amd64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_linux_amd64.tar.gz',
|
|
35
|
-
"darwin/amd64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_darwin_amd64.tar.gz',
|
|
36
|
-
"darwin/arm64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_darwin_arm64.tar.gz'
|
|
37
|
-
}
|
|
31
|
+
recommendedVersion: 'v0.1.0',
|
|
32
|
+
compatibleVersions: ['v0.1.0']
|
|
38
33
|
},
|
|
39
34
|
apis: {
|
|
40
35
|
rpc: [{
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const info = {
|
|
2
2
|
$schema: '../../assetlist.schema.json',
|
|
3
3
|
chainName: 'sunrisetestnet',
|
|
4
|
-
assets: [
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
5
6
|
description: 'The native token of the Sunrise network for staking. This token is non transferrable. This token can be retrieved by providing liquidity.',
|
|
6
7
|
denomUnits: [{
|
|
7
8
|
denom: 'uvrise',
|
|
@@ -28,8 +29,9 @@ const info = {
|
|
|
28
29
|
twitter: 'https://twitter.com/SunriseLayer'
|
|
29
30
|
},
|
|
30
31
|
typeAsset: 'sdk.coin'
|
|
31
|
-
},
|
|
32
|
-
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
description: 'The native token of the Sunrise network.',
|
|
33
35
|
denomUnits: [{
|
|
34
36
|
denom: 'urise',
|
|
35
37
|
exponent: 0,
|
|
@@ -55,6 +57,38 @@ const info = {
|
|
|
55
57
|
twitter: 'https://twitter.com/SunriseLayer'
|
|
56
58
|
},
|
|
57
59
|
typeAsset: 'sdk.coin'
|
|
58
|
-
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
description: 'The USD stable coin of the Sunrise network for fees.',
|
|
63
|
+
denomUnits: [{
|
|
64
|
+
denom: 'uusdrise',
|
|
65
|
+
exponent: 0,
|
|
66
|
+
aliases: ['microUSDrise', 'microusdrise']
|
|
67
|
+
}, {
|
|
68
|
+
denom: 'usdrise',
|
|
69
|
+
exponent: 6
|
|
70
|
+
}],
|
|
71
|
+
base: 'uusdrise',
|
|
72
|
+
name: 'Sunrise USDrise',
|
|
73
|
+
display: 'usdrise',
|
|
74
|
+
symbol: 'USDRISE',
|
|
75
|
+
logoURIs: {
|
|
76
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
77
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg'
|
|
78
|
+
},
|
|
79
|
+
images: [{
|
|
80
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg',
|
|
81
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
82
|
+
theme: {
|
|
83
|
+
primaryColorHex: '#ecbc64'
|
|
84
|
+
}
|
|
85
|
+
}],
|
|
86
|
+
socials: {
|
|
87
|
+
website: 'https://sunriselayer.io/',
|
|
88
|
+
twitter: 'https://twitter.com/SunriseLayer'
|
|
89
|
+
},
|
|
90
|
+
typeAsset: 'sdk.coin'
|
|
91
|
+
}
|
|
92
|
+
]
|
|
59
93
|
};
|
|
60
94
|
export default info;
|
|
@@ -5,7 +5,7 @@ const info = {
|
|
|
5
5
|
networkType: 'testnet',
|
|
6
6
|
prettyName: 'Sunrise Testnet',
|
|
7
7
|
chainType: 'cosmos',
|
|
8
|
-
chainId: 'sunrise-test-
|
|
8
|
+
chainId: 'sunrise-test-da-5',
|
|
9
9
|
bech32Prefix: 'sunrise',
|
|
10
10
|
daemonName: 'sunrised',
|
|
11
11
|
nodeHome: '$HOME/.sunrise',
|
|
@@ -13,7 +13,7 @@ const info = {
|
|
|
13
13
|
slip44: 118,
|
|
14
14
|
fees: {
|
|
15
15
|
feeTokens: [{
|
|
16
|
-
denom: '
|
|
16
|
+
denom: 'uusdrise',
|
|
17
17
|
fixedMinGasPrice: 0,
|
|
18
18
|
lowGasPrice: 0.0025,
|
|
19
19
|
averageGasPrice: 0.025,
|
|
@@ -27,24 +27,22 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
gitRepo: 'https://github.com/sunriselayer/sunrise',
|
|
30
|
-
recommendedVersion: 'v0.
|
|
31
|
-
compatibleVersions: ['v0.
|
|
30
|
+
recommendedVersion: 'v0.6.0',
|
|
31
|
+
compatibleVersions: ['v0.6.0'],
|
|
32
32
|
binaries: {
|
|
33
|
-
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/v0.
|
|
33
|
+
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/v0.6.0/sunrised'
|
|
34
34
|
},
|
|
35
35
|
consensus: {
|
|
36
36
|
type: 'cometbft',
|
|
37
|
-
version: 'v0.
|
|
38
|
-
repo: 'https://github.com/sunriselayer/sunrise-core',
|
|
39
|
-
tag: 'v0.0.5-cmt-v0.38.2'
|
|
37
|
+
version: 'v0.38.17'
|
|
40
38
|
},
|
|
41
39
|
sdk: {
|
|
42
40
|
type: 'cosmos',
|
|
43
|
-
version: '
|
|
41
|
+
version: 'v0.53.2'
|
|
44
42
|
},
|
|
45
43
|
ibc: {
|
|
46
44
|
type: 'go',
|
|
47
|
-
version: '
|
|
45
|
+
version: 'v10.2.0'
|
|
48
46
|
}
|
|
49
47
|
},
|
|
50
48
|
logoURIs: {
|
|
@@ -53,24 +51,15 @@ const info = {
|
|
|
53
51
|
},
|
|
54
52
|
apis: {
|
|
55
53
|
rpc: [{
|
|
56
|
-
address: 'https://
|
|
57
|
-
provider: 'CauchyE'
|
|
58
|
-
}, {
|
|
59
|
-
address: 'https://b-node.sunrise-test-1.cauchye.net/',
|
|
54
|
+
address: 'https://sunrise-test-da-5.cauchye.net',
|
|
60
55
|
provider: 'CauchyE'
|
|
61
56
|
}],
|
|
62
57
|
rest: [{
|
|
63
|
-
address: 'https://
|
|
64
|
-
provider: 'CauchyE'
|
|
65
|
-
}, {
|
|
66
|
-
address: 'https://b-node.sunrise-test-1.cauchye.net:1318',
|
|
58
|
+
address: 'https://sunrise-test-da-5.cauchye.net:1318',
|
|
67
59
|
provider: 'CauchyE'
|
|
68
60
|
}],
|
|
69
61
|
grpc: [{
|
|
70
|
-
address: 'https://
|
|
71
|
-
provider: 'CauchyE'
|
|
72
|
-
}, {
|
|
73
|
-
address: 'https://b.sunrise-test-1.cauchye.net:9092',
|
|
62
|
+
address: 'https://sunrise-test-da-5.cauchye.net:9092',
|
|
74
63
|
provider: 'CauchyE'
|
|
75
64
|
}]
|
|
76
65
|
},
|
|
@@ -5,6 +5,7 @@ const info = {
|
|
|
5
5
|
chainName: 'bitbadges',
|
|
6
6
|
assets: [{
|
|
7
7
|
description: '$BADGE is the native in-app token for BitBadges.',
|
|
8
|
+
extendedDescription: '$BADGE is the native in-app currency for the BitBadges app, blockchain, and ecosystem. It is intended to be used for both chain-native functionalities and also as an in-app currency for badge payments.',
|
|
8
9
|
denomUnits: [{
|
|
9
10
|
denom: 'ubadge',
|
|
10
11
|
exponent: 0
|
|
@@ -17,10 +18,12 @@ const info = {
|
|
|
17
18
|
display: 'badge',
|
|
18
19
|
symbol: 'BADGE',
|
|
19
20
|
logoURIs: {
|
|
20
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.png'
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.svg'
|
|
21
23
|
},
|
|
22
24
|
images: [{
|
|
23
|
-
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.png'
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitbadges/images/badge_logo.svg'
|
|
24
27
|
}],
|
|
25
28
|
socials: {
|
|
26
29
|
website: 'https://bitbadges.io/',
|
|
@@ -1,6 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'bitbadges',
|
|
7
|
+
clientId: '07-tendermint-10',
|
|
8
|
+
connectionId: 'connection-6'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'noble',
|
|
12
|
+
clientId: '07-tendermint-172',
|
|
13
|
+
connectionId: 'connection-165'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-2',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-158',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}, {
|
|
4
32
|
$schema: '../ibc_data.schema.json',
|
|
5
33
|
chain1: {
|
|
6
34
|
chainName: 'bitbadges',
|
package/mainnet/cheqd/chain.js
CHANGED
|
@@ -97,6 +97,10 @@ const info = {
|
|
|
97
97
|
address: 'https://cheq-rpc.kleomedes.network',
|
|
98
98
|
provider: 'Kleomedes'
|
|
99
99
|
},
|
|
100
|
+
{
|
|
101
|
+
address: 'https://cheqd.srvs.vnodesv.net/rpc',
|
|
102
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
103
|
+
},
|
|
100
104
|
{
|
|
101
105
|
address: 'https://cheqd-rpc.publicnode.com:443',
|
|
102
106
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
@@ -143,6 +147,10 @@ const info = {
|
|
|
143
147
|
address: 'https://cheq-api.kleomedes.network',
|
|
144
148
|
provider: 'Kleomedes'
|
|
145
149
|
},
|
|
150
|
+
{
|
|
151
|
+
address: 'https://cheqd.srvs.vnodesv.net/rest',
|
|
152
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
153
|
+
},
|
|
146
154
|
{
|
|
147
155
|
address: 'https://cheqd-rest.publicnode.com',
|
|
148
156
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
@@ -177,6 +185,10 @@ const info = {
|
|
|
177
185
|
address: 'grpc-cheqd.blockval.io:9290',
|
|
178
186
|
provider: 'Blockval'
|
|
179
187
|
},
|
|
188
|
+
{
|
|
189
|
+
address: 'https://cheqd.srvs.vnodesv.net/grpc',
|
|
190
|
+
provider: 'vNodes[V] Ser[V]ices'
|
|
191
|
+
},
|
|
180
192
|
{
|
|
181
193
|
address: 'cheqd-grpc.publicnode.com:443',
|
|
182
194
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
@@ -88,6 +88,30 @@ const info = {
|
|
|
88
88
|
},
|
|
89
89
|
typeAsset: 'sdk.coin'
|
|
90
90
|
},
|
|
91
|
+
{
|
|
92
|
+
description: 'BeerDog',
|
|
93
|
+
denomUnits: [{
|
|
94
|
+
denom: 'factory/chihuahua1sj9verkuk8aa9jrngnpwup6zjht4vwngjlpemnt9w38ccp0qnlcswvsuzc/beer',
|
|
95
|
+
exponent: 0
|
|
96
|
+
}, {
|
|
97
|
+
denom: 'BEER',
|
|
98
|
+
exponent: 6
|
|
99
|
+
}],
|
|
100
|
+
base: 'factory/chihuahua1sj9verkuk8aa9jrngnpwup6zjht4vwngjlpemnt9w38ccp0qnlcswvsuzc/beer',
|
|
101
|
+
name: 'BEER',
|
|
102
|
+
display: 'BEER',
|
|
103
|
+
symbol: 'BEER',
|
|
104
|
+
logoURIs: {
|
|
105
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/beer.png'
|
|
106
|
+
},
|
|
107
|
+
images: [{
|
|
108
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/beer.png',
|
|
109
|
+
theme: {
|
|
110
|
+
primaryColorHex: '#d9905f'
|
|
111
|
+
}
|
|
112
|
+
}],
|
|
113
|
+
typeAsset: 'sdk.coin'
|
|
114
|
+
},
|
|
91
115
|
{
|
|
92
116
|
description: 'Woof',
|
|
93
117
|
denomUnits: [{
|
|
@@ -409,6 +409,51 @@ const info = {
|
|
|
409
409
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg'
|
|
410
410
|
},
|
|
411
411
|
coingeckoId: 'saga-2'
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
description: 'XRPL EVM Token',
|
|
415
|
+
denomUnits: [{
|
|
416
|
+
denom: 'ibc/8464A63954C0350A26C8588E20719F3A0AC8705E4CA0F7450B60C3F16B2D3421',
|
|
417
|
+
exponent: 0,
|
|
418
|
+
aliases: ['axrp']
|
|
419
|
+
}, {
|
|
420
|
+
denom: 'xrp',
|
|
421
|
+
exponent: 18
|
|
422
|
+
}],
|
|
423
|
+
typeAsset: 'ics20',
|
|
424
|
+
base: 'ibc/8464A63954C0350A26C8588E20719F3A0AC8705E4CA0F7450B60C3F16B2D3421',
|
|
425
|
+
name: 'Ripple',
|
|
426
|
+
display: 'xrp',
|
|
427
|
+
symbol: 'XRP',
|
|
428
|
+
traces: [{
|
|
429
|
+
type: 'ibc',
|
|
430
|
+
counterparty: {
|
|
431
|
+
chainName: 'xrplevm',
|
|
432
|
+
baseDenom: 'axrp',
|
|
433
|
+
channelId: 'channel-1'
|
|
434
|
+
},
|
|
435
|
+
chain: {
|
|
436
|
+
channelId: 'channel-27',
|
|
437
|
+
path: 'transfer/channel-27/axrp'
|
|
438
|
+
}
|
|
439
|
+
}],
|
|
440
|
+
images: [{
|
|
441
|
+
imageSync: {
|
|
442
|
+
chainName: 'xrplevm',
|
|
443
|
+
baseDenom: 'axrp'
|
|
444
|
+
},
|
|
445
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png',
|
|
446
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg',
|
|
447
|
+
theme: {
|
|
448
|
+
primaryColorHex: '#040404',
|
|
449
|
+
darkMode: true
|
|
450
|
+
}
|
|
451
|
+
}],
|
|
452
|
+
logoURIs: {
|
|
453
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png',
|
|
454
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg'
|
|
455
|
+
},
|
|
456
|
+
coingeckoId: 'ripple'
|
|
412
457
|
}
|
|
413
458
|
]
|
|
414
459
|
};
|
|
@@ -144,6 +144,35 @@ const info = [
|
|
|
144
144
|
}
|
|
145
145
|
}]
|
|
146
146
|
},
|
|
147
|
+
{
|
|
148
|
+
$schema: '../ibc_data.schema.json',
|
|
149
|
+
chain1: {
|
|
150
|
+
chainName: 'bitbadges',
|
|
151
|
+
clientId: '07-tendermint-10',
|
|
152
|
+
connectionId: 'connection-6'
|
|
153
|
+
},
|
|
154
|
+
chain2: {
|
|
155
|
+
chainName: 'noble',
|
|
156
|
+
clientId: '07-tendermint-172',
|
|
157
|
+
connectionId: 'connection-165'
|
|
158
|
+
},
|
|
159
|
+
channels: [{
|
|
160
|
+
chain1: {
|
|
161
|
+
channelId: 'channel-2',
|
|
162
|
+
portId: 'transfer'
|
|
163
|
+
},
|
|
164
|
+
chain2: {
|
|
165
|
+
channelId: 'channel-158',
|
|
166
|
+
portId: 'transfer'
|
|
167
|
+
},
|
|
168
|
+
ordering: 'unordered',
|
|
169
|
+
version: 'ics20-1',
|
|
170
|
+
tags: {
|
|
171
|
+
status: 'live',
|
|
172
|
+
preferred: true
|
|
173
|
+
}
|
|
174
|
+
}]
|
|
175
|
+
},
|
|
147
176
|
{
|
|
148
177
|
$schema: '../ibc_data.schema.json',
|
|
149
178
|
chain1: {
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const info = {
|
|
4
4
|
$schema: '../assetlist.schema.json',
|
|
5
5
|
chainName: 'sunrise',
|
|
6
|
-
assets: [
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
7
8
|
description: 'The native token of the Sunrise network for staking. This token is non transferrable. This token can be retrieved by providing liquidity.',
|
|
8
9
|
denomUnits: [{
|
|
9
10
|
denom: 'uvrise',
|
|
@@ -33,8 +34,9 @@ const info = {
|
|
|
33
34
|
twitter: 'https://twitter.com/SunriseLayer'
|
|
34
35
|
},
|
|
35
36
|
typeAsset: 'sdk.coin'
|
|
36
|
-
},
|
|
37
|
-
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
description: 'The native token of the Sunrise network.',
|
|
38
40
|
denomUnits: [{
|
|
39
41
|
denom: 'urise',
|
|
40
42
|
exponent: 0,
|
|
@@ -63,6 +65,38 @@ const info = {
|
|
|
63
65
|
twitter: 'https://twitter.com/SunriseLayer'
|
|
64
66
|
},
|
|
65
67
|
typeAsset: 'sdk.coin'
|
|
66
|
-
}
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
description: 'The USD stable coin of the Sunrise network for fees.',
|
|
71
|
+
denomUnits: [{
|
|
72
|
+
denom: 'uusdrise',
|
|
73
|
+
exponent: 0,
|
|
74
|
+
aliases: ['microUSDrise', 'microusdrise']
|
|
75
|
+
}, {
|
|
76
|
+
denom: 'usdrise',
|
|
77
|
+
exponent: 6
|
|
78
|
+
}],
|
|
79
|
+
base: 'uusdrise',
|
|
80
|
+
name: 'Sunrise USDrise',
|
|
81
|
+
display: 'usdrise',
|
|
82
|
+
symbol: 'USDRISE',
|
|
83
|
+
logoURIs: {
|
|
84
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
85
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg'
|
|
86
|
+
},
|
|
87
|
+
images: [{
|
|
88
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg',
|
|
89
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
90
|
+
theme: {
|
|
91
|
+
primaryColorHex: '#ecbc64'
|
|
92
|
+
}
|
|
93
|
+
}],
|
|
94
|
+
socials: {
|
|
95
|
+
website: 'https://sunriselayer.io/',
|
|
96
|
+
twitter: 'https://twitter.com/SunriseLayer'
|
|
97
|
+
},
|
|
98
|
+
typeAsset: 'sdk.coin'
|
|
99
|
+
}
|
|
100
|
+
]
|
|
67
101
|
};
|
|
68
102
|
exports.default = info;
|
package/mainnet/sunrise/chain.js
CHANGED
|
@@ -7,13 +7,17 @@ const info = {
|
|
|
7
7
|
description: 'Taketitan the future of the asset management industry.',
|
|
8
8
|
extendedDescription: 'Taketitan is seen as the future of the asset management industry. This new blockchain technology is changing how asset management works in exciting ways.\n\nTaketitan aims to make managing assets simpler, faster, and more secure. By using blockchain technology, it provides a transparent and trustworthy system where all transactions are recorded in a secure and unchangeable way. This helps reduce the risk of fraud and errors, making asset management safer for everyone.\n\nWith Taketitan, managing assets becomes more efficient. Transactions are processed quickly, and the costs are lower compared to traditional methods. This means more people can benefit from high-quality asset management services without the high fees usually involved.\n\nTaketitan also makes it easier for people to track and manage their investments. Everything is done through a digital platform that is easy to use and always available. This gives users better control and visibility over their assets.\n\nIn short, Taketitan is revolutionizing the asset management industry by making it more secure, efficient, and accessible for everyone. This blockchain technology is paving the way for a new era in how we manage and grow our financial assets.',
|
|
9
9
|
denomUnits: [{
|
|
10
|
-
denom: '
|
|
11
|
-
exponent: 0
|
|
10
|
+
denom: 'utitan',
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['microtitan']
|
|
13
|
+
}, {
|
|
14
|
+
denom: 'titan',
|
|
15
|
+
exponent: 6
|
|
12
16
|
}],
|
|
13
|
-
base: '
|
|
14
|
-
name: '
|
|
15
|
-
display: '
|
|
16
|
-
symbol: '
|
|
17
|
+
base: 'utitan',
|
|
18
|
+
name: 'Titan',
|
|
19
|
+
display: 'titan',
|
|
20
|
+
symbol: 'TITAN',
|
|
17
21
|
logoURIs: {
|
|
18
22
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/taketitan/images/taketitan.png',
|
|
19
23
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/taketitan/images/taketitan.svg'
|
|
@@ -8,15 +8,15 @@ const info = {
|
|
|
8
8
|
website: 'https://taketitan.com/',
|
|
9
9
|
prettyName: 'TakeTitan',
|
|
10
10
|
chainType: 'cosmos',
|
|
11
|
-
chainId: 'taketitan-
|
|
12
|
-
bech32Prefix: '
|
|
13
|
-
daemonName: '
|
|
14
|
-
nodeHome: '$HOME/.
|
|
11
|
+
chainId: 'taketitan-1',
|
|
12
|
+
bech32Prefix: 'titan',
|
|
13
|
+
daemonName: 'titand',
|
|
14
|
+
nodeHome: '$HOME/.titand',
|
|
15
15
|
keyAlgos: ['secp256k1'],
|
|
16
|
-
slip44:
|
|
16
|
+
slip44: 118,
|
|
17
17
|
staking: {
|
|
18
18
|
stakingTokens: [{
|
|
19
|
-
denom: '
|
|
19
|
+
denom: 'utitan'
|
|
20
20
|
}],
|
|
21
21
|
lockDuration: {
|
|
22
22
|
time: '1814400s'
|
|
@@ -24,23 +24,23 @@ const info = {
|
|
|
24
24
|
},
|
|
25
25
|
fees: {
|
|
26
26
|
feeTokens: [{
|
|
27
|
-
denom: '
|
|
28
|
-
lowGasPrice: 0.
|
|
29
|
-
averageGasPrice: 0.
|
|
30
|
-
highGasPrice: 0.
|
|
27
|
+
denom: 'utitan',
|
|
28
|
+
lowGasPrice: 0.025,
|
|
29
|
+
averageGasPrice: 0.03,
|
|
30
|
+
highGasPrice: 0.035
|
|
31
31
|
}]
|
|
32
32
|
},
|
|
33
33
|
apis: {
|
|
34
34
|
rpc: [{
|
|
35
|
-
address: 'https://
|
|
35
|
+
address: 'https://rpc.taketitan.com',
|
|
36
36
|
provider: 'taketitan'
|
|
37
37
|
}],
|
|
38
38
|
rest: [{
|
|
39
|
-
address: 'https://
|
|
39
|
+
address: 'https://lcd.taketitan.com',
|
|
40
40
|
provider: 'taketitan'
|
|
41
41
|
}],
|
|
42
42
|
grpc: [{
|
|
43
|
-
address: 'https://
|
|
43
|
+
address: 'https://grpc.taketitan.com',
|
|
44
44
|
provider: 'taketitan'
|
|
45
45
|
}]
|
|
46
46
|
},
|
|
@@ -50,9 +50,9 @@ const info = {
|
|
|
50
50
|
},
|
|
51
51
|
explorers: [{
|
|
52
52
|
kind: 'ping.pub',
|
|
53
|
-
url: 'https://
|
|
54
|
-
txPage: 'https://
|
|
55
|
-
accountPage: 'https://
|
|
53
|
+
url: 'https://blockexplorer.taketitan.com',
|
|
54
|
+
txPage: 'https://blockexplorer.taketitan.com/tx/${txHash}',
|
|
55
|
+
accountPage: 'https://blockexplorer.taketitan.com/accounts/${accountAddress}'
|
|
56
56
|
}],
|
|
57
57
|
keywords: [],
|
|
58
58
|
images: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.19",
|
|
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.19"
|
|
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": "d62c9612ffa12c8ddf276a1644a563f6bb0edfa4"
|
|
43
43
|
}
|
|
@@ -4,27 +4,18 @@ const info = {
|
|
|
4
4
|
$schema: '../../assetlist.schema.json',
|
|
5
5
|
chainName: 'safrochaintestnet',
|
|
6
6
|
assets: [{
|
|
7
|
-
description: 'The native token of Safrochain testnet used for staking, governance, and fees.',
|
|
8
|
-
denomUnits: [
|
|
9
|
-
|
|
10
|
-
denom: 'saf',
|
|
7
|
+
description: 'The native token of Safrochain testnet used for staking, governance, and gas fees.',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'usaf',
|
|
11
10
|
exponent: 0,
|
|
12
11
|
aliases: ['microsaf']
|
|
13
|
-
},
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
denom: 'hela',
|
|
21
|
-
exponent: 6,
|
|
22
|
-
aliases: []
|
|
23
|
-
}
|
|
24
|
-
],
|
|
25
|
-
base: 'saf',
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'saf',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'usaf',
|
|
26
17
|
name: 'Safrochain',
|
|
27
|
-
display: '
|
|
18
|
+
display: 'saf',
|
|
28
19
|
symbol: 'SAF',
|
|
29
20
|
logoURIs: {
|
|
30
21
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/safrochaintestnet/images/saf.png',
|
|
@@ -8,15 +8,15 @@ const info = {
|
|
|
8
8
|
networkType: 'testnet',
|
|
9
9
|
website: 'https://safrochain.com',
|
|
10
10
|
prettyName: 'Safrochain Testnet',
|
|
11
|
-
chainId: '
|
|
11
|
+
chainId: 'safro-testnet-1',
|
|
12
12
|
bech32Prefix: 'addr_safro',
|
|
13
13
|
daemonName: 'safrochaind',
|
|
14
|
-
nodeHome: '.
|
|
14
|
+
nodeHome: '.safrochain',
|
|
15
15
|
keyAlgos: ['secp256k1', 'ed25519'],
|
|
16
16
|
slip44: 118,
|
|
17
17
|
fees: {
|
|
18
18
|
feeTokens: [{
|
|
19
|
-
denom: '
|
|
19
|
+
denom: 'usaf',
|
|
20
20
|
fixedMinGasPrice: 0.001,
|
|
21
21
|
lowGasPrice: 0.0025,
|
|
22
22
|
averageGasPrice: 0.025,
|
|
@@ -25,18 +25,13 @@ const info = {
|
|
|
25
25
|
},
|
|
26
26
|
staking: {
|
|
27
27
|
stakingTokens: [{
|
|
28
|
-
denom: '
|
|
28
|
+
denom: 'usaf'
|
|
29
29
|
}]
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
gitRepo: 'https://github.com/Safrochain-Org/safrochain-node',
|
|
33
|
-
recommendedVersion: '
|
|
34
|
-
compatibleVersions: ['
|
|
35
|
-
binaries: {
|
|
36
|
-
"linux/amd64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_linux_amd64.tar.gz',
|
|
37
|
-
"darwin/amd64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_darwin_amd64.tar.gz',
|
|
38
|
-
"darwin/arm64": 'https://github.com/Safrochain-Org/safrochain-node/releases/download/v1.0.0/v1.0.0_darwin_arm64.tar.gz'
|
|
39
|
-
}
|
|
33
|
+
recommendedVersion: 'v0.1.0',
|
|
34
|
+
compatibleVersions: ['v0.1.0']
|
|
40
35
|
},
|
|
41
36
|
apis: {
|
|
42
37
|
rpc: [{
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const info = {
|
|
4
4
|
$schema: '../../assetlist.schema.json',
|
|
5
5
|
chainName: 'sunrisetestnet',
|
|
6
|
-
assets: [
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
7
8
|
description: 'The native token of the Sunrise network for staking. This token is non transferrable. This token can be retrieved by providing liquidity.',
|
|
8
9
|
denomUnits: [{
|
|
9
10
|
denom: 'uvrise',
|
|
@@ -30,8 +31,9 @@ const info = {
|
|
|
30
31
|
twitter: 'https://twitter.com/SunriseLayer'
|
|
31
32
|
},
|
|
32
33
|
typeAsset: 'sdk.coin'
|
|
33
|
-
},
|
|
34
|
-
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
description: 'The native token of the Sunrise network.',
|
|
35
37
|
denomUnits: [{
|
|
36
38
|
denom: 'urise',
|
|
37
39
|
exponent: 0,
|
|
@@ -57,6 +59,38 @@ const info = {
|
|
|
57
59
|
twitter: 'https://twitter.com/SunriseLayer'
|
|
58
60
|
},
|
|
59
61
|
typeAsset: 'sdk.coin'
|
|
60
|
-
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
description: 'The USD stable coin of the Sunrise network for fees.',
|
|
65
|
+
denomUnits: [{
|
|
66
|
+
denom: 'uusdrise',
|
|
67
|
+
exponent: 0,
|
|
68
|
+
aliases: ['microUSDrise', 'microusdrise']
|
|
69
|
+
}, {
|
|
70
|
+
denom: 'usdrise',
|
|
71
|
+
exponent: 6
|
|
72
|
+
}],
|
|
73
|
+
base: 'uusdrise',
|
|
74
|
+
name: 'Sunrise USDrise',
|
|
75
|
+
display: 'usdrise',
|
|
76
|
+
symbol: 'USDRISE',
|
|
77
|
+
logoURIs: {
|
|
78
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
79
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg'
|
|
80
|
+
},
|
|
81
|
+
images: [{
|
|
82
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg',
|
|
83
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
84
|
+
theme: {
|
|
85
|
+
primaryColorHex: '#ecbc64'
|
|
86
|
+
}
|
|
87
|
+
}],
|
|
88
|
+
socials: {
|
|
89
|
+
website: 'https://sunriselayer.io/',
|
|
90
|
+
twitter: 'https://twitter.com/SunriseLayer'
|
|
91
|
+
},
|
|
92
|
+
typeAsset: 'sdk.coin'
|
|
93
|
+
}
|
|
94
|
+
]
|
|
61
95
|
};
|
|
62
96
|
exports.default = info;
|
|
@@ -7,7 +7,7 @@ const info = {
|
|
|
7
7
|
networkType: 'testnet',
|
|
8
8
|
prettyName: 'Sunrise Testnet',
|
|
9
9
|
chainType: 'cosmos',
|
|
10
|
-
chainId: 'sunrise-test-
|
|
10
|
+
chainId: 'sunrise-test-da-5',
|
|
11
11
|
bech32Prefix: 'sunrise',
|
|
12
12
|
daemonName: 'sunrised',
|
|
13
13
|
nodeHome: '$HOME/.sunrise',
|
|
@@ -15,7 +15,7 @@ const info = {
|
|
|
15
15
|
slip44: 118,
|
|
16
16
|
fees: {
|
|
17
17
|
feeTokens: [{
|
|
18
|
-
denom: '
|
|
18
|
+
denom: 'uusdrise',
|
|
19
19
|
fixedMinGasPrice: 0,
|
|
20
20
|
lowGasPrice: 0.0025,
|
|
21
21
|
averageGasPrice: 0.025,
|
|
@@ -29,24 +29,22 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
gitRepo: 'https://github.com/sunriselayer/sunrise',
|
|
32
|
-
recommendedVersion: 'v0.
|
|
33
|
-
compatibleVersions: ['v0.
|
|
32
|
+
recommendedVersion: 'v0.6.0',
|
|
33
|
+
compatibleVersions: ['v0.6.0'],
|
|
34
34
|
binaries: {
|
|
35
|
-
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/v0.
|
|
35
|
+
"linux/amd64": 'https://github.com/sunriselayer/sunrise/releases/download/v0.6.0/sunrised'
|
|
36
36
|
},
|
|
37
37
|
consensus: {
|
|
38
38
|
type: 'cometbft',
|
|
39
|
-
version: 'v0.
|
|
40
|
-
repo: 'https://github.com/sunriselayer/sunrise-core',
|
|
41
|
-
tag: 'v0.0.5-cmt-v0.38.2'
|
|
39
|
+
version: 'v0.38.17'
|
|
42
40
|
},
|
|
43
41
|
sdk: {
|
|
44
42
|
type: 'cosmos',
|
|
45
|
-
version: '
|
|
43
|
+
version: 'v0.53.2'
|
|
46
44
|
},
|
|
47
45
|
ibc: {
|
|
48
46
|
type: 'go',
|
|
49
|
-
version: '
|
|
47
|
+
version: 'v10.2.0'
|
|
50
48
|
}
|
|
51
49
|
},
|
|
52
50
|
logoURIs: {
|
|
@@ -55,24 +53,15 @@ const info = {
|
|
|
55
53
|
},
|
|
56
54
|
apis: {
|
|
57
55
|
rpc: [{
|
|
58
|
-
address: 'https://
|
|
59
|
-
provider: 'CauchyE'
|
|
60
|
-
}, {
|
|
61
|
-
address: 'https://b-node.sunrise-test-1.cauchye.net/',
|
|
56
|
+
address: 'https://sunrise-test-da-5.cauchye.net',
|
|
62
57
|
provider: 'CauchyE'
|
|
63
58
|
}],
|
|
64
59
|
rest: [{
|
|
65
|
-
address: 'https://
|
|
66
|
-
provider: 'CauchyE'
|
|
67
|
-
}, {
|
|
68
|
-
address: 'https://b-node.sunrise-test-1.cauchye.net:1318',
|
|
60
|
+
address: 'https://sunrise-test-da-5.cauchye.net:1318',
|
|
69
61
|
provider: 'CauchyE'
|
|
70
62
|
}],
|
|
71
63
|
grpc: [{
|
|
72
|
-
address: 'https://
|
|
73
|
-
provider: 'CauchyE'
|
|
74
|
-
}, {
|
|
75
|
-
address: 'https://b.sunrise-test-1.cauchye.net:9092',
|
|
64
|
+
address: 'https://sunrise-test-da-5.cauchye.net:9092',
|
|
76
65
|
provider: 'CauchyE'
|
|
77
66
|
}]
|
|
78
67
|
},
|