chain-registry 2.0.118 → 2.0.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/LICENSE +1 -1
- package/README.md +5 -5
- package/esm/mainnet/asset-lists.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-data.js +32 -0
- package/esm/mainnet/epix/index.js +2 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/injective/chain.js +14 -0
- package/esm/mainnet/lava/chain.js +12 -0
- package/esm/mainnet/optio/chain.js +4 -1
- package/esm/mainnet/osmosis/asset-list.js +40 -0
- package/esm/mainnet/osmosis/ibc-data.js +31 -0
- package/esm/mainnet/stoc/asset-list.js +28 -0
- package/esm/mainnet/stoc/chain.js +77 -0
- package/esm/mainnet/stoc/index.js +4 -0
- package/esm/testnet/asset-lists.js +2 -0
- package/esm/testnet/chains.js +2 -0
- package/esm/testnet/tstoctestnet/asset-list.js +39 -0
- package/esm/testnet/tstoctestnet/chain.js +80 -0
- package/esm/testnet/tstoctestnet/index.js +4 -0
- package/esm/testnet/zigchaintestnet/chain.js +9 -9
- package/mainnet/asset-lists.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-data.d.ts +3 -0
- package/mainnet/epix/ibc-data.js +34 -0
- package/mainnet/epix/index.d.ts +1 -0
- package/mainnet/epix/index.js +3 -1
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/injective/chain.js +14 -0
- package/mainnet/lava/chain.js +12 -0
- package/mainnet/optio/chain.js +4 -1
- package/mainnet/osmosis/asset-list.js +40 -0
- package/mainnet/osmosis/ibc-data.js +31 -0
- package/mainnet/stoc/asset-list.d.ts +3 -0
- package/mainnet/stoc/asset-list.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 +4 -4
- package/testnet/asset-lists.js +2 -0
- package/testnet/chains.js +2 -0
- package/testnet/tstoctestnet/asset-list.d.ts +3 -0
- package/testnet/tstoctestnet/asset-list.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/testnet/zigchaintestnet/chain.js +9 -9
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../../chain.schema.json',
|
|
5
|
+
chainName: 'tstoctestnet',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'testnet',
|
|
8
|
+
website: 'https://www.stochain.io/',
|
|
9
|
+
prettyName: 'STO Chain Testnet',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'tstoc',
|
|
12
|
+
bech32Prefix: 'stoc',
|
|
13
|
+
daemonName: 'stocd',
|
|
14
|
+
nodeHome: '$HOME/.stoc',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 60,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'utstoc',
|
|
20
|
+
fixedMinGasPrice: 0.01,
|
|
21
|
+
lowGasPrice: 0.01,
|
|
22
|
+
averageGasPrice: 0.015,
|
|
23
|
+
highGasPrice: 0.02
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'utstoc'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/stochainassociation/stoc-blockchain-mainnet',
|
|
33
|
+
recommendedVersion: 'latest-2525d3e6',
|
|
34
|
+
compatibleVersions: ['latest-2525d3e6'],
|
|
35
|
+
consensus: {
|
|
36
|
+
type: 'cometbft',
|
|
37
|
+
version: 'v0.38.17'
|
|
38
|
+
},
|
|
39
|
+
genesis: {
|
|
40
|
+
genesisUrl: 'https://rpc-stoc-testnet.stochainscan.io/genesis'
|
|
41
|
+
},
|
|
42
|
+
sdk: {
|
|
43
|
+
type: 'cosmos',
|
|
44
|
+
version: 'v0.53.0'
|
|
45
|
+
},
|
|
46
|
+
ibc: {
|
|
47
|
+
type: 'go',
|
|
48
|
+
version: 'v8.7.0'
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
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.',
|
|
52
|
+
logoURIs: {
|
|
53
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
54
|
+
},
|
|
55
|
+
apis: {
|
|
56
|
+
rpc: [{
|
|
57
|
+
address: 'https://rpc-stoc-testnet.stochainscan.io/',
|
|
58
|
+
provider: 'STO Chain'
|
|
59
|
+
}],
|
|
60
|
+
rest: [{
|
|
61
|
+
address: 'https://api-stoc-testnet.stochainscan.io/',
|
|
62
|
+
provider: 'STO Chain'
|
|
63
|
+
}],
|
|
64
|
+
grpc: [{
|
|
65
|
+
address: 'grpc-stoc-testnet.stochainscan.io:443',
|
|
66
|
+
provider: 'STO Chain'
|
|
67
|
+
}]
|
|
68
|
+
},
|
|
69
|
+
explorers: [{
|
|
70
|
+
kind: 'stochainscan',
|
|
71
|
+
url: 'https://stochainscan.io/en',
|
|
72
|
+
txPage: 'https://stochainscan.io/en/transaction/${txHash}',
|
|
73
|
+
accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
|
|
74
|
+
}],
|
|
75
|
+
images: [{
|
|
76
|
+
imageSync: {
|
|
77
|
+
chainName: 'stoc'
|
|
78
|
+
},
|
|
79
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
|
|
80
|
+
}]
|
|
81
|
+
};
|
|
82
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
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.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assetList = asset_list_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
|
@@ -58,19 +58,19 @@ const info = {
|
|
|
58
58
|
},
|
|
59
59
|
codebase: {
|
|
60
60
|
gitRepo: 'https://github.com/ZIGChain/zigchain',
|
|
61
|
-
recommendedVersion: '
|
|
62
|
-
compatibleVersions: ['
|
|
61
|
+
recommendedVersion: '2.0.0',
|
|
62
|
+
compatibleVersions: ['2.0.0'],
|
|
63
63
|
consensus: {
|
|
64
64
|
type: 'cometbft',
|
|
65
|
-
version: '0.38.
|
|
65
|
+
version: '0.38.19'
|
|
66
66
|
},
|
|
67
67
|
sdk: {
|
|
68
68
|
type: 'cosmos',
|
|
69
|
-
version: '0.
|
|
69
|
+
version: '0.53.4'
|
|
70
70
|
},
|
|
71
71
|
ibc: {
|
|
72
72
|
type: 'go',
|
|
73
|
-
version: '
|
|
73
|
+
version: '10.1.0'
|
|
74
74
|
},
|
|
75
75
|
cosmwasm: {
|
|
76
76
|
version: '0.55.1',
|
|
@@ -80,11 +80,11 @@ const info = {
|
|
|
80
80
|
genesisUrl: 'https://github.com/ZIGChain/networks/raw/main/zig-test-2/genesis.json'
|
|
81
81
|
},
|
|
82
82
|
binaries: {
|
|
83
|
-
"linux/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-
|
|
84
|
-
"darwin/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-
|
|
85
|
-
"darwin/arm64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-
|
|
83
|
+
"linux/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-linux-amd64.tar.gz?checksum=sha256:8f2a4a51fa2d73b7bc61c33d30332fb61e76ed0be4a381a37d27aa17115a9040',
|
|
84
|
+
"darwin/amd64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-darwin-amd64.tar.gz?checksum=sha256:6269882ccb1caf0af7600f2d24f5aeae7710290aba299d0d4ed607c6e63da803',
|
|
85
|
+
"darwin/arm64": 'https://github.com/ZIGChain/networks/raw/refs/heads/main/zig-test-2/binaries/zigchaind-v2.0.0-darwin-arm64.tar.gz?checksum=sha256:07f59514973d67e0d09c27b1be50da78f3b824518f1ee4735c09322ec1bd3789'
|
|
86
86
|
},
|
|
87
|
-
tag: '
|
|
87
|
+
tag: 'v2.0.0'
|
|
88
88
|
},
|
|
89
89
|
explorers: [{
|
|
90
90
|
kind: 'range',
|