chain-registry 1.69.338 → 1.69.340
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/assets.js +2 -0
- package/esm/mainnet/bitway/assets.js +109 -0
- package/esm/mainnet/bitway/chain.js +183 -0
- package/esm/mainnet/bitway/ibc.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.js +2 -0
- package/esm/mainnet/injective/ibc.js +29 -0
- package/esm/mainnet/lumera/ibc.js +35 -3
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/mainnet/assets.js +2 -0
- package/mainnet/bitway/assets.d.ts +3 -0
- package/mainnet/bitway/assets.js +111 -0
- package/mainnet/bitway/chain.d.ts +3 -0
- package/mainnet/bitway/chain.js +185 -0
- package/mainnet/bitway/ibc.d.ts +3 -0
- package/mainnet/bitway/ibc.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.js +2 -0
- package/mainnet/injective/ibc.js +29 -0
- package/mainnet/lumera/ibc.js +35 -3
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +6 -5
- package/mainnet/noble/ibc.js +29 -0
- package/package.json +3 -3
package/esm/mainnet/assets.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 assets = [
|
|
|
242
243
|
_bitbadges.assets,
|
|
243
244
|
_bitcanna.assets,
|
|
244
245
|
_bitsong.assets,
|
|
246
|
+
_bitway.assets,
|
|
245
247
|
_blockx.assets,
|
|
246
248
|
_bluechip.assets,
|
|
247
249
|
_bluzelle.assets,
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'bitway',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'The native token of Bitway.',
|
|
7
|
+
denom_units: [{
|
|
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
|
+
logo_URIs: {
|
|
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
|
+
type_asset: 'sdk.coin'
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
description: 'BTC-pegged token on Bitway.',
|
|
34
|
+
extended_description: '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
|
+
denom_units: [{
|
|
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
|
+
chain_name: 'bitcoin',
|
|
50
|
+
base_denom: '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
|
+
type_asset: 'sdk.coin'
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
description: 'Noble USDC on Bitway.',
|
|
66
|
+
denom_units: [{
|
|
67
|
+
denom: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
|
|
68
|
+
exponent: 0
|
|
69
|
+
}, {
|
|
70
|
+
denom: 'usdc',
|
|
71
|
+
exponent: 6
|
|
72
|
+
}],
|
|
73
|
+
type_asset: 'ics20',
|
|
74
|
+
base: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
|
|
75
|
+
name: 'Noble USDC',
|
|
76
|
+
display: 'usdc',
|
|
77
|
+
symbol: 'USDC',
|
|
78
|
+
traces: [{
|
|
79
|
+
type: 'ibc',
|
|
80
|
+
counterparty: {
|
|
81
|
+
chain_name: 'noble',
|
|
82
|
+
base_denom: 'uusdc',
|
|
83
|
+
channel_id: 'channel-172'
|
|
84
|
+
},
|
|
85
|
+
chain: {
|
|
86
|
+
channel_id: 'channel-13',
|
|
87
|
+
path: 'transfer/channel-13/uusdc'
|
|
88
|
+
}
|
|
89
|
+
}],
|
|
90
|
+
images: [{
|
|
91
|
+
image_sync: {
|
|
92
|
+
chain_name: 'noble',
|
|
93
|
+
base_denom: '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
|
+
logo_URIs: {
|
|
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
|
+
coingecko_id: 'usd-coin'
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
};
|
|
109
|
+
export default info;
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'bitway',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'mainnet',
|
|
6
|
+
website: 'https://bitway.com/',
|
|
7
|
+
pretty_name: 'Bitway',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
chain_id: 'bitway-1',
|
|
10
|
+
bech32_prefix: 'bc',
|
|
11
|
+
daemon_name: 'bitwayd',
|
|
12
|
+
node_home: '$HOME/.bitway',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'ubtw',
|
|
18
|
+
fixed_min_gas_price: 0.0006,
|
|
19
|
+
low_gas_price: 0.0006,
|
|
20
|
+
average_gas_price: 0.0008,
|
|
21
|
+
high_gas_price: 0.001
|
|
22
|
+
}, {
|
|
23
|
+
denom: 'sat',
|
|
24
|
+
fixed_min_gas_price: 0.000001,
|
|
25
|
+
low_gas_price: 0.000001,
|
|
26
|
+
average_gas_price: 0.0000015,
|
|
27
|
+
high_gas_price: 0.000002
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
staking: {
|
|
31
|
+
staking_tokens: [{
|
|
32
|
+
denom: 'ubtw'
|
|
33
|
+
}]
|
|
34
|
+
},
|
|
35
|
+
codebase: {
|
|
36
|
+
git_repo: 'https://github.com/bitwaylabs/bitway',
|
|
37
|
+
recommended_version: 'v2.0.0',
|
|
38
|
+
compatible_versions: ['v2.0.0'],
|
|
39
|
+
consensus: {
|
|
40
|
+
type: 'cometbft',
|
|
41
|
+
version: 'v0.38.12'
|
|
42
|
+
},
|
|
43
|
+
genesis: {
|
|
44
|
+
genesis_url: '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
|
+
logo_URIs: {
|
|
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
|
+
tx_page: 'https://explorer.nodestake.org/bitway/tx/${txHash}',
|
|
157
|
+
account_page: 'https://explorer.nodestake.org/bitway/account/${accountAddress}'
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
kind: 'Ping Pub',
|
|
161
|
+
url: 'https://cosmosrun.info/bitway',
|
|
162
|
+
tx_page: 'https://cosmosrun.info/bitway/tx/${txHash}',
|
|
163
|
+
account_page: 'https://cosmosrun.info/bitway/account/${accountAddress}'
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
kind: 'Ping Pub',
|
|
167
|
+
url: 'https://explorer.kjnodes.com/bitway',
|
|
168
|
+
tx_page: 'https://explorer.kjnodes.com/bitway/tx/${txHash}',
|
|
169
|
+
account_page: 'https://explorer.kjnodes.com/bitway/account/${accountAddress}'
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
kind: 'Ping Pub',
|
|
173
|
+
url: 'https://explorer.stavr.tech/Bitway-Mainnet',
|
|
174
|
+
tx_page: 'https://explorer.stavr.tech/Bitway-Mainnet/tx/${txHash}',
|
|
175
|
+
account_page: '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
|
+
chain_1: {
|
|
4
|
+
chain_name: 'bitway',
|
|
5
|
+
client_id: '07-tendermint-30',
|
|
6
|
+
connection_id: 'connection-14'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'noble',
|
|
10
|
+
client_id: '07-tendermint-183',
|
|
11
|
+
connection_id: 'connection-178'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-13',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-172',
|
|
20
|
+
port_id: '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
|
tx_page: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
kind: 'Roomit',
|
|
158
|
+
url: 'https://explorer.tendermint.roomit.xyz/dora-mainnet',
|
|
159
|
+
tx_page: 'https://explorer.tendermint.roomit.xyz/dora-mainnet/transactions/${txHash}',
|
|
160
|
+
account_page: 'https://explorer.tendermint.roomit.xyz/dora-mainnet/account/${accountAddress}'
|
|
143
161
|
}
|
|
144
162
|
]
|
|
145
163
|
};
|
package/esm/mainnet/ibc.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 ibc = [
|
|
|
189
190
|
..._bitbadges.ibc,
|
|
190
191
|
..._bitcanna.ibc,
|
|
191
192
|
..._bitsong.ibc,
|
|
193
|
+
..._bitway.ibc,
|
|
192
194
|
..._bluzelle.ibc,
|
|
193
195
|
..._bostrom.ibc,
|
|
194
196
|
..._canto.ibc,
|
|
@@ -351,6 +351,35 @@ const info = [
|
|
|
351
351
|
}
|
|
352
352
|
}]
|
|
353
353
|
},
|
|
354
|
+
{
|
|
355
|
+
$schema: '../ibc_data.schema.json',
|
|
356
|
+
chain_1: {
|
|
357
|
+
chain_name: 'injective',
|
|
358
|
+
client_id: '07-tendermint-317',
|
|
359
|
+
connection_id: 'connection-327'
|
|
360
|
+
},
|
|
361
|
+
chain_2: {
|
|
362
|
+
chain_name: 'lumera',
|
|
363
|
+
client_id: '07-tendermint-5',
|
|
364
|
+
connection_id: 'connection-3'
|
|
365
|
+
},
|
|
366
|
+
channels: [{
|
|
367
|
+
chain_1: {
|
|
368
|
+
channel_id: 'channel-443',
|
|
369
|
+
port_id: 'transfer'
|
|
370
|
+
},
|
|
371
|
+
chain_2: {
|
|
372
|
+
channel_id: 'channel-2',
|
|
373
|
+
port_id: '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
|
chain_1: {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
const info = [
|
|
1
|
+
const info = [
|
|
2
|
+
{
|
|
2
3
|
$schema: '../ibc_data.schema.json',
|
|
3
4
|
chain_1: {
|
|
4
5
|
chain_name: '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
|
+
chain_1: {
|
|
34
|
+
chain_name: 'injective',
|
|
35
|
+
client_id: '07-tendermint-317',
|
|
36
|
+
connection_id: 'connection-327'
|
|
37
|
+
},
|
|
38
|
+
chain_2: {
|
|
39
|
+
chain_name: 'lumera',
|
|
40
|
+
client_id: '07-tendermint-5',
|
|
41
|
+
connection_id: 'connection-3'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain_1: {
|
|
45
|
+
channel_id: 'channel-443',
|
|
46
|
+
port_id: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain_2: {
|
|
49
|
+
channel_id: 'channel-2',
|
|
50
|
+
port_id: '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
|
chain_1: {
|
|
32
63
|
chain_name: 'lumera',
|
|
@@ -55,5 +86,6 @@ const info = [{
|
|
|
55
86
|
dex: 'osmosis'
|
|
56
87
|
}
|
|
57
88
|
}]
|
|
58
|
-
}
|
|
89
|
+
}
|
|
90
|
+
];
|
|
59
91
|
export default info;
|
package/esm/mainnet/named.js
CHANGED
|
@@ -26,6 +26,7 @@ export * as beezee from './beezee';
|
|
|
26
26
|
export * as bitbadges from './bitbadges';
|
|
27
27
|
export * as bitcanna from './bitcanna';
|
|
28
28
|
export * as bitsong from './bitsong';
|
|
29
|
+
export * as bitway from './bitway';
|
|
29
30
|
export * as blockx from './blockx';
|
|
30
31
|
export * as bluechip from './bluechip';
|
|
31
32
|
export * as bluzelle from './bluzelle';
|
package/esm/mainnet/noble/ibc.js
CHANGED
|
@@ -171,6 +171,35 @@ const info = [
|
|
|
171
171
|
}
|
|
172
172
|
}]
|
|
173
173
|
},
|
|
174
|
+
{
|
|
175
|
+
$schema: '../ibc_data.schema.json',
|
|
176
|
+
chain_1: {
|
|
177
|
+
chain_name: 'bitway',
|
|
178
|
+
client_id: '07-tendermint-30',
|
|
179
|
+
connection_id: 'connection-14'
|
|
180
|
+
},
|
|
181
|
+
chain_2: {
|
|
182
|
+
chain_name: 'noble',
|
|
183
|
+
client_id: '07-tendermint-183',
|
|
184
|
+
connection_id: 'connection-178'
|
|
185
|
+
},
|
|
186
|
+
channels: [{
|
|
187
|
+
chain_1: {
|
|
188
|
+
channel_id: 'channel-13',
|
|
189
|
+
port_id: 'transfer'
|
|
190
|
+
},
|
|
191
|
+
chain_2: {
|
|
192
|
+
channel_id: 'channel-172',
|
|
193
|
+
port_id: '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
|
chain_1: {
|
package/mainnet/assets.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 assets = [
|
|
|
267
268
|
_bitbadges.assets,
|
|
268
269
|
_bitcanna.assets,
|
|
269
270
|
_bitsong.assets,
|
|
271
|
+
_bitway.assets,
|
|
270
272
|
_blockx.assets,
|
|
271
273
|
_bluechip.assets,
|
|
272
274
|
_bluzelle.assets,
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'bitway',
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'The native token of Bitway.',
|
|
9
|
+
denom_units: [{
|
|
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
|
+
logo_URIs: {
|
|
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
|
+
type_asset: 'sdk.coin'
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
description: 'BTC-pegged token on Bitway.',
|
|
36
|
+
extended_description: '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
|
+
denom_units: [{
|
|
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
|
+
chain_name: 'bitcoin',
|
|
52
|
+
base_denom: '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
|
+
type_asset: 'sdk.coin'
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
description: 'Noble USDC on Bitway.',
|
|
68
|
+
denom_units: [{
|
|
69
|
+
denom: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
|
|
70
|
+
exponent: 0
|
|
71
|
+
}, {
|
|
72
|
+
denom: 'usdc',
|
|
73
|
+
exponent: 6
|
|
74
|
+
}],
|
|
75
|
+
type_asset: 'ics20',
|
|
76
|
+
base: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
|
|
77
|
+
name: 'Noble USDC',
|
|
78
|
+
display: 'usdc',
|
|
79
|
+
symbol: 'USDC',
|
|
80
|
+
traces: [{
|
|
81
|
+
type: 'ibc',
|
|
82
|
+
counterparty: {
|
|
83
|
+
chain_name: 'noble',
|
|
84
|
+
base_denom: 'uusdc',
|
|
85
|
+
channel_id: 'channel-172'
|
|
86
|
+
},
|
|
87
|
+
chain: {
|
|
88
|
+
channel_id: 'channel-13',
|
|
89
|
+
path: 'transfer/channel-13/uusdc'
|
|
90
|
+
}
|
|
91
|
+
}],
|
|
92
|
+
images: [{
|
|
93
|
+
image_sync: {
|
|
94
|
+
chain_name: 'noble',
|
|
95
|
+
base_denom: '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
|
+
logo_URIs: {
|
|
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
|
+
coingecko_id: '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
|
+
chain_name: 'bitway',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
website: 'https://bitway.com/',
|
|
9
|
+
pretty_name: 'Bitway',
|
|
10
|
+
chain_type: 'cosmos',
|
|
11
|
+
chain_id: 'bitway-1',
|
|
12
|
+
bech32_prefix: 'bc',
|
|
13
|
+
daemon_name: 'bitwayd',
|
|
14
|
+
node_home: '$HOME/.bitway',
|
|
15
|
+
key_algos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
fee_tokens: [{
|
|
19
|
+
denom: 'ubtw',
|
|
20
|
+
fixed_min_gas_price: 0.0006,
|
|
21
|
+
low_gas_price: 0.0006,
|
|
22
|
+
average_gas_price: 0.0008,
|
|
23
|
+
high_gas_price: 0.001
|
|
24
|
+
}, {
|
|
25
|
+
denom: 'sat',
|
|
26
|
+
fixed_min_gas_price: 0.000001,
|
|
27
|
+
low_gas_price: 0.000001,
|
|
28
|
+
average_gas_price: 0.0000015,
|
|
29
|
+
high_gas_price: 0.000002
|
|
30
|
+
}]
|
|
31
|
+
},
|
|
32
|
+
staking: {
|
|
33
|
+
staking_tokens: [{
|
|
34
|
+
denom: 'ubtw'
|
|
35
|
+
}]
|
|
36
|
+
},
|
|
37
|
+
codebase: {
|
|
38
|
+
git_repo: 'https://github.com/bitwaylabs/bitway',
|
|
39
|
+
recommended_version: 'v2.0.0',
|
|
40
|
+
compatible_versions: ['v2.0.0'],
|
|
41
|
+
consensus: {
|
|
42
|
+
type: 'cometbft',
|
|
43
|
+
version: 'v0.38.12'
|
|
44
|
+
},
|
|
45
|
+
genesis: {
|
|
46
|
+
genesis_url: '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
|
+
logo_URIs: {
|
|
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
|
+
tx_page: 'https://explorer.nodestake.org/bitway/tx/${txHash}',
|
|
159
|
+
account_page: 'https://explorer.nodestake.org/bitway/account/${accountAddress}'
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
kind: 'Ping Pub',
|
|
163
|
+
url: 'https://cosmosrun.info/bitway',
|
|
164
|
+
tx_page: 'https://cosmosrun.info/bitway/tx/${txHash}',
|
|
165
|
+
account_page: 'https://cosmosrun.info/bitway/account/${accountAddress}'
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
kind: 'Ping Pub',
|
|
169
|
+
url: 'https://explorer.kjnodes.com/bitway',
|
|
170
|
+
tx_page: 'https://explorer.kjnodes.com/bitway/tx/${txHash}',
|
|
171
|
+
account_page: 'https://explorer.kjnodes.com/bitway/account/${accountAddress}'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
kind: 'Ping Pub',
|
|
175
|
+
url: 'https://explorer.stavr.tech/Bitway-Mainnet',
|
|
176
|
+
tx_page: 'https://explorer.stavr.tech/Bitway-Mainnet/tx/${txHash}',
|
|
177
|
+
account_page: '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
|
+
chain_1: {
|
|
6
|
+
chain_name: 'bitway',
|
|
7
|
+
client_id: '07-tendermint-30',
|
|
8
|
+
connection_id: 'connection-14'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'noble',
|
|
12
|
+
client_id: '07-tendermint-183',
|
|
13
|
+
connection_id: 'connection-178'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-13',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-172',
|
|
22
|
+
port_id: '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.ibc = exports.chain = exports.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_1 = __importDefault(require("./ibc"));
|
|
10
|
+
exports.assets = assets_1.default;
|
|
11
|
+
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibc = ibc_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
|
tx_page: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
kind: 'Roomit',
|
|
160
|
+
url: 'https://explorer.tendermint.roomit.xyz/dora-mainnet',
|
|
161
|
+
tx_page: 'https://explorer.tendermint.roomit.xyz/dora-mainnet/transactions/${txHash}',
|
|
162
|
+
account_page: 'https://explorer.tendermint.roomit.xyz/dora-mainnet/account/${accountAddress}'
|
|
145
163
|
}
|
|
146
164
|
]
|
|
147
165
|
};
|
package/mainnet/ibc.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 ibc = [
|
|
|
214
215
|
..._bitbadges.ibc,
|
|
215
216
|
..._bitcanna.ibc,
|
|
216
217
|
..._bitsong.ibc,
|
|
218
|
+
..._bitway.ibc,
|
|
217
219
|
..._bluzelle.ibc,
|
|
218
220
|
..._bostrom.ibc,
|
|
219
221
|
..._canto.ibc,
|
package/mainnet/injective/ibc.js
CHANGED
|
@@ -353,6 +353,35 @@ const info = [
|
|
|
353
353
|
}
|
|
354
354
|
}]
|
|
355
355
|
},
|
|
356
|
+
{
|
|
357
|
+
$schema: '../ibc_data.schema.json',
|
|
358
|
+
chain_1: {
|
|
359
|
+
chain_name: 'injective',
|
|
360
|
+
client_id: '07-tendermint-317',
|
|
361
|
+
connection_id: 'connection-327'
|
|
362
|
+
},
|
|
363
|
+
chain_2: {
|
|
364
|
+
chain_name: 'lumera',
|
|
365
|
+
client_id: '07-tendermint-5',
|
|
366
|
+
connection_id: 'connection-3'
|
|
367
|
+
},
|
|
368
|
+
channels: [{
|
|
369
|
+
chain_1: {
|
|
370
|
+
channel_id: 'channel-443',
|
|
371
|
+
port_id: 'transfer'
|
|
372
|
+
},
|
|
373
|
+
chain_2: {
|
|
374
|
+
channel_id: 'channel-2',
|
|
375
|
+
port_id: '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
|
chain_1: {
|
package/mainnet/lumera/ibc.js
CHANGED
|
@@ -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
|
chain_1: {
|
|
6
7
|
chain_name: '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
|
+
chain_1: {
|
|
36
|
+
chain_name: 'injective',
|
|
37
|
+
client_id: '07-tendermint-317',
|
|
38
|
+
connection_id: 'connection-327'
|
|
39
|
+
},
|
|
40
|
+
chain_2: {
|
|
41
|
+
chain_name: 'lumera',
|
|
42
|
+
client_id: '07-tendermint-5',
|
|
43
|
+
connection_id: 'connection-3'
|
|
44
|
+
},
|
|
45
|
+
channels: [{
|
|
46
|
+
chain_1: {
|
|
47
|
+
channel_id: 'channel-443',
|
|
48
|
+
port_id: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
chain_2: {
|
|
51
|
+
channel_id: 'channel-2',
|
|
52
|
+
port_id: '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
|
chain_1: {
|
|
34
65
|
chain_name: 'lumera',
|
|
@@ -57,5 +88,6 @@ const info = [{
|
|
|
57
88
|
dex: 'osmosis'
|
|
58
89
|
}
|
|
59
90
|
}]
|
|
60
|
-
}
|
|
91
|
+
}
|
|
92
|
+
];
|
|
61
93
|
exports.default = info;
|
package/mainnet/named.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * as beezee from './beezee';
|
|
|
26
26
|
export * as bitbadges from './bitbadges';
|
|
27
27
|
export * as bitcanna from './bitcanna';
|
|
28
28
|
export * as bitsong from './bitsong';
|
|
29
|
+
export * as bitway from './bitway';
|
|
29
30
|
export * as blockx from './blockx';
|
|
30
31
|
export * as bluechip from './bluechip';
|
|
31
32
|
export * as bluzelle from './bluzelle';
|
package/mainnet/named.js
CHANGED
|
@@ -23,11 +23,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.zigchain = exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = void 0;
|
|
26
|
+
exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.buycex = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitway = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.babylon = exports.axone = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.arkeo = exports.archway = exports.andromeda = exports.althea = exports.allora = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.namada = exports.ethereum = void 0;
|
|
27
|
+
exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.intento = exports.int3face = exports.injective = exports.initia = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.hippoprotocol = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gonka = exports.gitopia = exports.ggezchain = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = void 0;
|
|
28
|
+
exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nillion = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mantrachain = exports.manifest = exports.mande = exports.lumnetwork = exports.lumera = exports.loyal = exports.lorenzo = exports.loop = exports.lombardledger = exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kudora = exports.kopi = exports.konstellation = exports.kimanetwork = void 0;
|
|
29
|
+
exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.symphony = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.qubetics = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.pocket = exports.planq = exports.persistence = exports.paxi = exports.passage = void 0;
|
|
30
|
+
exports.zigchain = exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = void 0;
|
|
31
31
|
exports.ethereum = __importStar(require("./ethereum"));
|
|
32
32
|
exports.namada = __importStar(require("./namada"));
|
|
33
33
|
exports.rootstock = __importStar(require("./rootstock"));
|
|
@@ -56,6 +56,7 @@ exports.beezee = __importStar(require("./beezee"));
|
|
|
56
56
|
exports.bitbadges = __importStar(require("./bitbadges"));
|
|
57
57
|
exports.bitcanna = __importStar(require("./bitcanna"));
|
|
58
58
|
exports.bitsong = __importStar(require("./bitsong"));
|
|
59
|
+
exports.bitway = __importStar(require("./bitway"));
|
|
59
60
|
exports.blockx = __importStar(require("./blockx"));
|
|
60
61
|
exports.bluechip = __importStar(require("./bluechip"));
|
|
61
62
|
exports.bluzelle = __importStar(require("./bluzelle"));
|
package/mainnet/noble/ibc.js
CHANGED
|
@@ -173,6 +173,35 @@ const info = [
|
|
|
173
173
|
}
|
|
174
174
|
}]
|
|
175
175
|
},
|
|
176
|
+
{
|
|
177
|
+
$schema: '../ibc_data.schema.json',
|
|
178
|
+
chain_1: {
|
|
179
|
+
chain_name: 'bitway',
|
|
180
|
+
client_id: '07-tendermint-30',
|
|
181
|
+
connection_id: 'connection-14'
|
|
182
|
+
},
|
|
183
|
+
chain_2: {
|
|
184
|
+
chain_name: 'noble',
|
|
185
|
+
client_id: '07-tendermint-183',
|
|
186
|
+
connection_id: 'connection-178'
|
|
187
|
+
},
|
|
188
|
+
channels: [{
|
|
189
|
+
chain_1: {
|
|
190
|
+
channel_id: 'channel-13',
|
|
191
|
+
port_id: 'transfer'
|
|
192
|
+
},
|
|
193
|
+
chain_2: {
|
|
194
|
+
channel_id: 'channel-172',
|
|
195
|
+
port_id: '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
|
chain_1: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.340",
|
|
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": "^0.50.
|
|
32
|
+
"@chain-registry/types": "^0.50.211"
|
|
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": "07f8c727f151454ae9f7deeb9a21f281a653c3f9"
|
|
43
43
|
}
|