chain-registry 2.0.60 → 2.0.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/mainnet/asset-lists.js +2 -0
- package/esm/mainnet/bitway/asset-list.js +109 -0
- package/esm/mainnet/bitway/chain.js +183 -0
- package/esm/mainnet/bitway/ibc-data.js +30 -0
- package/esm/mainnet/bitway/index.js +6 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/doravota/chain.js +18 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/injective/ibc-data.js +29 -0
- package/esm/mainnet/lumera/ibc-data.js +35 -3
- package/esm/mainnet/noble/ibc-data.js +29 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/bitway/asset-list.d.ts +3 -0
- package/mainnet/bitway/asset-list.js +111 -0
- package/mainnet/bitway/chain.d.ts +3 -0
- package/mainnet/bitway/chain.js +185 -0
- package/mainnet/bitway/ibc-data.d.ts +3 -0
- package/mainnet/bitway/ibc-data.js +32 -0
- package/mainnet/bitway/index.d.ts +3 -0
- package/mainnet/bitway/index.js +12 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/doravota/chain.js +18 -0
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/injective/ibc-data.js +29 -0
- package/mainnet/lumera/ibc-data.js +35 -3
- package/mainnet/noble/ibc-data.js +29 -0
- package/package.json +3 -3
|
@@ -26,6 +26,7 @@ import * as _beezee from './beezee';
|
|
|
26
26
|
import * as _bitbadges from './bitbadges';
|
|
27
27
|
import * as _bitcanna from './bitcanna';
|
|
28
28
|
import * as _bitsong from './bitsong';
|
|
29
|
+
import * as _bitway from './bitway';
|
|
29
30
|
import * as _blockx from './blockx';
|
|
30
31
|
import * as _bluechip from './bluechip';
|
|
31
32
|
import * as _bluzelle from './bluzelle';
|
|
@@ -242,6 +243,7 @@ const assetList = [
|
|
|
242
243
|
_bitbadges.assetList,
|
|
243
244
|
_bitcanna.assetList,
|
|
244
245
|
_bitsong.assetList,
|
|
246
|
+
_bitway.assetList,
|
|
245
247
|
_blockx.assetList,
|
|
246
248
|
_bluechip.assetList,
|
|
247
249
|
_bluzelle.assetList,
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'bitway',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'The native token of Bitway.',
|
|
7
|
+
denomUnits: [{
|
|
8
|
+
denom: 'ubtw',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'btw',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ubtw',
|
|
15
|
+
name: 'Bitway native token',
|
|
16
|
+
display: 'btw',
|
|
17
|
+
symbol: 'BTW',
|
|
18
|
+
logoURIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.svg'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.svg'
|
|
25
|
+
}],
|
|
26
|
+
socials: {
|
|
27
|
+
website: 'https://bitway.com',
|
|
28
|
+
twitter: 'https://x.com/BitwayOfficial'
|
|
29
|
+
},
|
|
30
|
+
typeAsset: 'sdk.coin'
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
description: 'BTC-pegged token on Bitway.',
|
|
34
|
+
extendedDescription: 'BTCT is the native token of the Bitway, fully pegged 1:1 to BTC held in a vault secured by 21 TSS signers on the Bitcoin mainnet. As a synthetic asset, BTCT enables Bitcoin liquidity to seamlessly flow into the Bitway and the broader Cosmos ecosystem.',
|
|
35
|
+
denomUnits: [{
|
|
36
|
+
denom: 'sat',
|
|
37
|
+
exponent: 0
|
|
38
|
+
}, {
|
|
39
|
+
denom: 'BTCT',
|
|
40
|
+
exponent: 8
|
|
41
|
+
}],
|
|
42
|
+
base: 'sat',
|
|
43
|
+
name: 'Bitway Bitcoin',
|
|
44
|
+
display: 'BTCT',
|
|
45
|
+
symbol: 'BTCT',
|
|
46
|
+
traces: [{
|
|
47
|
+
type: 'bridge',
|
|
48
|
+
counterparty: {
|
|
49
|
+
chainName: 'bitcoin',
|
|
50
|
+
baseDenom: 'sat'
|
|
51
|
+
},
|
|
52
|
+
provider: 'Bitway'
|
|
53
|
+
}],
|
|
54
|
+
images: [{
|
|
55
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/BTCT.svg',
|
|
56
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/BTCT.png'
|
|
57
|
+
}],
|
|
58
|
+
socials: {
|
|
59
|
+
website: 'https://bitway.com',
|
|
60
|
+
twitter: 'https://x.com/BitwayOfficial'
|
|
61
|
+
},
|
|
62
|
+
typeAsset: 'sdk.coin'
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
description: 'Noble USDC on Bitway.',
|
|
66
|
+
denomUnits: [{
|
|
67
|
+
denom: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
|
|
68
|
+
exponent: 0
|
|
69
|
+
}, {
|
|
70
|
+
denom: 'usdc',
|
|
71
|
+
exponent: 6
|
|
72
|
+
}],
|
|
73
|
+
typeAsset: 'ics20',
|
|
74
|
+
base: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
|
|
75
|
+
name: 'Noble USDC',
|
|
76
|
+
display: 'usdc',
|
|
77
|
+
symbol: 'USDC',
|
|
78
|
+
traces: [{
|
|
79
|
+
type: 'ibc',
|
|
80
|
+
counterparty: {
|
|
81
|
+
chainName: 'noble',
|
|
82
|
+
baseDenom: 'uusdc',
|
|
83
|
+
channelId: 'channel-172'
|
|
84
|
+
},
|
|
85
|
+
chain: {
|
|
86
|
+
channelId: 'channel-13',
|
|
87
|
+
path: 'transfer/channel-13/uusdc'
|
|
88
|
+
}
|
|
89
|
+
}],
|
|
90
|
+
images: [{
|
|
91
|
+
imageSync: {
|
|
92
|
+
chainName: 'noble',
|
|
93
|
+
baseDenom: 'uusdc'
|
|
94
|
+
},
|
|
95
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
96
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
97
|
+
theme: {
|
|
98
|
+
circle: true
|
|
99
|
+
}
|
|
100
|
+
}],
|
|
101
|
+
logoURIs: {
|
|
102
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
103
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
104
|
+
},
|
|
105
|
+
coingeckoId: 'usd-coin'
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
};
|
|
109
|
+
export default info;
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'bitway',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
website: 'https://bitway.com/',
|
|
7
|
+
prettyName: 'Bitway',
|
|
8
|
+
chainType: 'cosmos',
|
|
9
|
+
chainId: 'bitway-1',
|
|
10
|
+
bech32Prefix: 'bc',
|
|
11
|
+
daemonName: 'bitwayd',
|
|
12
|
+
nodeHome: '$HOME/.bitway',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'ubtw',
|
|
18
|
+
fixedMinGasPrice: 0.0006,
|
|
19
|
+
lowGasPrice: 0.0006,
|
|
20
|
+
averageGasPrice: 0.0008,
|
|
21
|
+
highGasPrice: 0.001
|
|
22
|
+
}, {
|
|
23
|
+
denom: 'sat',
|
|
24
|
+
fixedMinGasPrice: 0.000001,
|
|
25
|
+
lowGasPrice: 0.000001,
|
|
26
|
+
averageGasPrice: 0.0000015,
|
|
27
|
+
highGasPrice: 0.000002
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
staking: {
|
|
31
|
+
stakingTokens: [{
|
|
32
|
+
denom: 'ubtw'
|
|
33
|
+
}]
|
|
34
|
+
},
|
|
35
|
+
codebase: {
|
|
36
|
+
gitRepo: 'https://github.com/bitwaylabs/bitway',
|
|
37
|
+
recommendedVersion: 'v2.0.0',
|
|
38
|
+
compatibleVersions: ['v2.0.0'],
|
|
39
|
+
consensus: {
|
|
40
|
+
type: 'cometbft',
|
|
41
|
+
version: 'v0.38.12'
|
|
42
|
+
},
|
|
43
|
+
genesis: {
|
|
44
|
+
genesisUrl: 'https://github.com/bitwaylabs/networks/raw/main/mainnet/bitway-1/genesis.tar.gz'
|
|
45
|
+
},
|
|
46
|
+
sdk: {
|
|
47
|
+
type: 'cosmos',
|
|
48
|
+
version: 'v0.50.14'
|
|
49
|
+
},
|
|
50
|
+
ibc: {
|
|
51
|
+
type: 'go',
|
|
52
|
+
version: 'v8.5.3'
|
|
53
|
+
},
|
|
54
|
+
cosmwasm: {
|
|
55
|
+
version: 'v0.53.0',
|
|
56
|
+
enabled: true
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
logoURIs: {
|
|
60
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.png',
|
|
61
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.svg'
|
|
62
|
+
},
|
|
63
|
+
description: 'A fully Bitcoin-Compatible L1 blockchain for the BTCFi',
|
|
64
|
+
apis: {
|
|
65
|
+
rpc: [
|
|
66
|
+
{
|
|
67
|
+
address: 'https://rpc.bitway.com',
|
|
68
|
+
provider: 'Bitway Labs'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'https://rpc.bitway.nodestake.org',
|
|
72
|
+
provider: 'NodeStake'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
address: 'https://bitway-rpc.synergynodes.com/',
|
|
76
|
+
provider: 'Synergy Nodes'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://bitway.publicnode.com/',
|
|
80
|
+
provider: 'Allnodes'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
address: 'https://bitway.rpc.kjnodes.com',
|
|
84
|
+
provider: 'kjnodes'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
address: 'https://bitway-mainnet-rpc.itrocket.net',
|
|
88
|
+
provider: 'ITRocket'
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
address: 'https://bitway.rpc.m.stavr.tech',
|
|
92
|
+
provider: '🔥STAVR🔥'
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
rest: [
|
|
96
|
+
{
|
|
97
|
+
address: 'https://rest.bitway.com',
|
|
98
|
+
provider: 'Bitway Labs'
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
address: 'https://api.bitway.nodestake.org',
|
|
102
|
+
provider: 'NodeStake'
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
address: 'https://bitway-api.synergynodes.com',
|
|
106
|
+
provider: 'Synergy Nodes'
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
address: 'https://bitway-rest.publicnode.com',
|
|
110
|
+
provider: 'Allnodes'
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
address: 'https://bitway.api.kjnodes.com',
|
|
114
|
+
provider: 'kjnodes'
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
address: 'https://bitway-mainnet-api.itrocket.net',
|
|
118
|
+
provider: 'ITRocket'
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
address: 'https://bitway.api.m.stavr.tech',
|
|
122
|
+
provider: '🔥STAVR🔥'
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
grpc: [
|
|
126
|
+
{
|
|
127
|
+
address: 'grpc.bitway.com:443',
|
|
128
|
+
provider: 'Bitway Labs'
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
address: 'https://grpc.bitway.nodestake.org:443',
|
|
132
|
+
provider: 'NodeStake'
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
address: 'bitway-grpc.synergynodes.com:443',
|
|
136
|
+
provider: 'Synergy Nodes'
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
address: 'bitway-grpc.publicnode.com:443',
|
|
140
|
+
provider: 'Allnodes'
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
address: 'bitway.grpc.kjnodes.com:443',
|
|
144
|
+
provider: 'kjnodes'
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
address: 'bitway-mainnet-grpc.itrocket.net:443',
|
|
148
|
+
provider: 'ITRocket'
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
explorers: [
|
|
153
|
+
{
|
|
154
|
+
kind: 'Ping Pub',
|
|
155
|
+
url: 'https://explorer.nodestake.org/bitway',
|
|
156
|
+
txPage: 'https://explorer.nodestake.org/bitway/tx/${txHash}',
|
|
157
|
+
accountPage: 'https://explorer.nodestake.org/bitway/account/${accountAddress}'
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
kind: 'Ping Pub',
|
|
161
|
+
url: 'https://cosmosrun.info/bitway',
|
|
162
|
+
txPage: 'https://cosmosrun.info/bitway/tx/${txHash}',
|
|
163
|
+
accountPage: 'https://cosmosrun.info/bitway/account/${accountAddress}'
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
kind: 'Ping Pub',
|
|
167
|
+
url: 'https://explorer.kjnodes.com/bitway',
|
|
168
|
+
txPage: 'https://explorer.kjnodes.com/bitway/tx/${txHash}',
|
|
169
|
+
accountPage: 'https://explorer.kjnodes.com/bitway/account/${accountAddress}'
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
kind: 'Ping Pub',
|
|
173
|
+
url: 'https://explorer.stavr.tech/Bitway-Mainnet',
|
|
174
|
+
txPage: 'https://explorer.stavr.tech/Bitway-Mainnet/tx/${txHash}',
|
|
175
|
+
accountPage: 'https://explorer.stavr.tech/Bitway-Mainnet/account/${accountAddress}'
|
|
176
|
+
}
|
|
177
|
+
],
|
|
178
|
+
images: [{
|
|
179
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.png',
|
|
180
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.svg'
|
|
181
|
+
}]
|
|
182
|
+
};
|
|
183
|
+
export default info;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'bitway',
|
|
5
|
+
clientId: '07-tendermint-30',
|
|
6
|
+
connectionId: 'connection-14'
|
|
7
|
+
},
|
|
8
|
+
chain2: {
|
|
9
|
+
chainName: 'noble',
|
|
10
|
+
clientId: '07-tendermint-183',
|
|
11
|
+
connectionId: 'connection-178'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain1: {
|
|
15
|
+
channelId: 'channel-13',
|
|
16
|
+
portId: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain2: {
|
|
19
|
+
channelId: 'channel-172',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}];
|
|
30
|
+
export default info;
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -26,6 +26,7 @@ import * as _beezee from './beezee';
|
|
|
26
26
|
import * as _bitbadges from './bitbadges';
|
|
27
27
|
import * as _bitcanna from './bitcanna';
|
|
28
28
|
import * as _bitsong from './bitsong';
|
|
29
|
+
import * as _bitway from './bitway';
|
|
29
30
|
import * as _blockx from './blockx';
|
|
30
31
|
import * as _bluechip from './bluechip';
|
|
31
32
|
import * as _bluzelle from './bluzelle';
|
|
@@ -242,6 +243,7 @@ const chains = [
|
|
|
242
243
|
_bitbadges.chain,
|
|
243
244
|
_bitcanna.chain,
|
|
244
245
|
_bitsong.chain,
|
|
246
|
+
_bitway.chain,
|
|
245
247
|
_blockx.chain,
|
|
246
248
|
_bluechip.chain,
|
|
247
249
|
_bluzelle.chain,
|
|
@@ -54,6 +54,10 @@ const info = {
|
|
|
54
54
|
{
|
|
55
55
|
address: 'https://m-dora-rpc.ruangnode.com:443',
|
|
56
56
|
provider: 'ruangnode'
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
address: 'https://rpc.dora.roomit.xyz:443',
|
|
60
|
+
provider: 'Roomit'
|
|
57
61
|
}
|
|
58
62
|
],
|
|
59
63
|
rest: [
|
|
@@ -76,6 +80,10 @@ const info = {
|
|
|
76
80
|
{
|
|
77
81
|
address: 'https://m-dora-api.ruangnode.com',
|
|
78
82
|
provider: 'ruangnode'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
address: 'https://api.dora.roomit.xyz:443',
|
|
86
|
+
provider: 'Roomit'
|
|
79
87
|
}
|
|
80
88
|
],
|
|
81
89
|
grpc: [
|
|
@@ -94,6 +102,10 @@ const info = {
|
|
|
94
102
|
{
|
|
95
103
|
address: 'm-dora-grpc.ruangnode.com:30090',
|
|
96
104
|
provider: 'ruangnode'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
address: 'grpc.dora.roomit.xyz:8443',
|
|
108
|
+
provider: 'Roomit'
|
|
97
109
|
}
|
|
98
110
|
]
|
|
99
111
|
},
|
|
@@ -140,6 +152,12 @@ const info = {
|
|
|
140
152
|
kind: 'Ruangnode Explorers',
|
|
141
153
|
url: 'https://explorer.ruangnode.com/dora/staking',
|
|
142
154
|
txPage: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
kind: 'Roomit',
|
|
158
|
+
url: 'https://explorer.tendermint.roomit.xyz/dora-mainnet',
|
|
159
|
+
txPage: 'https://explorer.tendermint.roomit.xyz/dora-mainnet/transactions/${txHash}',
|
|
160
|
+
accountPage: 'https://explorer.tendermint.roomit.xyz/dora-mainnet/account/${accountAddress}'
|
|
143
161
|
}
|
|
144
162
|
]
|
|
145
163
|
};
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -21,6 +21,7 @@ import * as _beezee from './beezee';
|
|
|
21
21
|
import * as _bitbadges from './bitbadges';
|
|
22
22
|
import * as _bitcanna from './bitcanna';
|
|
23
23
|
import * as _bitsong from './bitsong';
|
|
24
|
+
import * as _bitway from './bitway';
|
|
24
25
|
import * as _bluzelle from './bluzelle';
|
|
25
26
|
import * as _bostrom from './bostrom';
|
|
26
27
|
import * as _canto from './canto';
|
|
@@ -189,6 +190,7 @@ const ibcData = [
|
|
|
189
190
|
..._bitbadges.ibcData,
|
|
190
191
|
..._bitcanna.ibcData,
|
|
191
192
|
..._bitsong.ibcData,
|
|
193
|
+
..._bitway.ibcData,
|
|
192
194
|
..._bluzelle.ibcData,
|
|
193
195
|
..._bostrom.ibcData,
|
|
194
196
|
..._canto.ibcData,
|
|
@@ -351,6 +351,35 @@ const info = [
|
|
|
351
351
|
}
|
|
352
352
|
}]
|
|
353
353
|
},
|
|
354
|
+
{
|
|
355
|
+
$schema: '../ibc_data.schema.json',
|
|
356
|
+
chain1: {
|
|
357
|
+
chainName: 'injective',
|
|
358
|
+
clientId: '07-tendermint-317',
|
|
359
|
+
connectionId: 'connection-327'
|
|
360
|
+
},
|
|
361
|
+
chain2: {
|
|
362
|
+
chainName: 'lumera',
|
|
363
|
+
clientId: '07-tendermint-5',
|
|
364
|
+
connectionId: 'connection-3'
|
|
365
|
+
},
|
|
366
|
+
channels: [{
|
|
367
|
+
chain1: {
|
|
368
|
+
channelId: 'channel-443',
|
|
369
|
+
portId: 'transfer'
|
|
370
|
+
},
|
|
371
|
+
chain2: {
|
|
372
|
+
channelId: 'channel-2',
|
|
373
|
+
portId: 'transfer'
|
|
374
|
+
},
|
|
375
|
+
ordering: 'unordered',
|
|
376
|
+
version: 'ics20-1',
|
|
377
|
+
tags: {
|
|
378
|
+
status: 'live',
|
|
379
|
+
preferred: true
|
|
380
|
+
}
|
|
381
|
+
}]
|
|
382
|
+
},
|
|
354
383
|
{
|
|
355
384
|
$schema: '../ibc_data.schema.json',
|
|
356
385
|
chain1: {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
const info = [
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
2
3
|
$schema: '../ibc_data.schema.json',
|
|
3
4
|
chain1: {
|
|
4
5
|
chainName: 'dydx',
|
|
@@ -26,7 +27,37 @@ const info = [{
|
|
|
26
27
|
preferred: true
|
|
27
28
|
}
|
|
28
29
|
}]
|
|
29
|
-
},
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain1: {
|
|
34
|
+
chainName: 'injective',
|
|
35
|
+
clientId: '07-tendermint-317',
|
|
36
|
+
connectionId: 'connection-327'
|
|
37
|
+
},
|
|
38
|
+
chain2: {
|
|
39
|
+
chainName: 'lumera',
|
|
40
|
+
clientId: '07-tendermint-5',
|
|
41
|
+
connectionId: 'connection-3'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain1: {
|
|
45
|
+
channelId: 'channel-443',
|
|
46
|
+
portId: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain2: {
|
|
49
|
+
channelId: 'channel-2',
|
|
50
|
+
portId: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
ordering: 'unordered',
|
|
53
|
+
version: 'ics20-1',
|
|
54
|
+
tags: {
|
|
55
|
+
status: 'live',
|
|
56
|
+
preferred: true
|
|
57
|
+
}
|
|
58
|
+
}]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
30
61
|
$schema: '../ibc_data.schema.json',
|
|
31
62
|
chain1: {
|
|
32
63
|
chainName: 'lumera',
|
|
@@ -55,5 +86,6 @@ const info = [{
|
|
|
55
86
|
dex: 'osmosis'
|
|
56
87
|
}
|
|
57
88
|
}]
|
|
58
|
-
}
|
|
89
|
+
}
|
|
90
|
+
];
|
|
59
91
|
export default info;
|
|
@@ -171,6 +171,35 @@ const info = [
|
|
|
171
171
|
}
|
|
172
172
|
}]
|
|
173
173
|
},
|
|
174
|
+
{
|
|
175
|
+
$schema: '../ibc_data.schema.json',
|
|
176
|
+
chain1: {
|
|
177
|
+
chainName: 'bitway',
|
|
178
|
+
clientId: '07-tendermint-30',
|
|
179
|
+
connectionId: 'connection-14'
|
|
180
|
+
},
|
|
181
|
+
chain2: {
|
|
182
|
+
chainName: 'noble',
|
|
183
|
+
clientId: '07-tendermint-183',
|
|
184
|
+
connectionId: 'connection-178'
|
|
185
|
+
},
|
|
186
|
+
channels: [{
|
|
187
|
+
chain1: {
|
|
188
|
+
channelId: 'channel-13',
|
|
189
|
+
portId: 'transfer'
|
|
190
|
+
},
|
|
191
|
+
chain2: {
|
|
192
|
+
channelId: 'channel-172',
|
|
193
|
+
portId: 'transfer'
|
|
194
|
+
},
|
|
195
|
+
ordering: 'unordered',
|
|
196
|
+
version: 'ics20-1',
|
|
197
|
+
tags: {
|
|
198
|
+
status: 'live',
|
|
199
|
+
preferred: true
|
|
200
|
+
}
|
|
201
|
+
}]
|
|
202
|
+
},
|
|
174
203
|
{
|
|
175
204
|
$schema: '../ibc_data.schema.json',
|
|
176
205
|
chain1: {
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -51,6 +51,7 @@ const _beezee = __importStar(require("./beezee"));
|
|
|
51
51
|
const _bitbadges = __importStar(require("./bitbadges"));
|
|
52
52
|
const _bitcanna = __importStar(require("./bitcanna"));
|
|
53
53
|
const _bitsong = __importStar(require("./bitsong"));
|
|
54
|
+
const _bitway = __importStar(require("./bitway"));
|
|
54
55
|
const _blockx = __importStar(require("./blockx"));
|
|
55
56
|
const _bluechip = __importStar(require("./bluechip"));
|
|
56
57
|
const _bluzelle = __importStar(require("./bluzelle"));
|
|
@@ -267,6 +268,7 @@ const assetList = [
|
|
|
267
268
|
_bitbadges.assetList,
|
|
268
269
|
_bitcanna.assetList,
|
|
269
270
|
_bitsong.assetList,
|
|
271
|
+
_bitway.assetList,
|
|
270
272
|
_blockx.assetList,
|
|
271
273
|
_bluechip.assetList,
|
|
272
274
|
_bluzelle.assetList,
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'bitway',
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'The native token of Bitway.',
|
|
9
|
+
denomUnits: [{
|
|
10
|
+
denom: 'ubtw',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'btw',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'ubtw',
|
|
17
|
+
name: 'Bitway native token',
|
|
18
|
+
display: 'btw',
|
|
19
|
+
symbol: 'BTW',
|
|
20
|
+
logoURIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.svg'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.svg'
|
|
27
|
+
}],
|
|
28
|
+
socials: {
|
|
29
|
+
website: 'https://bitway.com',
|
|
30
|
+
twitter: 'https://x.com/BitwayOfficial'
|
|
31
|
+
},
|
|
32
|
+
typeAsset: 'sdk.coin'
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
description: 'BTC-pegged token on Bitway.',
|
|
36
|
+
extendedDescription: 'BTCT is the native token of the Bitway, fully pegged 1:1 to BTC held in a vault secured by 21 TSS signers on the Bitcoin mainnet. As a synthetic asset, BTCT enables Bitcoin liquidity to seamlessly flow into the Bitway and the broader Cosmos ecosystem.',
|
|
37
|
+
denomUnits: [{
|
|
38
|
+
denom: 'sat',
|
|
39
|
+
exponent: 0
|
|
40
|
+
}, {
|
|
41
|
+
denom: 'BTCT',
|
|
42
|
+
exponent: 8
|
|
43
|
+
}],
|
|
44
|
+
base: 'sat',
|
|
45
|
+
name: 'Bitway Bitcoin',
|
|
46
|
+
display: 'BTCT',
|
|
47
|
+
symbol: 'BTCT',
|
|
48
|
+
traces: [{
|
|
49
|
+
type: 'bridge',
|
|
50
|
+
counterparty: {
|
|
51
|
+
chainName: 'bitcoin',
|
|
52
|
+
baseDenom: 'sat'
|
|
53
|
+
},
|
|
54
|
+
provider: 'Bitway'
|
|
55
|
+
}],
|
|
56
|
+
images: [{
|
|
57
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/BTCT.svg',
|
|
58
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/BTCT.png'
|
|
59
|
+
}],
|
|
60
|
+
socials: {
|
|
61
|
+
website: 'https://bitway.com',
|
|
62
|
+
twitter: 'https://x.com/BitwayOfficial'
|
|
63
|
+
},
|
|
64
|
+
typeAsset: 'sdk.coin'
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
description: 'Noble USDC on Bitway.',
|
|
68
|
+
denomUnits: [{
|
|
69
|
+
denom: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
|
|
70
|
+
exponent: 0
|
|
71
|
+
}, {
|
|
72
|
+
denom: 'usdc',
|
|
73
|
+
exponent: 6
|
|
74
|
+
}],
|
|
75
|
+
typeAsset: 'ics20',
|
|
76
|
+
base: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
|
|
77
|
+
name: 'Noble USDC',
|
|
78
|
+
display: 'usdc',
|
|
79
|
+
symbol: 'USDC',
|
|
80
|
+
traces: [{
|
|
81
|
+
type: 'ibc',
|
|
82
|
+
counterparty: {
|
|
83
|
+
chainName: 'noble',
|
|
84
|
+
baseDenom: 'uusdc',
|
|
85
|
+
channelId: 'channel-172'
|
|
86
|
+
},
|
|
87
|
+
chain: {
|
|
88
|
+
channelId: 'channel-13',
|
|
89
|
+
path: 'transfer/channel-13/uusdc'
|
|
90
|
+
}
|
|
91
|
+
}],
|
|
92
|
+
images: [{
|
|
93
|
+
imageSync: {
|
|
94
|
+
chainName: 'noble',
|
|
95
|
+
baseDenom: 'uusdc'
|
|
96
|
+
},
|
|
97
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
98
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
99
|
+
theme: {
|
|
100
|
+
circle: true
|
|
101
|
+
}
|
|
102
|
+
}],
|
|
103
|
+
logoURIs: {
|
|
104
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
105
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
106
|
+
},
|
|
107
|
+
coingeckoId: 'usd-coin'
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
};
|
|
111
|
+
exports.default = info;
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'bitway',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
website: 'https://bitway.com/',
|
|
9
|
+
prettyName: 'Bitway',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'bitway-1',
|
|
12
|
+
bech32Prefix: 'bc',
|
|
13
|
+
daemonName: 'bitwayd',
|
|
14
|
+
nodeHome: '$HOME/.bitway',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'ubtw',
|
|
20
|
+
fixedMinGasPrice: 0.0006,
|
|
21
|
+
lowGasPrice: 0.0006,
|
|
22
|
+
averageGasPrice: 0.0008,
|
|
23
|
+
highGasPrice: 0.001
|
|
24
|
+
}, {
|
|
25
|
+
denom: 'sat',
|
|
26
|
+
fixedMinGasPrice: 0.000001,
|
|
27
|
+
lowGasPrice: 0.000001,
|
|
28
|
+
averageGasPrice: 0.0000015,
|
|
29
|
+
highGasPrice: 0.000002
|
|
30
|
+
}]
|
|
31
|
+
},
|
|
32
|
+
staking: {
|
|
33
|
+
stakingTokens: [{
|
|
34
|
+
denom: 'ubtw'
|
|
35
|
+
}]
|
|
36
|
+
},
|
|
37
|
+
codebase: {
|
|
38
|
+
gitRepo: 'https://github.com/bitwaylabs/bitway',
|
|
39
|
+
recommendedVersion: 'v2.0.0',
|
|
40
|
+
compatibleVersions: ['v2.0.0'],
|
|
41
|
+
consensus: {
|
|
42
|
+
type: 'cometbft',
|
|
43
|
+
version: 'v0.38.12'
|
|
44
|
+
},
|
|
45
|
+
genesis: {
|
|
46
|
+
genesisUrl: 'https://github.com/bitwaylabs/networks/raw/main/mainnet/bitway-1/genesis.tar.gz'
|
|
47
|
+
},
|
|
48
|
+
sdk: {
|
|
49
|
+
type: 'cosmos',
|
|
50
|
+
version: 'v0.50.14'
|
|
51
|
+
},
|
|
52
|
+
ibc: {
|
|
53
|
+
type: 'go',
|
|
54
|
+
version: 'v8.5.3'
|
|
55
|
+
},
|
|
56
|
+
cosmwasm: {
|
|
57
|
+
version: 'v0.53.0',
|
|
58
|
+
enabled: true
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
logoURIs: {
|
|
62
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.png',
|
|
63
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.svg'
|
|
64
|
+
},
|
|
65
|
+
description: 'A fully Bitcoin-Compatible L1 blockchain for the BTCFi',
|
|
66
|
+
apis: {
|
|
67
|
+
rpc: [
|
|
68
|
+
{
|
|
69
|
+
address: 'https://rpc.bitway.com',
|
|
70
|
+
provider: 'Bitway Labs'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'https://rpc.bitway.nodestake.org',
|
|
74
|
+
provider: 'NodeStake'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: 'https://bitway-rpc.synergynodes.com/',
|
|
78
|
+
provider: 'Synergy Nodes'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
address: 'https://bitway.publicnode.com/',
|
|
82
|
+
provider: 'Allnodes'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
address: 'https://bitway.rpc.kjnodes.com',
|
|
86
|
+
provider: 'kjnodes'
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
address: 'https://bitway-mainnet-rpc.itrocket.net',
|
|
90
|
+
provider: 'ITRocket'
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
address: 'https://bitway.rpc.m.stavr.tech',
|
|
94
|
+
provider: '🔥STAVR🔥'
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
rest: [
|
|
98
|
+
{
|
|
99
|
+
address: 'https://rest.bitway.com',
|
|
100
|
+
provider: 'Bitway Labs'
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
address: 'https://api.bitway.nodestake.org',
|
|
104
|
+
provider: 'NodeStake'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
address: 'https://bitway-api.synergynodes.com',
|
|
108
|
+
provider: 'Synergy Nodes'
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
address: 'https://bitway-rest.publicnode.com',
|
|
112
|
+
provider: 'Allnodes'
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
address: 'https://bitway.api.kjnodes.com',
|
|
116
|
+
provider: 'kjnodes'
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
address: 'https://bitway-mainnet-api.itrocket.net',
|
|
120
|
+
provider: 'ITRocket'
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
address: 'https://bitway.api.m.stavr.tech',
|
|
124
|
+
provider: '🔥STAVR🔥'
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
grpc: [
|
|
128
|
+
{
|
|
129
|
+
address: 'grpc.bitway.com:443',
|
|
130
|
+
provider: 'Bitway Labs'
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
address: 'https://grpc.bitway.nodestake.org:443',
|
|
134
|
+
provider: 'NodeStake'
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
address: 'bitway-grpc.synergynodes.com:443',
|
|
138
|
+
provider: 'Synergy Nodes'
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
address: 'bitway-grpc.publicnode.com:443',
|
|
142
|
+
provider: 'Allnodes'
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
address: 'bitway.grpc.kjnodes.com:443',
|
|
146
|
+
provider: 'kjnodes'
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
address: 'bitway-mainnet-grpc.itrocket.net:443',
|
|
150
|
+
provider: 'ITRocket'
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
explorers: [
|
|
155
|
+
{
|
|
156
|
+
kind: 'Ping Pub',
|
|
157
|
+
url: 'https://explorer.nodestake.org/bitway',
|
|
158
|
+
txPage: 'https://explorer.nodestake.org/bitway/tx/${txHash}',
|
|
159
|
+
accountPage: 'https://explorer.nodestake.org/bitway/account/${accountAddress}'
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
kind: 'Ping Pub',
|
|
163
|
+
url: 'https://cosmosrun.info/bitway',
|
|
164
|
+
txPage: 'https://cosmosrun.info/bitway/tx/${txHash}',
|
|
165
|
+
accountPage: 'https://cosmosrun.info/bitway/account/${accountAddress}'
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
kind: 'Ping Pub',
|
|
169
|
+
url: 'https://explorer.kjnodes.com/bitway',
|
|
170
|
+
txPage: 'https://explorer.kjnodes.com/bitway/tx/${txHash}',
|
|
171
|
+
accountPage: 'https://explorer.kjnodes.com/bitway/account/${accountAddress}'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
kind: 'Ping Pub',
|
|
175
|
+
url: 'https://explorer.stavr.tech/Bitway-Mainnet',
|
|
176
|
+
txPage: 'https://explorer.stavr.tech/Bitway-Mainnet/tx/${txHash}',
|
|
177
|
+
accountPage: 'https://explorer.stavr.tech/Bitway-Mainnet/account/${accountAddress}'
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
images: [{
|
|
181
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.png',
|
|
182
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitway/images/btw.svg'
|
|
183
|
+
}]
|
|
184
|
+
};
|
|
185
|
+
exports.default = info;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'bitway',
|
|
7
|
+
clientId: '07-tendermint-30',
|
|
8
|
+
connectionId: 'connection-14'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'noble',
|
|
12
|
+
clientId: '07-tendermint-183',
|
|
13
|
+
connectionId: 'connection-178'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-13',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-172',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
exports.default = info;
|
|
@@ -0,0 +1,12 @@
|
|
|
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.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
10
|
+
exports.assetList = asset_list_1.default;
|
|
11
|
+
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
package/mainnet/chains.js
CHANGED
|
@@ -51,6 +51,7 @@ const _beezee = __importStar(require("./beezee"));
|
|
|
51
51
|
const _bitbadges = __importStar(require("./bitbadges"));
|
|
52
52
|
const _bitcanna = __importStar(require("./bitcanna"));
|
|
53
53
|
const _bitsong = __importStar(require("./bitsong"));
|
|
54
|
+
const _bitway = __importStar(require("./bitway"));
|
|
54
55
|
const _blockx = __importStar(require("./blockx"));
|
|
55
56
|
const _bluechip = __importStar(require("./bluechip"));
|
|
56
57
|
const _bluzelle = __importStar(require("./bluzelle"));
|
|
@@ -267,6 +268,7 @@ const chains = [
|
|
|
267
268
|
_bitbadges.chain,
|
|
268
269
|
_bitcanna.chain,
|
|
269
270
|
_bitsong.chain,
|
|
271
|
+
_bitway.chain,
|
|
270
272
|
_blockx.chain,
|
|
271
273
|
_bluechip.chain,
|
|
272
274
|
_bluzelle.chain,
|
|
@@ -56,6 +56,10 @@ const info = {
|
|
|
56
56
|
{
|
|
57
57
|
address: 'https://m-dora-rpc.ruangnode.com:443',
|
|
58
58
|
provider: 'ruangnode'
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
address: 'https://rpc.dora.roomit.xyz:443',
|
|
62
|
+
provider: 'Roomit'
|
|
59
63
|
}
|
|
60
64
|
],
|
|
61
65
|
rest: [
|
|
@@ -78,6 +82,10 @@ const info = {
|
|
|
78
82
|
{
|
|
79
83
|
address: 'https://m-dora-api.ruangnode.com',
|
|
80
84
|
provider: 'ruangnode'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
address: 'https://api.dora.roomit.xyz:443',
|
|
88
|
+
provider: 'Roomit'
|
|
81
89
|
}
|
|
82
90
|
],
|
|
83
91
|
grpc: [
|
|
@@ -96,6 +104,10 @@ const info = {
|
|
|
96
104
|
{
|
|
97
105
|
address: 'm-dora-grpc.ruangnode.com:30090',
|
|
98
106
|
provider: 'ruangnode'
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
address: 'grpc.dora.roomit.xyz:8443',
|
|
110
|
+
provider: 'Roomit'
|
|
99
111
|
}
|
|
100
112
|
]
|
|
101
113
|
},
|
|
@@ -142,6 +154,12 @@ const info = {
|
|
|
142
154
|
kind: 'Ruangnode Explorers',
|
|
143
155
|
url: 'https://explorer.ruangnode.com/dora/staking',
|
|
144
156
|
txPage: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
kind: 'Roomit',
|
|
160
|
+
url: 'https://explorer.tendermint.roomit.xyz/dora-mainnet',
|
|
161
|
+
txPage: 'https://explorer.tendermint.roomit.xyz/dora-mainnet/transactions/${txHash}',
|
|
162
|
+
accountPage: 'https://explorer.tendermint.roomit.xyz/dora-mainnet/account/${accountAddress}'
|
|
145
163
|
}
|
|
146
164
|
]
|
|
147
165
|
};
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -46,6 +46,7 @@ const _beezee = __importStar(require("./beezee"));
|
|
|
46
46
|
const _bitbadges = __importStar(require("./bitbadges"));
|
|
47
47
|
const _bitcanna = __importStar(require("./bitcanna"));
|
|
48
48
|
const _bitsong = __importStar(require("./bitsong"));
|
|
49
|
+
const _bitway = __importStar(require("./bitway"));
|
|
49
50
|
const _bluzelle = __importStar(require("./bluzelle"));
|
|
50
51
|
const _bostrom = __importStar(require("./bostrom"));
|
|
51
52
|
const _canto = __importStar(require("./canto"));
|
|
@@ -214,6 +215,7 @@ const ibcData = [
|
|
|
214
215
|
..._bitbadges.ibcData,
|
|
215
216
|
..._bitcanna.ibcData,
|
|
216
217
|
..._bitsong.ibcData,
|
|
218
|
+
..._bitway.ibcData,
|
|
217
219
|
..._bluzelle.ibcData,
|
|
218
220
|
..._bostrom.ibcData,
|
|
219
221
|
..._canto.ibcData,
|
|
@@ -353,6 +353,35 @@ const info = [
|
|
|
353
353
|
}
|
|
354
354
|
}]
|
|
355
355
|
},
|
|
356
|
+
{
|
|
357
|
+
$schema: '../ibc_data.schema.json',
|
|
358
|
+
chain1: {
|
|
359
|
+
chainName: 'injective',
|
|
360
|
+
clientId: '07-tendermint-317',
|
|
361
|
+
connectionId: 'connection-327'
|
|
362
|
+
},
|
|
363
|
+
chain2: {
|
|
364
|
+
chainName: 'lumera',
|
|
365
|
+
clientId: '07-tendermint-5',
|
|
366
|
+
connectionId: 'connection-3'
|
|
367
|
+
},
|
|
368
|
+
channels: [{
|
|
369
|
+
chain1: {
|
|
370
|
+
channelId: 'channel-443',
|
|
371
|
+
portId: 'transfer'
|
|
372
|
+
},
|
|
373
|
+
chain2: {
|
|
374
|
+
channelId: 'channel-2',
|
|
375
|
+
portId: 'transfer'
|
|
376
|
+
},
|
|
377
|
+
ordering: 'unordered',
|
|
378
|
+
version: 'ics20-1',
|
|
379
|
+
tags: {
|
|
380
|
+
status: 'live',
|
|
381
|
+
preferred: true
|
|
382
|
+
}
|
|
383
|
+
}]
|
|
384
|
+
},
|
|
356
385
|
{
|
|
357
386
|
$schema: '../ibc_data.schema.json',
|
|
358
387
|
chain1: {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const info = [
|
|
3
|
+
const info = [
|
|
4
|
+
{
|
|
4
5
|
$schema: '../ibc_data.schema.json',
|
|
5
6
|
chain1: {
|
|
6
7
|
chainName: 'dydx',
|
|
@@ -28,7 +29,37 @@ const info = [{
|
|
|
28
29
|
preferred: true
|
|
29
30
|
}
|
|
30
31
|
}]
|
|
31
|
-
},
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
$schema: '../ibc_data.schema.json',
|
|
35
|
+
chain1: {
|
|
36
|
+
chainName: 'injective',
|
|
37
|
+
clientId: '07-tendermint-317',
|
|
38
|
+
connectionId: 'connection-327'
|
|
39
|
+
},
|
|
40
|
+
chain2: {
|
|
41
|
+
chainName: 'lumera',
|
|
42
|
+
clientId: '07-tendermint-5',
|
|
43
|
+
connectionId: 'connection-3'
|
|
44
|
+
},
|
|
45
|
+
channels: [{
|
|
46
|
+
chain1: {
|
|
47
|
+
channelId: 'channel-443',
|
|
48
|
+
portId: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
chain2: {
|
|
51
|
+
channelId: 'channel-2',
|
|
52
|
+
portId: 'transfer'
|
|
53
|
+
},
|
|
54
|
+
ordering: 'unordered',
|
|
55
|
+
version: 'ics20-1',
|
|
56
|
+
tags: {
|
|
57
|
+
status: 'live',
|
|
58
|
+
preferred: true
|
|
59
|
+
}
|
|
60
|
+
}]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
32
63
|
$schema: '../ibc_data.schema.json',
|
|
33
64
|
chain1: {
|
|
34
65
|
chainName: 'lumera',
|
|
@@ -57,5 +88,6 @@ const info = [{
|
|
|
57
88
|
dex: 'osmosis'
|
|
58
89
|
}
|
|
59
90
|
}]
|
|
60
|
-
}
|
|
91
|
+
}
|
|
92
|
+
];
|
|
61
93
|
exports.default = info;
|
|
@@ -173,6 +173,35 @@ const info = [
|
|
|
173
173
|
}
|
|
174
174
|
}]
|
|
175
175
|
},
|
|
176
|
+
{
|
|
177
|
+
$schema: '../ibc_data.schema.json',
|
|
178
|
+
chain1: {
|
|
179
|
+
chainName: 'bitway',
|
|
180
|
+
clientId: '07-tendermint-30',
|
|
181
|
+
connectionId: 'connection-14'
|
|
182
|
+
},
|
|
183
|
+
chain2: {
|
|
184
|
+
chainName: 'noble',
|
|
185
|
+
clientId: '07-tendermint-183',
|
|
186
|
+
connectionId: 'connection-178'
|
|
187
|
+
},
|
|
188
|
+
channels: [{
|
|
189
|
+
chain1: {
|
|
190
|
+
channelId: 'channel-13',
|
|
191
|
+
portId: 'transfer'
|
|
192
|
+
},
|
|
193
|
+
chain2: {
|
|
194
|
+
channelId: 'channel-172',
|
|
195
|
+
portId: 'transfer'
|
|
196
|
+
},
|
|
197
|
+
ordering: 'unordered',
|
|
198
|
+
version: 'ics20-1',
|
|
199
|
+
tags: {
|
|
200
|
+
status: 'live',
|
|
201
|
+
preferred: true
|
|
202
|
+
}
|
|
203
|
+
}]
|
|
204
|
+
},
|
|
176
205
|
{
|
|
177
206
|
$schema: '../ibc_data.schema.json',
|
|
178
207
|
chain1: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.61",
|
|
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.61"
|
|
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": "0cd1a3eb4f0fa1c428a89356b7f8fde33bdf3fe9"
|
|
43
43
|
}
|