Skip to content

Commit 0a4c06a

Browse files
committed
build 🛠 build-20251210-024159
1 parent bacd0f5 commit 0a4c06a

File tree

13 files changed

+266
-5
lines changed

13 files changed

+266
-5
lines changed

v2/packages/chain-registry/src/mainnet/asset-lists.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ import * as _source from './source';
192192
import * as _stafihub from './stafihub';
193193
import * as _stargaze from './stargaze';
194194
import * as _starname from './starname';
195+
import * as _stoc from './stoc';
195196
import * as _stratos from './stratos';
196197
import * as _stride from './stride';
197198
import * as _sunrise from './sunrise';
@@ -415,6 +416,7 @@ const assetList: AssetList[] = [
415416
_stafihub.assetList,
416417
_stargaze.assetList,
417418
_starname.assetList,
419+
_stoc.assetList,
418420
_stratos.assetList,
419421
_stride.assetList,
420422
_sunrise.assetList,

v2/packages/chain-registry/src/mainnet/chains.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ import * as _source from './source';
192192
import * as _stafihub from './stafihub';
193193
import * as _stargaze from './stargaze';
194194
import * as _starname from './starname';
195+
import * as _stoc from './stoc';
195196
import * as _stratos from './stratos';
196197
import * as _stride from './stride';
197198
import * as _sunrise from './sunrise';
@@ -415,6 +416,7 @@ const chains: Chain[] = [
415416
_stafihub.chain,
416417
_stargaze.chain,
417418
_starname.chain,
419+
_stoc.chain,
418420
_stratos.chain,
419421
_stride.chain,
420422
_sunrise.chain,

v2/packages/chain-registry/src/mainnet/dydx/chain.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ const info: Chain = {
3535
},
3636
codebase: {
3737
gitRepo: 'https://github.com/dydxprotocol/v4-chain/',
38-
recommendedVersion: 'protocol/v9.4.0',
39-
compatibleVersions: ['protocol/v9.4.0'],
38+
recommendedVersion: 'protocol/v9.5.0',
39+
compatibleVersions: ['protocol/v9.5.0'],
4040
binaries: {
41-
"linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-amd64.tar.gz',
42-
"linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.4.0/dydxprotocold-v9.4.0-linux-arm64.tar.gz'
41+
"linux/amd64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.5.0/dydxprotocold-v9.5.0-linux-amd64.tar.gz',
42+
"linux/arm64": 'https://github.com/dydxprotocol/v4-chain/releases/download/protocol%2Fv9.5.0/dydxprotocold-v9.5.0-linux-arm64.tar.gz'
4343
},
4444
consensus: {
4545
type: 'cometbft',

v2/packages/chain-registry/src/mainnet/lava/chain.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ const info: Chain = {
144144
{
145145
address: 'https://rpc-lava.winnode.xyz',
146146
provider: 'Winnode'
147+
},
148+
{
149+
address: 'https://rpc-lava.vinjan.xyz',
150+
provider: 'Vinjan.Inc'
147151
}
148152
],
149153
rest: [
@@ -214,6 +218,10 @@ const info: Chain = {
214218
{
215219
address: 'https://api-lava.winnode.xyz',
216220
provider: 'Winnode'
221+
},
222+
{
223+
address: 'https://api-lava.vinjan.xyz',
224+
provider: 'Vinjan.Inc'
217225
}
218226
],
219227
grpc: [
@@ -264,6 +272,10 @@ const info: Chain = {
264272
{
265273
address: 'grpc-lava.winnode.xyz:443',
266274
provider: 'Winnode'
275+
},
276+
{
277+
address: 'grpc-lava.vinjan.xyz:29990',
278+
provider: 'Vinjan.Inc'
267279
}
268280
]
269281
},

v2/packages/chain-registry/src/mainnet/optio/chain.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ const info: Chain = {
1616
fees: {
1717
feeTokens: [{
1818
denom: 'uOPT',
19-
fixedMinGasPrice: 1
19+
fixedMinGasPrice: 1,
20+
lowGasPrice: 1,
21+
averageGasPrice: 1.5,
22+
highGasPrice: 2
2023
}]
2124
},
2225
staking: {
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { AssetList } from '@chain-registry/types';
2+
const info: AssetList = {
3+
$schema: '../assetlist.schema.json',
4+
chainName: 'stoc',
5+
assets: [{
6+
description: 'STO Chain is an institutional-grade permissioned blockchain built specifically for regulated assets.',
7+
extendedDescription: '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.',
8+
denomUnits: [{
9+
denom: 'ustoc',
10+
exponent: 0
11+
}, {
12+
denom: 'stoc',
13+
exponent: 6
14+
}],
15+
base: 'ustoc',
16+
name: 'STO Chain',
17+
display: 'stoc',
18+
symbol: 'STOC',
19+
typeAsset: 'sdk.coin',
20+
coingeckoId: 'sto-chain',
21+
logoURIs: {
22+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
23+
},
24+
images: [{
25+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
26+
}]
27+
}]
28+
};
29+
export default info;
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
import { Chain } from '@chain-registry/types';
2+
const info: Chain = {
3+
$schema: '../chain.schema.json',
4+
chainName: 'stoc',
5+
status: 'live',
6+
networkType: 'mainnet',
7+
website: 'https://www.stochain.io/',
8+
prettyName: 'STO Chain',
9+
chainType: 'cosmos',
10+
chainId: 'stoc',
11+
bech32Prefix: 'stoc',
12+
daemonName: 'stocd',
13+
nodeHome: '$HOME/.stoc',
14+
keyAlgos: ['secp256k1'],
15+
slip44: 60,
16+
fees: {
17+
feeTokens: [{
18+
denom: 'ustoc',
19+
fixedMinGasPrice: 0.01,
20+
lowGasPrice: 0.01,
21+
averageGasPrice: 0.015,
22+
highGasPrice: 0.02
23+
}]
24+
},
25+
staking: {
26+
stakingTokens: [{
27+
denom: 'ustoc'
28+
}]
29+
},
30+
codebase: {
31+
gitRepo: 'https://github.com/stochainassociation/stoc-blockchain-mainnet',
32+
recommendedVersion: 'latest-a2d23f37',
33+
compatibleVersions: ['latest-a2d23f37'],
34+
consensus: {
35+
type: 'cometbft',
36+
version: 'v0.38.19'
37+
},
38+
genesis: {
39+
genesisUrl: 'https://rpc-stoc-mainnet.stochainscan.io/genesis'
40+
},
41+
sdk: {
42+
type: 'cosmos',
43+
version: 'v0.53.3'
44+
},
45+
ibc: {
46+
type: 'go',
47+
version: 'v8.7.0'
48+
}
49+
},
50+
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.',
51+
logoURIs: {
52+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
53+
},
54+
apis: {
55+
rpc: [{
56+
address: 'https://rpc-stoc-mainnet.stochainscan.io/',
57+
provider: 'STO Chain'
58+
}],
59+
rest: [{
60+
address: 'https://api-stoc-mainnet.stochainscan.io/',
61+
provider: 'STO Chain'
62+
}],
63+
grpc: [{
64+
address: 'grpc-stoc-mainnet.stochainscan.io:443',
65+
provider: 'STO Chain'
66+
}]
67+
},
68+
explorers: [{
69+
kind: 'stochainscan',
70+
url: 'https://stochainscan.io/en',
71+
txPage: 'https://stochainscan.io/en/transaction/${txHash}',
72+
accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
73+
}],
74+
images: [{
75+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stoc/images/stoc-logo.png'
76+
}]
77+
};
78+
export default info;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import _assetList from './asset-list';
2+
import _chain from './chain';
3+
4+
export const assetList = _assetList;
5+
export const chain = _chain;

v2/packages/chain-registry/src/testnet/asset-lists.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ import * as _terra2testnet from './terra2testnet';
124124
import * as _terratestnet from './terratestnet';
125125
import * as _titannettestnet from './titannettestnet';
126126
import * as _titantestnet from './titantestnet';
127+
import * as _tstoctestnet from './tstoctestnet';
127128
import * as _tucanatestnet from './tucanatestnet';
128129
import * as _ulastestnet from './ulastestnet';
129130
import * as _unificationtestnet from './unificationtestnet';
@@ -264,6 +265,7 @@ const assetList: AssetList[] = [
264265
_terratestnet.assetList,
265266
_titannettestnet.assetList,
266267
_titantestnet.assetList,
268+
_tstoctestnet.assetList,
267269
_tucanatestnet.assetList,
268270
_ulastestnet.assetList,
269271
_unificationtestnet.assetList,

v2/packages/chain-registry/src/testnet/chains.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ import * as _terra2testnet from './terra2testnet';
124124
import * as _terratestnet from './terratestnet';
125125
import * as _titannettestnet from './titannettestnet';
126126
import * as _titantestnet from './titantestnet';
127+
import * as _tstoctestnet from './tstoctestnet';
127128
import * as _tucanatestnet from './tucanatestnet';
128129
import * as _ulastestnet from './ulastestnet';
129130
import * as _unificationtestnet from './unificationtestnet';
@@ -264,6 +265,7 @@ const chains: Chain[] = [
264265
_terratestnet.chain,
265266
_titannettestnet.chain,
266267
_titantestnet.chain,
268+
_tstoctestnet.chain,
267269
_tucanatestnet.chain,
268270
_ulastestnet.chain,
269271
_unificationtestnet.chain,

0 commit comments

Comments
 (0)