chain-registry 2.0.18 → 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/ibc-data.js +28 -0
- package/esm/mainnet/cheqd/chain.js +12 -0
- package/esm/mainnet/noble/ibc-data.js +29 -0
- package/esm/mainnet/taketitan/asset-list.js +10 -6
- package/esm/mainnet/taketitan/chain.js +16 -16
- package/mainnet/bitbadges/ibc-data.js +28 -0
- package/mainnet/cheqd/chain.js +12 -0
- package/mainnet/noble/ibc-data.js +29 -0
- package/mainnet/taketitan/asset-list.js +10 -6
- package/mainnet/taketitan/chain.js +16 -16
- package/package.json +3 -3
|
@@ -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'
|
|
@@ -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: {
|
|
@@ -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: [{
|
|
@@ -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'
|
|
@@ -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: {
|
|
@@ -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
|
}
|