chain-registry 1.69.424 → 1.69.426
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/chains.js +2 -0
- package/esm/mainnet/cosmoshub/chain.js +21 -0
- package/esm/mainnet/dydx/chain.js +4 -4
- package/esm/mainnet/epix/ibc.js +32 -0
- package/esm/mainnet/epix/index.js +2 -0
- package/esm/mainnet/ibc.js +2 -0
- package/esm/mainnet/injective/chain.js +5 -1
- package/esm/mainnet/lava/chain.js +12 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/optio/chain.js +4 -1
- package/esm/mainnet/osmosis/assets.js +40 -0
- package/esm/mainnet/osmosis/ibc.js +31 -0
- package/esm/mainnet/stoc/assets.js +28 -0
- package/esm/mainnet/stoc/chain.js +77 -0
- package/esm/mainnet/stoc/index.js +4 -0
- package/esm/testnet/assets.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/named.js +1 -0
- package/esm/testnet/tstoctestnet/assets.js +39 -0
- package/esm/testnet/tstoctestnet/chain.js +80 -0
- package/esm/testnet/tstoctestnet/index.js +4 -0
- package/mainnet/assets.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/chain.js +21 -0
- package/mainnet/dydx/chain.js +4 -4
- package/mainnet/epix/ibc.d.ts +3 -0
- package/mainnet/epix/ibc.js +34 -0
- package/mainnet/epix/index.d.ts +1 -0
- package/mainnet/epix/index.js +3 -1
- package/mainnet/ibc.js +2 -0
- package/mainnet/injective/chain.js +5 -1
- package/mainnet/lava/chain.js +12 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +3 -2
- package/mainnet/optio/chain.js +4 -1
- package/mainnet/osmosis/assets.js +40 -0
- package/mainnet/osmosis/ibc.js +31 -0
- package/mainnet/stoc/assets.d.ts +3 -0
- package/mainnet/stoc/assets.js +30 -0
- package/mainnet/stoc/chain.d.ts +3 -0
- package/mainnet/stoc/chain.js +79 -0
- package/mainnet/stoc/index.d.ts +2 -0
- package/mainnet/stoc/index.js +10 -0
- package/package.json +3 -3
- package/testnet/assets.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/named.d.ts +1 -0
- package/testnet/named.js +2 -1
- package/testnet/tstoctestnet/assets.d.ts +3 -0
- package/testnet/tstoctestnet/assets.js +41 -0
- package/testnet/tstoctestnet/chain.d.ts +3 -0
- package/testnet/tstoctestnet/chain.js +82 -0
- package/testnet/tstoctestnet/index.d.ts +2 -0
- package/testnet/tstoctestnet/index.js +10 -0
package/esm/mainnet/assets.js
CHANGED
|
@@ -190,6 +190,7 @@ import * as _source from './source';
|
|
|
190
190
|
import * as _stafihub from './stafihub';
|
|
191
191
|
import * as _stargaze from './stargaze';
|
|
192
192
|
import * as _starname from './starname';
|
|
193
|
+
import * as _stoc from './stoc';
|
|
193
194
|
import * as _stratos from './stratos';
|
|
194
195
|
import * as _stride from './stride';
|
|
195
196
|
import * as _sunrise from './sunrise';
|
|
@@ -412,6 +413,7 @@ const assets = [
|
|
|
412
413
|
_stafihub.assets,
|
|
413
414
|
_stargaze.assets,
|
|
414
415
|
_starname.assets,
|
|
416
|
+
_stoc.assets,
|
|
415
417
|
_stratos.assets,
|
|
416
418
|
_stride.assets,
|
|
417
419
|
_sunrise.assets,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -190,6 +190,7 @@ import * as _source from './source';
|
|
|
190
190
|
import * as _stafihub from './stafihub';
|
|
191
191
|
import * as _stargaze from './stargaze';
|
|
192
192
|
import * as _starname from './starname';
|
|
193
|
+
import * as _stoc from './stoc';
|
|
193
194
|
import * as _stratos from './stratos';
|
|
194
195
|
import * as _stride from './stride';
|
|
195
196
|
import * as _sunrise from './sunrise';
|
|
@@ -412,6 +413,7 @@ const chains = [
|
|
|
412
413
|
_stafihub.chain,
|
|
413
414
|
_stargaze.chain,
|
|
414
415
|
_starname.chain,
|
|
416
|
+
_stoc.chain,
|
|
415
417
|
_stratos.chain,
|
|
416
418
|
_stride.chain,
|
|
417
419
|
_sunrise.chain,
|
|
@@ -229,6 +229,10 @@ const info = {
|
|
|
229
229
|
{
|
|
230
230
|
address: 'https://rpc.cosmoshub-4-archive.citizenweb3.com:443',
|
|
231
231
|
provider: 'Citizen Web3'
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
address: 'https://cosmoshub-mainnet.chain.whenmoonwhenlambo.money',
|
|
235
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
232
236
|
}
|
|
233
237
|
],
|
|
234
238
|
rest: [
|
|
@@ -368,6 +372,10 @@ const info = {
|
|
|
368
372
|
{
|
|
369
373
|
address: 'https://api.cosmoshub-4.citizenweb3.com:443',
|
|
370
374
|
provider: 'Citizen Web3'
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
address: 'https://cosmoshub-mainnet.chain.whenmoonwhenlambo.money',
|
|
378
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
371
379
|
}
|
|
372
380
|
],
|
|
373
381
|
grpc: [
|
|
@@ -467,6 +475,10 @@ const info = {
|
|
|
467
475
|
{
|
|
468
476
|
address: 'grpc.cosmoshub-4.citizenweb3.com:443',
|
|
469
477
|
provider: 'Citizen Web3'
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
address: 'cosmoshub-mainnet.chain.whenmoonwhenlambo.money:443',
|
|
481
|
+
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
470
482
|
}
|
|
471
483
|
]
|
|
472
484
|
},
|
|
@@ -590,6 +602,15 @@ const info = {
|
|
|
590
602
|
url: 'https://validatorinfo.com/networks/cosmoshub/overview',
|
|
591
603
|
validator_page: 'https://validatorinfo.com/networks/cosmoshub/validators',
|
|
592
604
|
proposal_page: 'https://validatorinfo.com/networks/cosmoshub/governance'
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
|
|
608
|
+
url: 'https://explorer.whenmoonwhenlambo.money/cosmos',
|
|
609
|
+
tx_page: 'https://explorer.whenmoonwhenlambo.money/cosmos/tx/${txHash}',
|
|
610
|
+
account_page: 'https://explorer.whenmoonwhenlambo.money/cosmos/account/${accountAddress}',
|
|
611
|
+
validator_page: 'https://explorer.whenmoonwhenlambo.money/cosmos/staking/${validatorAddress}',
|
|
612
|
+
proposal_page: 'https://explorer.whenmoonwhenlambo.money/cosmos/gov/${proposalId}',
|
|
613
|
+
block_page: 'https://explorer.whenmoonwhenlambo.money/cosmos/block/${blockHeight}'
|
|
593
614
|
}
|
|
594
615
|
],
|
|
595
616
|
images: [{
|
|
@@ -34,11 +34,11 @@ const info = {
|
|
|
34
34
|
},
|
|
35
35
|
codebase: {
|
|
36
36
|
git_repo: 'https://github.com/dydxprotocol/v4-chain/',
|
|
37
|
-
recommended_version: 'protocol/v9.
|
|
38
|
-
compatible_versions: ['protocol/v9.
|
|
37
|
+
recommended_version: 'protocol/v9.5.0',
|
|
38
|
+
compatible_versions: ['protocol/v9.5.0'],
|
|
39
39
|
binaries: {
|
|
40
|
-
"linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.
|
|
41
|
-
"linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.
|
|
40
|
+
"linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.5.0/dydxprotocold-v9.5.0-linux-amd64.tar.gz',
|
|
41
|
+
"linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.5.0/dydxprotocold-v9.5.0-linux-arm64.tar.gz'
|
|
42
42
|
},
|
|
43
43
|
consensus: {
|
|
44
44
|
type: 'cometbft',
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'epix',
|
|
5
|
+
chain_id: 'epix_1916-1',
|
|
6
|
+
client_id: '07-tendermint-0',
|
|
7
|
+
connection_id: 'connection-1'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'osmosis',
|
|
11
|
+
chain_id: 'osmosis-1',
|
|
12
|
+
client_id: '07-tendermint-3641',
|
|
13
|
+
connection_id: 'connection-10988'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-0',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-108456',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'ACTIVE',
|
|
28
|
+
preferred: true
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
package/esm/mainnet/ibc.js
CHANGED
|
@@ -52,6 +52,7 @@ import * as _echelon from './echelon';
|
|
|
52
52
|
import * as _elys from './elys';
|
|
53
53
|
import * as _emoney from './emoney';
|
|
54
54
|
import * as _empowerchain from './empowerchain';
|
|
55
|
+
import * as _epix from './epix';
|
|
55
56
|
import * as _evmos from './evmos';
|
|
56
57
|
import * as _fandomchain from './fandomchain';
|
|
57
58
|
import * as _fetchhub from './fetchhub';
|
|
@@ -226,6 +227,7 @@ const ibc = [
|
|
|
226
227
|
..._elys.ibc,
|
|
227
228
|
..._emoney.ibc,
|
|
228
229
|
..._empowerchain.ibc,
|
|
230
|
+
..._epix.ibc,
|
|
229
231
|
..._evmos.ibc,
|
|
230
232
|
..._fandomchain.ibc,
|
|
231
233
|
..._fetchhub.ibc,
|
|
@@ -217,7 +217,11 @@ const info = {
|
|
|
217
217
|
address: 'injective-grpc.noders.services:33090',
|
|
218
218
|
provider: '[NODERS]TEAM'
|
|
219
219
|
}
|
|
220
|
-
]
|
|
220
|
+
],
|
|
221
|
+
"evm-http-jsonrpc": [{
|
|
222
|
+
address: 'https://injective.json-rpc.decentrio.ventures',
|
|
223
|
+
provider: 'Decentrio'
|
|
224
|
+
}]
|
|
221
225
|
},
|
|
222
226
|
explorers: [
|
|
223
227
|
{
|
|
@@ -143,6 +143,10 @@ const info = {
|
|
|
143
143
|
{
|
|
144
144
|
address: 'https://rpc-lava.winnode.xyz',
|
|
145
145
|
provider: 'Winnode'
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
address: 'https://rpc-lava.vinjan.xyz',
|
|
149
|
+
provider: 'Vinjan.Inc'
|
|
146
150
|
}
|
|
147
151
|
],
|
|
148
152
|
rest: [
|
|
@@ -213,6 +217,10 @@ const info = {
|
|
|
213
217
|
{
|
|
214
218
|
address: 'https://api-lava.winnode.xyz',
|
|
215
219
|
provider: 'Winnode'
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
address: 'https://api-lava.vinjan.xyz',
|
|
223
|
+
provider: 'Vinjan.Inc'
|
|
216
224
|
}
|
|
217
225
|
],
|
|
218
226
|
grpc: [
|
|
@@ -263,6 +271,10 @@ const info = {
|
|
|
263
271
|
{
|
|
264
272
|
address: 'grpc-lava.winnode.xyz:443',
|
|
265
273
|
provider: 'Winnode'
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
address: 'grpc-lava.vinjan.xyz:29990',
|
|
277
|
+
provider: 'Vinjan.Inc'
|
|
266
278
|
}
|
|
267
279
|
]
|
|
268
280
|
},
|
package/esm/mainnet/named.js
CHANGED
|
@@ -190,6 +190,7 @@ export * as source from './source';
|
|
|
190
190
|
export * as stafihub from './stafihub';
|
|
191
191
|
export * as stargaze from './stargaze';
|
|
192
192
|
export * as starname from './starname';
|
|
193
|
+
export * as stoc from './stoc';
|
|
193
194
|
export * as stratos from './stratos';
|
|
194
195
|
export * as stride from './stride';
|
|
195
196
|
export * as sunrise from './sunrise';
|
|
@@ -22740,6 +22740,46 @@ const info = {
|
|
|
22740
22740
|
images: [{
|
|
22741
22741
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/NINEDOLLERS.png'
|
|
22742
22742
|
}]
|
|
22743
|
+
},
|
|
22744
|
+
{
|
|
22745
|
+
description: 'The native token of EpixChain',
|
|
22746
|
+
denom_units: [{
|
|
22747
|
+
denom: 'ibc/776917313EC3252954ED622945D4979651ACD909A18E528283F46D7B166F20BF',
|
|
22748
|
+
exponent: 0,
|
|
22749
|
+
aliases: ['aepix']
|
|
22750
|
+
}, {
|
|
22751
|
+
denom: 'epix',
|
|
22752
|
+
exponent: 18
|
|
22753
|
+
}],
|
|
22754
|
+
type_asset: 'ics20',
|
|
22755
|
+
base: 'ibc/776917313EC3252954ED622945D4979651ACD909A18E528283F46D7B166F20BF',
|
|
22756
|
+
name: 'Epix',
|
|
22757
|
+
display: 'epix',
|
|
22758
|
+
symbol: 'EPIX',
|
|
22759
|
+
traces: [{
|
|
22760
|
+
type: 'ibc',
|
|
22761
|
+
counterparty: {
|
|
22762
|
+
chain_name: 'epix',
|
|
22763
|
+
base_denom: 'aepix',
|
|
22764
|
+
channel_id: 'channel-0'
|
|
22765
|
+
},
|
|
22766
|
+
chain: {
|
|
22767
|
+
channel_id: 'channel-108456',
|
|
22768
|
+
path: 'transfer/channel-108456/aepix'
|
|
22769
|
+
}
|
|
22770
|
+
}],
|
|
22771
|
+
logo_URIs: {
|
|
22772
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
|
|
22773
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
|
|
22774
|
+
},
|
|
22775
|
+
images: [{
|
|
22776
|
+
image_sync: {
|
|
22777
|
+
chain_name: 'epix',
|
|
22778
|
+
base_denom: 'aepix'
|
|
22779
|
+
},
|
|
22780
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
|
|
22781
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
|
|
22782
|
+
}]
|
|
22743
22783
|
}
|
|
22744
22784
|
]
|
|
22745
22785
|
};
|
|
@@ -1671,6 +1671,37 @@ const info = [
|
|
|
1671
1671
|
}
|
|
1672
1672
|
}]
|
|
1673
1673
|
},
|
|
1674
|
+
{
|
|
1675
|
+
$schema: '../ibc_data.schema.json',
|
|
1676
|
+
chain_1: {
|
|
1677
|
+
chain_name: 'epix',
|
|
1678
|
+
chain_id: 'epix_1916-1',
|
|
1679
|
+
client_id: '07-tendermint-0',
|
|
1680
|
+
connection_id: 'connection-1'
|
|
1681
|
+
},
|
|
1682
|
+
chain_2: {
|
|
1683
|
+
chain_name: 'osmosis',
|
|
1684
|
+
chain_id: 'osmosis-1',
|
|
1685
|
+
client_id: '07-tendermint-3641',
|
|
1686
|
+
connection_id: 'connection-10988'
|
|
1687
|
+
},
|
|
1688
|
+
channels: [{
|
|
1689
|
+
chain_1: {
|
|
1690
|
+
channel_id: 'channel-0',
|
|
1691
|
+
port_id: 'transfer'
|
|
1692
|
+
},
|
|
1693
|
+
chain_2: {
|
|
1694
|
+
channel_id: 'channel-108456',
|
|
1695
|
+
port_id: 'transfer'
|
|
1696
|
+
},
|
|
1697
|
+
ordering: 'unordered',
|
|
1698
|
+
version: 'ics20-1',
|
|
1699
|
+
tags: {
|
|
1700
|
+
status: 'ACTIVE',
|
|
1701
|
+
preferred: true
|
|
1702
|
+
}
|
|
1703
|
+
}]
|
|
1704
|
+
},
|
|
1674
1705
|
{
|
|
1675
1706
|
$schema: '../ibc_data.schema.json',
|
|
1676
1707
|
chain_1: {
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'stoc',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'STO Chain is an institutional-grade permissioned blockchain built specifically for regulated assets.',
|
|
6
|
+
extended_description: 'STO Chain is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'ustoc',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'stoc',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'ustoc',
|
|
15
|
+
name: 'STO Chain',
|
|
16
|
+
display: 'stoc',
|
|
17
|
+
symbol: 'STOC',
|
|
18
|
+
type_asset: 'sdk.coin',
|
|
19
|
+
coingecko_id: 'sto-chain',
|
|
20
|
+
logo_URIs: {
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
25
|
+
}]
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
export default info;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'stoc',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'mainnet',
|
|
6
|
+
website: 'https://www.stochain.io/',
|
|
7
|
+
pretty_name: 'STO Chain',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
chain_id: 'stoc',
|
|
10
|
+
bech32_prefix: 'stoc',
|
|
11
|
+
daemon_name: 'stocd',
|
|
12
|
+
node_home: '$HOME/.stoc',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 60,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'ustoc',
|
|
18
|
+
fixed_min_gas_price: 0.01,
|
|
19
|
+
low_gas_price: 0.01,
|
|
20
|
+
average_gas_price: 0.015,
|
|
21
|
+
high_gas_price: 0.02
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'ustoc'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
git_repo: 'https://github.com/stochainassociation/stoc-blockchain-mainnet',
|
|
31
|
+
recommended_version: 'latest-a2d23f37',
|
|
32
|
+
compatible_versions: ['latest-a2d23f37'],
|
|
33
|
+
consensus: {
|
|
34
|
+
type: 'cometbft',
|
|
35
|
+
version: 'v0.38.19'
|
|
36
|
+
},
|
|
37
|
+
genesis: {
|
|
38
|
+
genesis_url: 'https://rpc-stoc-mainnet.stochainscan.io/genesis'
|
|
39
|
+
},
|
|
40
|
+
sdk: {
|
|
41
|
+
type: 'cosmos',
|
|
42
|
+
version: 'v0.53.3'
|
|
43
|
+
},
|
|
44
|
+
ibc: {
|
|
45
|
+
type: 'go',
|
|
46
|
+
version: 'v8.7.0'
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
description: 'STO Chain is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
|
|
50
|
+
logo_URIs: {
|
|
51
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
52
|
+
},
|
|
53
|
+
apis: {
|
|
54
|
+
rpc: [{
|
|
55
|
+
address: 'https://rpc-stoc-mainnet.stochainscan.io/',
|
|
56
|
+
provider: 'STO Chain'
|
|
57
|
+
}],
|
|
58
|
+
rest: [{
|
|
59
|
+
address: 'https://api-stoc-mainnet.stochainscan.io/',
|
|
60
|
+
provider: 'STO Chain'
|
|
61
|
+
}],
|
|
62
|
+
grpc: [{
|
|
63
|
+
address: 'grpc-stoc-mainnet.stochainscan.io:443',
|
|
64
|
+
provider: 'STO Chain'
|
|
65
|
+
}]
|
|
66
|
+
},
|
|
67
|
+
explorers: [{
|
|
68
|
+
kind: 'stochainscan',
|
|
69
|
+
url: 'https://stochainscan.io/en',
|
|
70
|
+
tx_page: 'https://stochainscan.io/en/transaction/${txHash}',
|
|
71
|
+
account_page: 'https://stochainscan.io/en/address/${accountAddress}'
|
|
72
|
+
}],
|
|
73
|
+
images: [{
|
|
74
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
75
|
+
}]
|
|
76
|
+
};
|
|
77
|
+
export default info;
|
package/esm/testnet/assets.js
CHANGED
|
@@ -122,6 +122,7 @@ import * as _terra2testnet from './terra2testnet';
|
|
|
122
122
|
import * as _terratestnet from './terratestnet';
|
|
123
123
|
import * as _titannettestnet from './titannettestnet';
|
|
124
124
|
import * as _titantestnet from './titantestnet';
|
|
125
|
+
import * as _tstoctestnet from './tstoctestnet';
|
|
125
126
|
import * as _tucanatestnet from './tucanatestnet';
|
|
126
127
|
import * as _ulastestnet from './ulastestnet';
|
|
127
128
|
import * as _unificationtestnet from './unificationtestnet';
|
|
@@ -261,6 +262,7 @@ const assets = [
|
|
|
261
262
|
_terratestnet.assets,
|
|
262
263
|
_titannettestnet.assets,
|
|
263
264
|
_titantestnet.assets,
|
|
265
|
+
_tstoctestnet.assets,
|
|
264
266
|
_tucanatestnet.assets,
|
|
265
267
|
_ulastestnet.assets,
|
|
266
268
|
_unificationtestnet.assets,
|
package/esm/testnet/chains.js
CHANGED
|
@@ -122,6 +122,7 @@ import * as _terra2testnet from './terra2testnet';
|
|
|
122
122
|
import * as _terratestnet from './terratestnet';
|
|
123
123
|
import * as _titannettestnet from './titannettestnet';
|
|
124
124
|
import * as _titantestnet from './titantestnet';
|
|
125
|
+
import * as _tstoctestnet from './tstoctestnet';
|
|
125
126
|
import * as _tucanatestnet from './tucanatestnet';
|
|
126
127
|
import * as _ulastestnet from './ulastestnet';
|
|
127
128
|
import * as _unificationtestnet from './unificationtestnet';
|
|
@@ -261,6 +262,7 @@ const chains = [
|
|
|
261
262
|
_terratestnet.chain,
|
|
262
263
|
_titannettestnet.chain,
|
|
263
264
|
_titantestnet.chain,
|
|
265
|
+
_tstoctestnet.chain,
|
|
264
266
|
_tucanatestnet.chain,
|
|
265
267
|
_ulastestnet.chain,
|
|
266
268
|
_unificationtestnet.chain,
|
package/esm/testnet/named.js
CHANGED
|
@@ -122,6 +122,7 @@ export * as terra2testnet from './terra2testnet';
|
|
|
122
122
|
export * as terratestnet from './terratestnet';
|
|
123
123
|
export * as titannettestnet from './titannettestnet';
|
|
124
124
|
export * as titantestnet from './titantestnet';
|
|
125
|
+
export * as tstoctestnet from './tstoctestnet';
|
|
125
126
|
export * as tucanatestnet from './tucanatestnet';
|
|
126
127
|
export * as ulastestnet from './ulastestnet';
|
|
127
128
|
export * as unificationtestnet from './unificationtestnet';
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'tstoctestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'STO Chain Testnet is an institutional-grade permissioned blockchain built specifically for regulated assets.',
|
|
6
|
+
extended_description: 'STO Chain Testnet is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'utstoc',
|
|
9
|
+
exponent: 0
|
|
10
|
+
}, {
|
|
11
|
+
denom: 'tstoc',
|
|
12
|
+
exponent: 6
|
|
13
|
+
}],
|
|
14
|
+
base: 'utstoc',
|
|
15
|
+
name: 'STO Chain Testnet',
|
|
16
|
+
display: 'tstoc',
|
|
17
|
+
symbol: 'TSTOC',
|
|
18
|
+
type_asset: 'sdk.coin',
|
|
19
|
+
traces: [{
|
|
20
|
+
type: 'test-mintage',
|
|
21
|
+
counterparty: {
|
|
22
|
+
chain_name: 'stoc',
|
|
23
|
+
base_denom: 'ustoc'
|
|
24
|
+
},
|
|
25
|
+
provider: 'STO Chain'
|
|
26
|
+
}],
|
|
27
|
+
logo_URIs: {
|
|
28
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
29
|
+
},
|
|
30
|
+
images: [{
|
|
31
|
+
image_sync: {
|
|
32
|
+
chain_name: 'stoc',
|
|
33
|
+
base_denom: 'ustoc'
|
|
34
|
+
},
|
|
35
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
36
|
+
}]
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
export default info;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'tstoctestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'testnet',
|
|
6
|
+
website: 'https://www.stochain.io/',
|
|
7
|
+
pretty_name: 'STO Chain Testnet',
|
|
8
|
+
chain_type: 'cosmos',
|
|
9
|
+
chain_id: 'tstoc',
|
|
10
|
+
bech32_prefix: 'stoc',
|
|
11
|
+
daemon_name: 'stocd',
|
|
12
|
+
node_home: '$HOME/.stoc',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 60,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'utstoc',
|
|
18
|
+
fixed_min_gas_price: 0.01,
|
|
19
|
+
low_gas_price: 0.01,
|
|
20
|
+
average_gas_price: 0.015,
|
|
21
|
+
high_gas_price: 0.02
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'utstoc'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
git_repo: 'https://github.com/stochainassociation/stoc-blockchain-mainnet',
|
|
31
|
+
recommended_version: 'latest-2525d3e6',
|
|
32
|
+
compatible_versions: ['latest-2525d3e6'],
|
|
33
|
+
consensus: {
|
|
34
|
+
type: 'cometbft',
|
|
35
|
+
version: 'v0.38.17'
|
|
36
|
+
},
|
|
37
|
+
genesis: {
|
|
38
|
+
genesis_url: 'https://rpc-stoc-testnet.stochainscan.io/genesis'
|
|
39
|
+
},
|
|
40
|
+
sdk: {
|
|
41
|
+
type: 'cosmos',
|
|
42
|
+
version: 'v0.53.0'
|
|
43
|
+
},
|
|
44
|
+
ibc: {
|
|
45
|
+
type: 'go',
|
|
46
|
+
version: 'v8.7.0'
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
description: 'STO Chain Testnet is a Cosmos-based blockchain network designed to enable the digitization, compliance, and cross-chain circulation of real assets such as real estate, stocks, and commodities through blockchain technology.',
|
|
50
|
+
logo_URIs: {
|
|
51
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
52
|
+
},
|
|
53
|
+
apis: {
|
|
54
|
+
rpc: [{
|
|
55
|
+
address: 'https://rpc-stoc-testnet.stochainscan.io/',
|
|
56
|
+
provider: 'STO Chain'
|
|
57
|
+
}],
|
|
58
|
+
rest: [{
|
|
59
|
+
address: 'https://api-stoc-testnet.stochainscan.io/',
|
|
60
|
+
provider: 'STO Chain'
|
|
61
|
+
}],
|
|
62
|
+
grpc: [{
|
|
63
|
+
address: 'grpc-stoc-testnet.stochainscan.io:443',
|
|
64
|
+
provider: 'STO Chain'
|
|
65
|
+
}]
|
|
66
|
+
},
|
|
67
|
+
explorers: [{
|
|
68
|
+
kind: 'stochainscan',
|
|
69
|
+
url: 'https://stochainscan.io/en',
|
|
70
|
+
tx_page: 'https://stochainscan.io/en/transaction/${txHash}',
|
|
71
|
+
account_page: 'https://stochainscan.io/en/address/${accountAddress}'
|
|
72
|
+
}],
|
|
73
|
+
images: [{
|
|
74
|
+
image_sync: {
|
|
75
|
+
chain_name: 'stoc'
|
|
76
|
+
},
|
|
77
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
78
|
+
}]
|
|
79
|
+
};
|
|
80
|
+
export default info;
|
package/mainnet/assets.js
CHANGED
|
@@ -215,6 +215,7 @@ const _source = __importStar(require("./source"));
|
|
|
215
215
|
const _stafihub = __importStar(require("./stafihub"));
|
|
216
216
|
const _stargaze = __importStar(require("./stargaze"));
|
|
217
217
|
const _starname = __importStar(require("./starname"));
|
|
218
|
+
const _stoc = __importStar(require("./stoc"));
|
|
218
219
|
const _stratos = __importStar(require("./stratos"));
|
|
219
220
|
const _stride = __importStar(require("./stride"));
|
|
220
221
|
const _sunrise = __importStar(require("./sunrise"));
|
|
@@ -437,6 +438,7 @@ const assets = [
|
|
|
437
438
|
_stafihub.assets,
|
|
438
439
|
_stargaze.assets,
|
|
439
440
|
_starname.assets,
|
|
441
|
+
_stoc.assets,
|
|
440
442
|
_stratos.assets,
|
|
441
443
|
_stride.assets,
|
|
442
444
|
_sunrise.assets,
|
package/mainnet/chains.js
CHANGED
|
@@ -215,6 +215,7 @@ const _source = __importStar(require("./source"));
|
|
|
215
215
|
const _stafihub = __importStar(require("./stafihub"));
|
|
216
216
|
const _stargaze = __importStar(require("./stargaze"));
|
|
217
217
|
const _starname = __importStar(require("./starname"));
|
|
218
|
+
const _stoc = __importStar(require("./stoc"));
|
|
218
219
|
const _stratos = __importStar(require("./stratos"));
|
|
219
220
|
const _stride = __importStar(require("./stride"));
|
|
220
221
|
const _sunrise = __importStar(require("./sunrise"));
|
|
@@ -437,6 +438,7 @@ const chains = [
|
|
|
437
438
|
_stafihub.chain,
|
|
438
439
|
_stargaze.chain,
|
|
439
440
|
_starname.chain,
|
|
441
|
+
_stoc.chain,
|
|
440
442
|
_stratos.chain,
|
|
441
443
|
_stride.chain,
|
|
442
444
|
_sunrise.chain,
|