chain-registry 1.69.120 → 1.69.121
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/devnet/celestiatestnet2/chain.js +8 -5
- package/esm/devnet/celestiatestnet2/chain.js +8 -5
- package/esm/mainnet/assets.js +2 -0
- package/esm/mainnet/celestia/chain.js +12 -10
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/esm/mainnet/osmosis/ibc.js +29 -0
- package/esm/mainnet/sidechain/assets.js +115 -0
- package/esm/mainnet/sidechain/chain.js +190 -0
- package/esm/mainnet/sidechain/ibc.js +58 -0
- package/esm/mainnet/sidechain/index.js +6 -0
- package/esm/testnet/celestiatestnet3/chain.js +8 -5
- package/mainnet/assets.js +2 -0
- package/mainnet/celestia/chain.js +12 -10
- package/mainnet/chains.js +2 -0
- package/mainnet/ibc.js +2 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +2 -1
- package/mainnet/noble/ibc.js +29 -0
- package/mainnet/osmosis/ibc.js +29 -0
- package/mainnet/sidechain/assets.d.ts +3 -0
- package/mainnet/sidechain/assets.js +117 -0
- package/mainnet/sidechain/chain.d.ts +3 -0
- package/mainnet/sidechain/chain.js +192 -0
- package/mainnet/sidechain/ibc.d.ts +3 -0
- package/mainnet/sidechain/ibc.js +60 -0
- package/mainnet/sidechain/index.d.ts +3 -0
- package/mainnet/sidechain/index.js +12 -0
- package/package.json +4 -4
- package/testnet/celestiatestnet3/chain.js +8 -5
|
@@ -24,12 +24,15 @@ const info = {
|
|
|
24
24
|
},
|
|
25
25
|
codebase: {
|
|
26
26
|
git_repo: 'https://github.com/celestiaorg/celestia-app',
|
|
27
|
-
recommended_version: '
|
|
27
|
+
recommended_version: 'v3.3.1-arabica',
|
|
28
28
|
compatible_versions: [
|
|
29
|
-
'
|
|
30
|
-
'
|
|
31
|
-
'
|
|
32
|
-
'
|
|
29
|
+
'v3.0.0-arabica',
|
|
30
|
+
'v3.0.1-arabica',
|
|
31
|
+
'v3.0.2-arabica',
|
|
32
|
+
'v3.1.0-arabica',
|
|
33
|
+
'v3.2.0-arabica',
|
|
34
|
+
'v3.3.0-arabica',
|
|
35
|
+
'v3.3.1-arabica'
|
|
33
36
|
],
|
|
34
37
|
genesis: {
|
|
35
38
|
genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/arabica-11/genesis.json'
|
|
@@ -22,12 +22,15 @@ const info = {
|
|
|
22
22
|
},
|
|
23
23
|
codebase: {
|
|
24
24
|
git_repo: 'https://github.com/celestiaorg/celestia-app',
|
|
25
|
-
recommended_version: '
|
|
25
|
+
recommended_version: 'v3.3.1-arabica',
|
|
26
26
|
compatible_versions: [
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
'
|
|
30
|
-
'
|
|
27
|
+
'v3.0.0-arabica',
|
|
28
|
+
'v3.0.1-arabica',
|
|
29
|
+
'v3.0.2-arabica',
|
|
30
|
+
'v3.1.0-arabica',
|
|
31
|
+
'v3.2.0-arabica',
|
|
32
|
+
'v3.3.0-arabica',
|
|
33
|
+
'v3.3.1-arabica'
|
|
31
34
|
],
|
|
32
35
|
genesis: {
|
|
33
36
|
genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/arabica-11/genesis.json'
|
package/esm/mainnet/assets.js
CHANGED
|
@@ -162,6 +162,7 @@ import * as _sge from './sge';
|
|
|
162
162
|
import * as _shareledger from './shareledger';
|
|
163
163
|
import * as _shentu from './shentu';
|
|
164
164
|
import * as _shido from './shido';
|
|
165
|
+
import * as _sidechain from './sidechain';
|
|
165
166
|
import * as _sifchain from './sifchain';
|
|
166
167
|
import * as _six from './six';
|
|
167
168
|
import * as _sommelier from './sommelier';
|
|
@@ -357,6 +358,7 @@ const assets = [
|
|
|
357
358
|
_shareledger.assets,
|
|
358
359
|
_shentu.assets,
|
|
359
360
|
_shido.assets,
|
|
361
|
+
_sidechain.assets,
|
|
360
362
|
_sifchain.assets,
|
|
361
363
|
_six.assets,
|
|
362
364
|
_sommelier.assets,
|
|
@@ -28,18 +28,20 @@ const info = {
|
|
|
28
28
|
},
|
|
29
29
|
codebase: {
|
|
30
30
|
git_repo: 'https://github.com/celestiaorg/celestia-app',
|
|
31
|
-
recommended_version: '
|
|
31
|
+
recommended_version: 'v3.3.1',
|
|
32
32
|
compatible_versions: [
|
|
33
|
-
'
|
|
34
|
-
'
|
|
35
|
-
'
|
|
36
|
-
'
|
|
33
|
+
'v3.3.1',
|
|
34
|
+
'v3.3.0',
|
|
35
|
+
'v3.2.0',
|
|
36
|
+
'v3.1.1',
|
|
37
|
+
'v3.0.2',
|
|
38
|
+
'v3.0.1'
|
|
37
39
|
],
|
|
38
40
|
consensus: {
|
|
39
41
|
type: 'tendermint',
|
|
40
|
-
version: 'v1.
|
|
42
|
+
version: 'v1.45.0',
|
|
41
43
|
repo: 'https://github.com/celestiaorg/celestia-core',
|
|
42
|
-
tag: 'v1.
|
|
44
|
+
tag: 'v1.45.0-tm-v0.34.35'
|
|
43
45
|
},
|
|
44
46
|
genesis: {
|
|
45
47
|
genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/celestia/genesis.json'
|
|
@@ -47,12 +49,12 @@ const info = {
|
|
|
47
49
|
sdk: {
|
|
48
50
|
type: 'cosmos',
|
|
49
51
|
repo: 'https://github.com/celestiaorg/cosmos-sdk',
|
|
50
|
-
version: 'v1.
|
|
51
|
-
tag: 'v1.
|
|
52
|
+
version: 'v1.27.0',
|
|
53
|
+
tag: 'v1.27.0-sdk-v0.46.16'
|
|
52
54
|
},
|
|
53
55
|
ibc: {
|
|
54
56
|
type: 'go',
|
|
55
|
-
version: 'v6.2.
|
|
57
|
+
version: 'v6.2.2'
|
|
56
58
|
}
|
|
57
59
|
},
|
|
58
60
|
logo_URIs: {
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -162,6 +162,7 @@ import * as _sge from './sge';
|
|
|
162
162
|
import * as _shareledger from './shareledger';
|
|
163
163
|
import * as _shentu from './shentu';
|
|
164
164
|
import * as _shido from './shido';
|
|
165
|
+
import * as _sidechain from './sidechain';
|
|
165
166
|
import * as _sifchain from './sifchain';
|
|
166
167
|
import * as _six from './six';
|
|
167
168
|
import * as _sommelier from './sommelier';
|
|
@@ -357,6 +358,7 @@ const chains = [
|
|
|
357
358
|
_shareledger.chain,
|
|
358
359
|
_shentu.chain,
|
|
359
360
|
_shido.chain,
|
|
361
|
+
_sidechain.chain,
|
|
360
362
|
_sifchain.chain,
|
|
361
363
|
_six.chain,
|
|
362
364
|
_sommelier.chain,
|
package/esm/mainnet/ibc.js
CHANGED
|
@@ -127,6 +127,7 @@ import * as _sge from './sge';
|
|
|
127
127
|
import * as _shareledger from './shareledger';
|
|
128
128
|
import * as _shentu from './shentu';
|
|
129
129
|
import * as _shido from './shido';
|
|
130
|
+
import * as _sidechain from './sidechain';
|
|
130
131
|
import * as _sifchain from './sifchain';
|
|
131
132
|
import * as _sommelier from './sommelier';
|
|
132
133
|
import * as _source from './source';
|
|
@@ -277,6 +278,7 @@ const ibc = [
|
|
|
277
278
|
..._shareledger.ibc,
|
|
278
279
|
..._shentu.ibc,
|
|
279
280
|
..._shido.ibc,
|
|
281
|
+
..._sidechain.ibc,
|
|
280
282
|
..._sifchain.ibc,
|
|
281
283
|
..._sommelier.ibc,
|
|
282
284
|
..._source.ibc,
|
package/esm/mainnet/named.js
CHANGED
|
@@ -162,6 +162,7 @@ export * as sge from './sge';
|
|
|
162
162
|
export * as shareledger from './shareledger';
|
|
163
163
|
export * as shentu from './shentu';
|
|
164
164
|
export * as shido from './shido';
|
|
165
|
+
export * as sidechain from './sidechain';
|
|
165
166
|
export * as sifchain from './sifchain';
|
|
166
167
|
export * as six from './six';
|
|
167
168
|
export * as sommelier from './sommelier';
|
package/esm/mainnet/noble/ibc.js
CHANGED
|
@@ -1103,6 +1103,35 @@ const info = [
|
|
|
1103
1103
|
}
|
|
1104
1104
|
}]
|
|
1105
1105
|
},
|
|
1106
|
+
{
|
|
1107
|
+
$schema: '../ibc_data.schema.json',
|
|
1108
|
+
chain_1: {
|
|
1109
|
+
chain_name: 'noble',
|
|
1110
|
+
client_id: '07-tendermint-141',
|
|
1111
|
+
connection_id: 'connection-136'
|
|
1112
|
+
},
|
|
1113
|
+
chain_2: {
|
|
1114
|
+
chain_name: 'sidechain',
|
|
1115
|
+
client_id: '07-tendermint-7',
|
|
1116
|
+
connection_id: 'connection-2'
|
|
1117
|
+
},
|
|
1118
|
+
channels: [{
|
|
1119
|
+
chain_1: {
|
|
1120
|
+
channel_id: 'channel-123',
|
|
1121
|
+
port_id: 'transfer'
|
|
1122
|
+
},
|
|
1123
|
+
chain_2: {
|
|
1124
|
+
channel_id: 'channel-1',
|
|
1125
|
+
port_id: 'transfer'
|
|
1126
|
+
},
|
|
1127
|
+
ordering: 'unordered',
|
|
1128
|
+
version: 'ics20-1',
|
|
1129
|
+
tags: {
|
|
1130
|
+
status: 'live',
|
|
1131
|
+
preferred: true
|
|
1132
|
+
}
|
|
1133
|
+
}]
|
|
1134
|
+
},
|
|
1106
1135
|
{
|
|
1107
1136
|
$schema: '../ibc_data.schema.json',
|
|
1108
1137
|
chain_1: {
|
|
@@ -3993,6 +3993,35 @@ const info = [
|
|
|
3993
3993
|
}
|
|
3994
3994
|
}]
|
|
3995
3995
|
},
|
|
3996
|
+
{
|
|
3997
|
+
$schema: '../ibc_data.schema.json',
|
|
3998
|
+
chain_1: {
|
|
3999
|
+
chain_name: 'osmosis',
|
|
4000
|
+
client_id: '07-tendermint-3425',
|
|
4001
|
+
connection_id: 'connection-10585'
|
|
4002
|
+
},
|
|
4003
|
+
chain_2: {
|
|
4004
|
+
chain_name: 'sidechain',
|
|
4005
|
+
client_id: '07-tendermint-5',
|
|
4006
|
+
connection_id: 'connection-1'
|
|
4007
|
+
},
|
|
4008
|
+
channels: [{
|
|
4009
|
+
chain_1: {
|
|
4010
|
+
channel_id: 'channel-98081',
|
|
4011
|
+
port_id: 'transfer'
|
|
4012
|
+
},
|
|
4013
|
+
chain_2: {
|
|
4014
|
+
channel_id: 'channel-0',
|
|
4015
|
+
port_id: 'transfer'
|
|
4016
|
+
},
|
|
4017
|
+
ordering: 'unordered',
|
|
4018
|
+
version: 'ics20-1',
|
|
4019
|
+
tags: {
|
|
4020
|
+
status: 'live',
|
|
4021
|
+
preferred: true
|
|
4022
|
+
}
|
|
4023
|
+
}]
|
|
4024
|
+
},
|
|
3996
4025
|
{
|
|
3997
4026
|
$schema: '../ibc_data.schema.json',
|
|
3998
4027
|
chain_1: {
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'sidechain',
|
|
4
|
+
assets: [
|
|
5
|
+
{
|
|
6
|
+
description: 'The native token of Side Chain.',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'uside',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'side',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'uside',
|
|
15
|
+
name: 'Side Chain native token',
|
|
16
|
+
display: 'side',
|
|
17
|
+
symbol: 'SIDE',
|
|
18
|
+
logo_URIs: {
|
|
19
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
|
|
20
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
|
|
24
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg',
|
|
25
|
+
theme: {
|
|
26
|
+
primary_color_hex: '#f7771a'
|
|
27
|
+
}
|
|
28
|
+
}],
|
|
29
|
+
socials: {
|
|
30
|
+
website: 'https://side.one',
|
|
31
|
+
twitter: 'https://x.com/SideProtocol'
|
|
32
|
+
},
|
|
33
|
+
type_asset: 'sdk.coin'
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
description: 'BTC-pegged token on Side Chain.',
|
|
37
|
+
extended_description: 'sBTC is the native token of the Side Chain, fully pegged 1:1 to BTC held in a vault secured by 21 TSS signers on the Bitcoin mainnet. As a synthetic asset, sBTC enables Bitcoin liquidity to seamlessly flow into the Side Chain and the broader Cosmos ecosystem.',
|
|
38
|
+
denom_units: [{
|
|
39
|
+
denom: 'sat',
|
|
40
|
+
exponent: 0
|
|
41
|
+
}, {
|
|
42
|
+
denom: 'sBTC',
|
|
43
|
+
exponent: 8
|
|
44
|
+
}],
|
|
45
|
+
base: 'sat',
|
|
46
|
+
name: 'Side Bitcoin',
|
|
47
|
+
display: 'sBTC',
|
|
48
|
+
symbol: 'sBTC',
|
|
49
|
+
traces: [{
|
|
50
|
+
type: 'bridge',
|
|
51
|
+
counterparty: {
|
|
52
|
+
chain_name: 'bitcoin',
|
|
53
|
+
base_denom: 'sat'
|
|
54
|
+
},
|
|
55
|
+
provider: 'Side Chain'
|
|
56
|
+
}],
|
|
57
|
+
images: [{
|
|
58
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/sBTC.svg',
|
|
59
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/sBTC.png',
|
|
60
|
+
theme: {
|
|
61
|
+
primary_color_hex: '#f7771a'
|
|
62
|
+
}
|
|
63
|
+
}],
|
|
64
|
+
socials: {
|
|
65
|
+
website: 'https://side.one',
|
|
66
|
+
twitter: 'https://x.com/SideProtocol'
|
|
67
|
+
},
|
|
68
|
+
type_asset: 'sdk.coin'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
description: 'Noble USDC on Side Chain.',
|
|
72
|
+
denom_units: [{
|
|
73
|
+
denom: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3',
|
|
74
|
+
exponent: 0
|
|
75
|
+
}, {
|
|
76
|
+
denom: 'usdc',
|
|
77
|
+
exponent: 6
|
|
78
|
+
}],
|
|
79
|
+
type_asset: 'ics20',
|
|
80
|
+
base: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3',
|
|
81
|
+
name: 'Noble USDC',
|
|
82
|
+
display: 'usdc',
|
|
83
|
+
symbol: 'USDC',
|
|
84
|
+
traces: [{
|
|
85
|
+
type: 'ibc',
|
|
86
|
+
counterparty: {
|
|
87
|
+
chain_name: 'noble',
|
|
88
|
+
base_denom: 'uusdc',
|
|
89
|
+
channel_id: 'channel-123'
|
|
90
|
+
},
|
|
91
|
+
chain: {
|
|
92
|
+
channel_id: 'channel-1',
|
|
93
|
+
path: 'transfer/channel-1/uusdc'
|
|
94
|
+
}
|
|
95
|
+
}],
|
|
96
|
+
images: [{
|
|
97
|
+
image_sync: {
|
|
98
|
+
chain_name: 'noble',
|
|
99
|
+
base_denom: 'uusdc'
|
|
100
|
+
},
|
|
101
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
102
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
103
|
+
theme: {
|
|
104
|
+
circle: true,
|
|
105
|
+
primary_color_hex: '#2775CA'
|
|
106
|
+
}
|
|
107
|
+
}],
|
|
108
|
+
logo_URIs: {
|
|
109
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
110
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
};
|
|
115
|
+
export default info;
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'sidechain',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'mainnet',
|
|
6
|
+
website: 'https://side.one/',
|
|
7
|
+
pretty_name: 'Side Chain',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
chain_id: 'sidechain-1',
|
|
10
|
+
bech32_prefix: 'side',
|
|
11
|
+
daemon_name: 'sided',
|
|
12
|
+
node_home: '$HOME/.side',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'uside',
|
|
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
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'uside'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
git_repo: 'https://github.com/sideprotocol/side',
|
|
31
|
+
recommended_version: 'v1.0.0',
|
|
32
|
+
compatible_versions: ['v1.0.0'],
|
|
33
|
+
consensus: {
|
|
34
|
+
type: 'cometbft',
|
|
35
|
+
version: 'v0.38.11'
|
|
36
|
+
},
|
|
37
|
+
genesis: {
|
|
38
|
+
genesis_url: 'https://github.com/sideprotocol/networks/raw/main/mainnet/sidechain-1/genesis.json'
|
|
39
|
+
},
|
|
40
|
+
sdk: {
|
|
41
|
+
type: 'cosmos',
|
|
42
|
+
version: 'v0.50.9'
|
|
43
|
+
},
|
|
44
|
+
ibc: {
|
|
45
|
+
type: 'go',
|
|
46
|
+
version: 'v8.4.0'
|
|
47
|
+
},
|
|
48
|
+
cosmwasm: {
|
|
49
|
+
version: 'v0.53.0',
|
|
50
|
+
enabled: true
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
logo_URIs: {
|
|
54
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
|
|
55
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg'
|
|
56
|
+
},
|
|
57
|
+
description: 'The other side of Bitcoin, a fully Bitcoin-Compatible L1 blockchain for the BTCFi',
|
|
58
|
+
apis: {
|
|
59
|
+
rpc: [
|
|
60
|
+
{
|
|
61
|
+
address: 'https://rpc.side.one',
|
|
62
|
+
provider: 'Side Protocol'
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
address: 'https://rpc.side.nodestake.org',
|
|
66
|
+
provider: 'NodeStake'
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
address: 'https://side-rpc.synergynodes.com',
|
|
70
|
+
provider: 'Synergy Nodes'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
address: 'https://side.publicnode.com',
|
|
74
|
+
provider: 'Allnodes'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: 'https://side.rpc.kjnodes.com',
|
|
78
|
+
provider: 'kjnodes'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
address: 'https://side-mainnet-rpc.itrocket.net',
|
|
82
|
+
provider: 'ITRocket'
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
address: 'https://rpc.side.bh.rocks',
|
|
86
|
+
provider: 'BlockHunters'
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
rest: [
|
|
90
|
+
{
|
|
91
|
+
address: 'https://rest.side.one',
|
|
92
|
+
provider: 'Side Protocol'
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
address: 'https://api.side.nodestake.org',
|
|
96
|
+
provider: 'NodeStake'
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
address: 'https://side-api.synergynodes.com',
|
|
100
|
+
provider: 'Synergy Nodes'
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
address: 'https://side-rest.publicnode.com',
|
|
104
|
+
provider: 'Allnodes'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
address: 'https://side.api.kjnodes.com',
|
|
108
|
+
provider: 'kjnodes'
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
address: 'https://side-mainnet-api.itrocket.net',
|
|
112
|
+
provider: 'ITRocket'
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
address: 'https://api.side.bh.rocks',
|
|
116
|
+
provider: 'BlockHunters'
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
grpc: [
|
|
120
|
+
{
|
|
121
|
+
address: 'grpc.side.one:443',
|
|
122
|
+
provider: 'Side Protocol'
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
address: 'grpc.sided.nodestake.org:443',
|
|
126
|
+
provider: 'NodeStake'
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
address: 'side-grpc.synergynodes.com:443',
|
|
130
|
+
provider: 'Synergy Nodes'
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
address: 'side-grpc.publicnode.com:443',
|
|
134
|
+
provider: 'Allnodes'
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
address: 'side.grpc.kjnodes.com:443',
|
|
138
|
+
provider: 'kjnodes'
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
address: 'side-mainnet-grpc.itrocket.net:443',
|
|
142
|
+
provider: 'ITRocket'
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
address: 'grpc.side.bh.rocks:443',
|
|
146
|
+
provider: 'BlockHunters'
|
|
147
|
+
}
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
explorers: [
|
|
151
|
+
{
|
|
152
|
+
kind: 'Ping Pub',
|
|
153
|
+
url: 'https://ping.pub/side',
|
|
154
|
+
tx_page: 'https://ping.pub/side/tx/${txHash}',
|
|
155
|
+
account_page: 'https://ping.pub/side/account/${accountAddress}'
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
kind: 'Ping Pub',
|
|
159
|
+
url: 'https://explorer.nodestake.org/side',
|
|
160
|
+
tx_page: 'https://explorer.nodestake.org/side/tx/${txHash}',
|
|
161
|
+
account_page: 'https://explorer.nodestake.org/side/account/${accountAddress}'
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
kind: 'Ping Pub',
|
|
165
|
+
url: 'https://cosmosrun.info/side',
|
|
166
|
+
tx_page: 'https://cosmosrun.info/side/tx/${txHash}',
|
|
167
|
+
account_page: 'https://cosmosrun.info/side/account/${accountAddress}'
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
kind: 'Ping Pub',
|
|
171
|
+
url: 'https://explorer.kjnodes.com/side',
|
|
172
|
+
tx_page: 'https://explorer.kjnodes.com/side/tx/${txHash}',
|
|
173
|
+
account_page: 'https://explorer.kjnodes.com/side/account/${accountAddress}'
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
kind: 'Ping Pub',
|
|
177
|
+
url: 'https://bh.rocks/side',
|
|
178
|
+
tx_page: 'https://bh.rocks/side/tx/${txHash}',
|
|
179
|
+
account_page: 'https://bh.rocks/side/account/${accountAddress}'
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
images: [{
|
|
183
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
|
|
184
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg',
|
|
185
|
+
theme: {
|
|
186
|
+
primary_color_hex: '#f7771a'
|
|
187
|
+
}
|
|
188
|
+
}]
|
|
189
|
+
};
|
|
190
|
+
export default info;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'noble',
|
|
5
|
+
client_id: '07-tendermint-141',
|
|
6
|
+
connection_id: 'connection-136'
|
|
7
|
+
},
|
|
8
|
+
chain_2: {
|
|
9
|
+
chain_name: 'sidechain',
|
|
10
|
+
client_id: '07-tendermint-7',
|
|
11
|
+
connection_id: 'connection-2'
|
|
12
|
+
},
|
|
13
|
+
channels: [{
|
|
14
|
+
chain_1: {
|
|
15
|
+
channel_id: 'channel-123',
|
|
16
|
+
port_id: 'transfer'
|
|
17
|
+
},
|
|
18
|
+
chain_2: {
|
|
19
|
+
channel_id: 'channel-1',
|
|
20
|
+
port_id: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
ordering: 'unordered',
|
|
23
|
+
version: 'ics20-1',
|
|
24
|
+
tags: {
|
|
25
|
+
status: 'live',
|
|
26
|
+
preferred: true
|
|
27
|
+
}
|
|
28
|
+
}]
|
|
29
|
+
}, {
|
|
30
|
+
$schema: '../ibc_data.schema.json',
|
|
31
|
+
chain_1: {
|
|
32
|
+
chain_name: 'osmosis',
|
|
33
|
+
client_id: '07-tendermint-3425',
|
|
34
|
+
connection_id: 'connection-10585'
|
|
35
|
+
},
|
|
36
|
+
chain_2: {
|
|
37
|
+
chain_name: 'sidechain',
|
|
38
|
+
client_id: '07-tendermint-5',
|
|
39
|
+
connection_id: 'connection-1'
|
|
40
|
+
},
|
|
41
|
+
channels: [{
|
|
42
|
+
chain_1: {
|
|
43
|
+
channel_id: 'channel-98081',
|
|
44
|
+
port_id: 'transfer'
|
|
45
|
+
},
|
|
46
|
+
chain_2: {
|
|
47
|
+
channel_id: 'channel-0',
|
|
48
|
+
port_id: 'transfer'
|
|
49
|
+
},
|
|
50
|
+
ordering: 'unordered',
|
|
51
|
+
version: 'ics20-1',
|
|
52
|
+
tags: {
|
|
53
|
+
status: 'live',
|
|
54
|
+
preferred: true
|
|
55
|
+
}
|
|
56
|
+
}]
|
|
57
|
+
}];
|
|
58
|
+
export default info;
|
|
@@ -22,12 +22,15 @@ const info = {
|
|
|
22
22
|
},
|
|
23
23
|
codebase: {
|
|
24
24
|
git_repo: 'https://github.com/celestiaorg/celestia-app',
|
|
25
|
-
recommended_version: '
|
|
25
|
+
recommended_version: 'v3.3.1-mocha',
|
|
26
26
|
compatible_versions: [
|
|
27
|
-
'
|
|
28
|
-
'
|
|
29
|
-
'
|
|
30
|
-
'
|
|
27
|
+
'v3.0.0-mocha',
|
|
28
|
+
'v3.0.1-mocha',
|
|
29
|
+
'v3.0.2-mocha',
|
|
30
|
+
'v3.1.1-mocha',
|
|
31
|
+
'v3.2.0-mocha',
|
|
32
|
+
'v3.3.0-mocha',
|
|
33
|
+
'v3.3.1-mocha'
|
|
31
34
|
],
|
|
32
35
|
genesis: {
|
|
33
36
|
genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/mocha-4/genesis.json'
|
package/mainnet/assets.js
CHANGED
|
@@ -187,6 +187,7 @@ const _sge = __importStar(require("./sge"));
|
|
|
187
187
|
const _shareledger = __importStar(require("./shareledger"));
|
|
188
188
|
const _shentu = __importStar(require("./shentu"));
|
|
189
189
|
const _shido = __importStar(require("./shido"));
|
|
190
|
+
const _sidechain = __importStar(require("./sidechain"));
|
|
190
191
|
const _sifchain = __importStar(require("./sifchain"));
|
|
191
192
|
const _six = __importStar(require("./six"));
|
|
192
193
|
const _sommelier = __importStar(require("./sommelier"));
|
|
@@ -382,6 +383,7 @@ const assets = [
|
|
|
382
383
|
_shareledger.assets,
|
|
383
384
|
_shentu.assets,
|
|
384
385
|
_shido.assets,
|
|
386
|
+
_sidechain.assets,
|
|
385
387
|
_sifchain.assets,
|
|
386
388
|
_six.assets,
|
|
387
389
|
_sommelier.assets,
|
|
@@ -30,18 +30,20 @@ const info = {
|
|
|
30
30
|
},
|
|
31
31
|
codebase: {
|
|
32
32
|
git_repo: 'https://github.com/celestiaorg/celestia-app',
|
|
33
|
-
recommended_version: '
|
|
33
|
+
recommended_version: 'v3.3.1',
|
|
34
34
|
compatible_versions: [
|
|
35
|
-
'
|
|
36
|
-
'
|
|
37
|
-
'
|
|
38
|
-
'
|
|
35
|
+
'v3.3.1',
|
|
36
|
+
'v3.3.0',
|
|
37
|
+
'v3.2.0',
|
|
38
|
+
'v3.1.1',
|
|
39
|
+
'v3.0.2',
|
|
40
|
+
'v3.0.1'
|
|
39
41
|
],
|
|
40
42
|
consensus: {
|
|
41
43
|
type: 'tendermint',
|
|
42
|
-
version: 'v1.
|
|
44
|
+
version: 'v1.45.0',
|
|
43
45
|
repo: 'https://github.com/celestiaorg/celestia-core',
|
|
44
|
-
tag: 'v1.
|
|
46
|
+
tag: 'v1.45.0-tm-v0.34.35'
|
|
45
47
|
},
|
|
46
48
|
genesis: {
|
|
47
49
|
genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/celestia/genesis.json'
|
|
@@ -49,12 +51,12 @@ const info = {
|
|
|
49
51
|
sdk: {
|
|
50
52
|
type: 'cosmos',
|
|
51
53
|
repo: 'https://github.com/celestiaorg/cosmos-sdk',
|
|
52
|
-
version: 'v1.
|
|
53
|
-
tag: 'v1.
|
|
54
|
+
version: 'v1.27.0',
|
|
55
|
+
tag: 'v1.27.0-sdk-v0.46.16'
|
|
54
56
|
},
|
|
55
57
|
ibc: {
|
|
56
58
|
type: 'go',
|
|
57
|
-
version: 'v6.2.
|
|
59
|
+
version: 'v6.2.2'
|
|
58
60
|
}
|
|
59
61
|
},
|
|
60
62
|
logo_URIs: {
|
package/mainnet/chains.js
CHANGED
|
@@ -187,6 +187,7 @@ const _sge = __importStar(require("./sge"));
|
|
|
187
187
|
const _shareledger = __importStar(require("./shareledger"));
|
|
188
188
|
const _shentu = __importStar(require("./shentu"));
|
|
189
189
|
const _shido = __importStar(require("./shido"));
|
|
190
|
+
const _sidechain = __importStar(require("./sidechain"));
|
|
190
191
|
const _sifchain = __importStar(require("./sifchain"));
|
|
191
192
|
const _six = __importStar(require("./six"));
|
|
192
193
|
const _sommelier = __importStar(require("./sommelier"));
|
|
@@ -382,6 +383,7 @@ const chains = [
|
|
|
382
383
|
_shareledger.chain,
|
|
383
384
|
_shentu.chain,
|
|
384
385
|
_shido.chain,
|
|
386
|
+
_sidechain.chain,
|
|
385
387
|
_sifchain.chain,
|
|
386
388
|
_six.chain,
|
|
387
389
|
_sommelier.chain,
|
package/mainnet/ibc.js
CHANGED
|
@@ -152,6 +152,7 @@ const _sge = __importStar(require("./sge"));
|
|
|
152
152
|
const _shareledger = __importStar(require("./shareledger"));
|
|
153
153
|
const _shentu = __importStar(require("./shentu"));
|
|
154
154
|
const _shido = __importStar(require("./shido"));
|
|
155
|
+
const _sidechain = __importStar(require("./sidechain"));
|
|
155
156
|
const _sifchain = __importStar(require("./sifchain"));
|
|
156
157
|
const _sommelier = __importStar(require("./sommelier"));
|
|
157
158
|
const _source = __importStar(require("./source"));
|
|
@@ -302,6 +303,7 @@ const ibc = [
|
|
|
302
303
|
..._shareledger.ibc,
|
|
303
304
|
..._shentu.ibc,
|
|
304
305
|
..._shido.ibc,
|
|
306
|
+
..._sidechain.ibc,
|
|
305
307
|
..._sifchain.ibc,
|
|
306
308
|
..._sommelier.ibc,
|
|
307
309
|
..._source.ibc,
|
package/mainnet/named.d.ts
CHANGED
|
@@ -162,6 +162,7 @@ export * as sge from './sge';
|
|
|
162
162
|
export * as shareledger from './shareledger';
|
|
163
163
|
export * as shentu from './shentu';
|
|
164
164
|
export * as shido from './shido';
|
|
165
|
+
export * as sidechain from './sidechain';
|
|
165
166
|
export * as sifchain from './sifchain';
|
|
166
167
|
export * as six from './six';
|
|
167
168
|
export * as sommelier from './sommelier';
|
package/mainnet/named.js
CHANGED
|
@@ -26,7 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = 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.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = 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.ethereum = void 0;
|
|
27
27
|
exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kopi = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.int3face = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = 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 = void 0;
|
|
28
28
|
exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage = 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.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.mars = exports.mantrachain = exports.mande = exports.lumnetwork = exports.loyal = exports.lorenzo = exports.loop = void 0;
|
|
29
|
-
exports.zetachain = exports.zenrock = exports.xpla = exports.xion = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = 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 = void 0;
|
|
29
|
+
exports.zetachain = exports.zenrock = exports.xpla = exports.xion = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = 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 = void 0;
|
|
30
30
|
exports.ethereum = __importStar(require("./ethereum"));
|
|
31
31
|
exports.rootstock = __importStar(require("./rootstock"));
|
|
32
32
|
exports.solana = __importStar(require("./solana"));
|
|
@@ -191,6 +191,7 @@ exports.sge = __importStar(require("./sge"));
|
|
|
191
191
|
exports.shareledger = __importStar(require("./shareledger"));
|
|
192
192
|
exports.shentu = __importStar(require("./shentu"));
|
|
193
193
|
exports.shido = __importStar(require("./shido"));
|
|
194
|
+
exports.sidechain = __importStar(require("./sidechain"));
|
|
194
195
|
exports.sifchain = __importStar(require("./sifchain"));
|
|
195
196
|
exports.six = __importStar(require("./six"));
|
|
196
197
|
exports.sommelier = __importStar(require("./sommelier"));
|
package/mainnet/noble/ibc.js
CHANGED
|
@@ -1105,6 +1105,35 @@ const info = [
|
|
|
1105
1105
|
}
|
|
1106
1106
|
}]
|
|
1107
1107
|
},
|
|
1108
|
+
{
|
|
1109
|
+
$schema: '../ibc_data.schema.json',
|
|
1110
|
+
chain_1: {
|
|
1111
|
+
chain_name: 'noble',
|
|
1112
|
+
client_id: '07-tendermint-141',
|
|
1113
|
+
connection_id: 'connection-136'
|
|
1114
|
+
},
|
|
1115
|
+
chain_2: {
|
|
1116
|
+
chain_name: 'sidechain',
|
|
1117
|
+
client_id: '07-tendermint-7',
|
|
1118
|
+
connection_id: 'connection-2'
|
|
1119
|
+
},
|
|
1120
|
+
channels: [{
|
|
1121
|
+
chain_1: {
|
|
1122
|
+
channel_id: 'channel-123',
|
|
1123
|
+
port_id: 'transfer'
|
|
1124
|
+
},
|
|
1125
|
+
chain_2: {
|
|
1126
|
+
channel_id: 'channel-1',
|
|
1127
|
+
port_id: 'transfer'
|
|
1128
|
+
},
|
|
1129
|
+
ordering: 'unordered',
|
|
1130
|
+
version: 'ics20-1',
|
|
1131
|
+
tags: {
|
|
1132
|
+
status: 'live',
|
|
1133
|
+
preferred: true
|
|
1134
|
+
}
|
|
1135
|
+
}]
|
|
1136
|
+
},
|
|
1108
1137
|
{
|
|
1109
1138
|
$schema: '../ibc_data.schema.json',
|
|
1110
1139
|
chain_1: {
|
package/mainnet/osmosis/ibc.js
CHANGED
|
@@ -3995,6 +3995,35 @@ const info = [
|
|
|
3995
3995
|
}
|
|
3996
3996
|
}]
|
|
3997
3997
|
},
|
|
3998
|
+
{
|
|
3999
|
+
$schema: '../ibc_data.schema.json',
|
|
4000
|
+
chain_1: {
|
|
4001
|
+
chain_name: 'osmosis',
|
|
4002
|
+
client_id: '07-tendermint-3425',
|
|
4003
|
+
connection_id: 'connection-10585'
|
|
4004
|
+
},
|
|
4005
|
+
chain_2: {
|
|
4006
|
+
chain_name: 'sidechain',
|
|
4007
|
+
client_id: '07-tendermint-5',
|
|
4008
|
+
connection_id: 'connection-1'
|
|
4009
|
+
},
|
|
4010
|
+
channels: [{
|
|
4011
|
+
chain_1: {
|
|
4012
|
+
channel_id: 'channel-98081',
|
|
4013
|
+
port_id: 'transfer'
|
|
4014
|
+
},
|
|
4015
|
+
chain_2: {
|
|
4016
|
+
channel_id: 'channel-0',
|
|
4017
|
+
port_id: 'transfer'
|
|
4018
|
+
},
|
|
4019
|
+
ordering: 'unordered',
|
|
4020
|
+
version: 'ics20-1',
|
|
4021
|
+
tags: {
|
|
4022
|
+
status: 'live',
|
|
4023
|
+
preferred: true
|
|
4024
|
+
}
|
|
4025
|
+
}]
|
|
4026
|
+
},
|
|
3998
4027
|
{
|
|
3999
4028
|
$schema: '../ibc_data.schema.json',
|
|
4000
4029
|
chain_1: {
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'sidechain',
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'The native token of Side Chain.',
|
|
9
|
+
denom_units: [{
|
|
10
|
+
denom: 'uside',
|
|
11
|
+
exponent: 0
|
|
12
|
+
}, {
|
|
13
|
+
denom: 'side',
|
|
14
|
+
exponent: 6
|
|
15
|
+
}],
|
|
16
|
+
base: 'uside',
|
|
17
|
+
name: 'Side Chain native token',
|
|
18
|
+
display: 'side',
|
|
19
|
+
symbol: 'SIDE',
|
|
20
|
+
logo_URIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
|
|
22
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg'
|
|
23
|
+
},
|
|
24
|
+
images: [{
|
|
25
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
|
|
26
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg',
|
|
27
|
+
theme: {
|
|
28
|
+
primary_color_hex: '#f7771a'
|
|
29
|
+
}
|
|
30
|
+
}],
|
|
31
|
+
socials: {
|
|
32
|
+
website: 'https://side.one',
|
|
33
|
+
twitter: 'https://x.com/SideProtocol'
|
|
34
|
+
},
|
|
35
|
+
type_asset: 'sdk.coin'
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
description: 'BTC-pegged token on Side Chain.',
|
|
39
|
+
extended_description: 'sBTC is the native token of the Side Chain, fully pegged 1:1 to BTC held in a vault secured by 21 TSS signers on the Bitcoin mainnet. As a synthetic asset, sBTC enables Bitcoin liquidity to seamlessly flow into the Side Chain and the broader Cosmos ecosystem.',
|
|
40
|
+
denom_units: [{
|
|
41
|
+
denom: 'sat',
|
|
42
|
+
exponent: 0
|
|
43
|
+
}, {
|
|
44
|
+
denom: 'sBTC',
|
|
45
|
+
exponent: 8
|
|
46
|
+
}],
|
|
47
|
+
base: 'sat',
|
|
48
|
+
name: 'Side Bitcoin',
|
|
49
|
+
display: 'sBTC',
|
|
50
|
+
symbol: 'sBTC',
|
|
51
|
+
traces: [{
|
|
52
|
+
type: 'bridge',
|
|
53
|
+
counterparty: {
|
|
54
|
+
chain_name: 'bitcoin',
|
|
55
|
+
base_denom: 'sat'
|
|
56
|
+
},
|
|
57
|
+
provider: 'Side Chain'
|
|
58
|
+
}],
|
|
59
|
+
images: [{
|
|
60
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/sBTC.svg',
|
|
61
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/sBTC.png',
|
|
62
|
+
theme: {
|
|
63
|
+
primary_color_hex: '#f7771a'
|
|
64
|
+
}
|
|
65
|
+
}],
|
|
66
|
+
socials: {
|
|
67
|
+
website: 'https://side.one',
|
|
68
|
+
twitter: 'https://x.com/SideProtocol'
|
|
69
|
+
},
|
|
70
|
+
type_asset: 'sdk.coin'
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
description: 'Noble USDC on Side Chain.',
|
|
74
|
+
denom_units: [{
|
|
75
|
+
denom: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3',
|
|
76
|
+
exponent: 0
|
|
77
|
+
}, {
|
|
78
|
+
denom: 'usdc',
|
|
79
|
+
exponent: 6
|
|
80
|
+
}],
|
|
81
|
+
type_asset: 'ics20',
|
|
82
|
+
base: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3',
|
|
83
|
+
name: 'Noble USDC',
|
|
84
|
+
display: 'usdc',
|
|
85
|
+
symbol: 'USDC',
|
|
86
|
+
traces: [{
|
|
87
|
+
type: 'ibc',
|
|
88
|
+
counterparty: {
|
|
89
|
+
chain_name: 'noble',
|
|
90
|
+
base_denom: 'uusdc',
|
|
91
|
+
channel_id: 'channel-123'
|
|
92
|
+
},
|
|
93
|
+
chain: {
|
|
94
|
+
channel_id: 'channel-1',
|
|
95
|
+
path: 'transfer/channel-1/uusdc'
|
|
96
|
+
}
|
|
97
|
+
}],
|
|
98
|
+
images: [{
|
|
99
|
+
image_sync: {
|
|
100
|
+
chain_name: 'noble',
|
|
101
|
+
base_denom: 'uusdc'
|
|
102
|
+
},
|
|
103
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
104
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
|
|
105
|
+
theme: {
|
|
106
|
+
circle: true,
|
|
107
|
+
primary_color_hex: '#2775CA'
|
|
108
|
+
}
|
|
109
|
+
}],
|
|
110
|
+
logo_URIs: {
|
|
111
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
112
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
};
|
|
117
|
+
exports.default = info;
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'sidechain',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
website: 'https://side.one/',
|
|
9
|
+
pretty_name: 'Side Chain',
|
|
10
|
+
chain_type: 'cosmos',
|
|
11
|
+
chain_id: 'sidechain-1',
|
|
12
|
+
bech32_prefix: 'side',
|
|
13
|
+
daemon_name: 'sided',
|
|
14
|
+
node_home: '$HOME/.side',
|
|
15
|
+
key_algos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
fee_tokens: [{
|
|
19
|
+
denom: 'uside',
|
|
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
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
staking_tokens: [{
|
|
28
|
+
denom: 'uside'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
git_repo: 'https://github.com/sideprotocol/side',
|
|
33
|
+
recommended_version: 'v1.0.0',
|
|
34
|
+
compatible_versions: ['v1.0.0'],
|
|
35
|
+
consensus: {
|
|
36
|
+
type: 'cometbft',
|
|
37
|
+
version: 'v0.38.11'
|
|
38
|
+
},
|
|
39
|
+
genesis: {
|
|
40
|
+
genesis_url: 'https://github.com/sideprotocol/networks/raw/main/mainnet/sidechain-1/genesis.json'
|
|
41
|
+
},
|
|
42
|
+
sdk: {
|
|
43
|
+
type: 'cosmos',
|
|
44
|
+
version: 'v0.50.9'
|
|
45
|
+
},
|
|
46
|
+
ibc: {
|
|
47
|
+
type: 'go',
|
|
48
|
+
version: 'v8.4.0'
|
|
49
|
+
},
|
|
50
|
+
cosmwasm: {
|
|
51
|
+
version: 'v0.53.0',
|
|
52
|
+
enabled: true
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
logo_URIs: {
|
|
56
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
|
|
57
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg'
|
|
58
|
+
},
|
|
59
|
+
description: 'The other side of Bitcoin, a fully Bitcoin-Compatible L1 blockchain for the BTCFi',
|
|
60
|
+
apis: {
|
|
61
|
+
rpc: [
|
|
62
|
+
{
|
|
63
|
+
address: 'https://rpc.side.one',
|
|
64
|
+
provider: 'Side Protocol'
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
address: 'https://rpc.side.nodestake.org',
|
|
68
|
+
provider: 'NodeStake'
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
address: 'https://side-rpc.synergynodes.com',
|
|
72
|
+
provider: 'Synergy Nodes'
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
address: 'https://side.publicnode.com',
|
|
76
|
+
provider: 'Allnodes'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://side.rpc.kjnodes.com',
|
|
80
|
+
provider: 'kjnodes'
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
address: 'https://side-mainnet-rpc.itrocket.net',
|
|
84
|
+
provider: 'ITRocket'
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
address: 'https://rpc.side.bh.rocks',
|
|
88
|
+
provider: 'BlockHunters'
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
rest: [
|
|
92
|
+
{
|
|
93
|
+
address: 'https://rest.side.one',
|
|
94
|
+
provider: 'Side Protocol'
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
address: 'https://api.side.nodestake.org',
|
|
98
|
+
provider: 'NodeStake'
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
address: 'https://side-api.synergynodes.com',
|
|
102
|
+
provider: 'Synergy Nodes'
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
address: 'https://side-rest.publicnode.com',
|
|
106
|
+
provider: 'Allnodes'
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
address: 'https://side.api.kjnodes.com',
|
|
110
|
+
provider: 'kjnodes'
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
address: 'https://side-mainnet-api.itrocket.net',
|
|
114
|
+
provider: 'ITRocket'
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
address: 'https://api.side.bh.rocks',
|
|
118
|
+
provider: 'BlockHunters'
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
grpc: [
|
|
122
|
+
{
|
|
123
|
+
address: 'grpc.side.one:443',
|
|
124
|
+
provider: 'Side Protocol'
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
address: 'grpc.sided.nodestake.org:443',
|
|
128
|
+
provider: 'NodeStake'
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
address: 'side-grpc.synergynodes.com:443',
|
|
132
|
+
provider: 'Synergy Nodes'
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
address: 'side-grpc.publicnode.com:443',
|
|
136
|
+
provider: 'Allnodes'
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
address: 'side.grpc.kjnodes.com:443',
|
|
140
|
+
provider: 'kjnodes'
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
address: 'side-mainnet-grpc.itrocket.net:443',
|
|
144
|
+
provider: 'ITRocket'
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
address: 'grpc.side.bh.rocks:443',
|
|
148
|
+
provider: 'BlockHunters'
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
explorers: [
|
|
153
|
+
{
|
|
154
|
+
kind: 'Ping Pub',
|
|
155
|
+
url: 'https://ping.pub/side',
|
|
156
|
+
tx_page: 'https://ping.pub/side/tx/${txHash}',
|
|
157
|
+
account_page: 'https://ping.pub/side/account/${accountAddress}'
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
kind: 'Ping Pub',
|
|
161
|
+
url: 'https://explorer.nodestake.org/side',
|
|
162
|
+
tx_page: 'https://explorer.nodestake.org/side/tx/${txHash}',
|
|
163
|
+
account_page: 'https://explorer.nodestake.org/side/account/${accountAddress}'
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
kind: 'Ping Pub',
|
|
167
|
+
url: 'https://cosmosrun.info/side',
|
|
168
|
+
tx_page: 'https://cosmosrun.info/side/tx/${txHash}',
|
|
169
|
+
account_page: 'https://cosmosrun.info/side/account/${accountAddress}'
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
kind: 'Ping Pub',
|
|
173
|
+
url: 'https://explorer.kjnodes.com/side',
|
|
174
|
+
tx_page: 'https://explorer.kjnodes.com/side/tx/${txHash}',
|
|
175
|
+
account_page: 'https://explorer.kjnodes.com/side/account/${accountAddress}'
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
kind: 'Ping Pub',
|
|
179
|
+
url: 'https://bh.rocks/side',
|
|
180
|
+
tx_page: 'https://bh.rocks/side/tx/${txHash}',
|
|
181
|
+
account_page: 'https://bh.rocks/side/account/${accountAddress}'
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
images: [{
|
|
185
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.png',
|
|
186
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sidechain/images/side.svg',
|
|
187
|
+
theme: {
|
|
188
|
+
primary_color_hex: '#f7771a'
|
|
189
|
+
}
|
|
190
|
+
}]
|
|
191
|
+
};
|
|
192
|
+
exports.default = info;
|
|
@@ -0,0 +1,60 @@
|
|
|
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: 'noble',
|
|
7
|
+
client_id: '07-tendermint-141',
|
|
8
|
+
connection_id: 'connection-136'
|
|
9
|
+
},
|
|
10
|
+
chain_2: {
|
|
11
|
+
chain_name: 'sidechain',
|
|
12
|
+
client_id: '07-tendermint-7',
|
|
13
|
+
connection_id: 'connection-2'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-123',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-1',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}, {
|
|
32
|
+
$schema: '../ibc_data.schema.json',
|
|
33
|
+
chain_1: {
|
|
34
|
+
chain_name: 'osmosis',
|
|
35
|
+
client_id: '07-tendermint-3425',
|
|
36
|
+
connection_id: 'connection-10585'
|
|
37
|
+
},
|
|
38
|
+
chain_2: {
|
|
39
|
+
chain_name: 'sidechain',
|
|
40
|
+
client_id: '07-tendermint-5',
|
|
41
|
+
connection_id: 'connection-1'
|
|
42
|
+
},
|
|
43
|
+
channels: [{
|
|
44
|
+
chain_1: {
|
|
45
|
+
channel_id: 'channel-98081',
|
|
46
|
+
port_id: 'transfer'
|
|
47
|
+
},
|
|
48
|
+
chain_2: {
|
|
49
|
+
channel_id: 'channel-0',
|
|
50
|
+
port_id: 'transfer'
|
|
51
|
+
},
|
|
52
|
+
ordering: 'unordered',
|
|
53
|
+
version: 'ics20-1',
|
|
54
|
+
tags: {
|
|
55
|
+
status: 'live',
|
|
56
|
+
preferred: true
|
|
57
|
+
}
|
|
58
|
+
}]
|
|
59
|
+
}];
|
|
60
|
+
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.121",
|
|
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,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.51.
|
|
32
|
+
"@chain-registry/utils": "^1.51.70",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.50.
|
|
36
|
+
"@chain-registry/types": "^0.50.70"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "f6ad88200b04bf4cf21ad1e5ba5ce37adc92d006"
|
|
47
47
|
}
|
|
@@ -24,12 +24,15 @@ const info = {
|
|
|
24
24
|
},
|
|
25
25
|
codebase: {
|
|
26
26
|
git_repo: 'https://github.com/celestiaorg/celestia-app',
|
|
27
|
-
recommended_version: '
|
|
27
|
+
recommended_version: 'v3.3.1-mocha',
|
|
28
28
|
compatible_versions: [
|
|
29
|
-
'
|
|
30
|
-
'
|
|
31
|
-
'
|
|
32
|
-
'
|
|
29
|
+
'v3.0.0-mocha',
|
|
30
|
+
'v3.0.1-mocha',
|
|
31
|
+
'v3.0.2-mocha',
|
|
32
|
+
'v3.1.1-mocha',
|
|
33
|
+
'v3.2.0-mocha',
|
|
34
|
+
'v3.3.0-mocha',
|
|
35
|
+
'v3.3.1-mocha'
|
|
33
36
|
],
|
|
34
37
|
genesis: {
|
|
35
38
|
genesis_url: 'https://raw.githubusercontent.com/celestiaorg/networks/master/mocha-4/genesis.json'
|