Manage Your Oasis Networks
The network
command is used to manage the Mainnet, Testnet or Localnet
endpoints Oasis CLI will be connecting to.
The network
command is commonly used:
- on network upgrades, because the chain domain separation context is changed due to a new genesis document,
- when setting up a local
oasis-node
instance instead of relying on public gRPC endpoints, - when running a private Localnet with
oasis-net-runner
, - when examining network properties such as the native token, the network registry, the validator set and others.
Oasis CLI supports both remote endpoints via the secure gRPC protocol and local Unix socket endpoints.
When running the Oasis CLI for the first time, it will automatically configure the current Mainnet and Testnet endpoints.
Add a Network
Invoke network add <name> <chain-context> <rpc-endpoint>
to add a new
endpoint with a specific chain domain separation context and a gRPC address.
This command is useful, if you want to connect to your own instance of the Oasis
node instead of relying on the public gRPC endpoints.
For TCP/IP endpoints, run:
oasis network add testnet_alt 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 testnet2.grpc.oasis.io:443
? Description: Testnet alternative
? Denomination symbol: TEST
? Denomination decimal places: (9)
For Unix sockets, use:
oasis network add testnet_local 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 unix:/node_testnet/data/internal.sock
? Description: Testnet network, local node
? Denomination symbol: TEST
? Denomination decimal places: (9)
Add a Local Network
network add-local <name> <rpc-endpoint>
command can be used if you are
running oasis-node
on your local machine. In this case, Oasis CLI will
autodetect the native token symbol and decimal places, the chain domain
separation context and registered ParaTimes.
oasis network add-local testnet_local unix:/node_testnet/data/internal.sock
List Networks
Invoke network list
to list all configured networks.
oasis network list
NAME CHAIN CONTEXT RPC
mainnet (*) bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55 grpc.oasis.io:443
mainnet_local b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535 unix:/node/data/internal.sock
testnet 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 testnet.grpc.oasis.io:443
testnet_alt 50304f98ddb656620ea817cc1446c401752a05a249b36c9b90dba4616829977a testnet2.grpc.oasis.io:443
The default network is marked with the (*)
sign.
Remove a Network
Use network remove <name>
to remove the given network configuration including
all dependant ParaTimes.
oasis network remove testnet_alt
Set Network Chain Context
To change the chain context of a network, use
network set-chain-context <name> <chain-context>
.
oasis network list
NAME CHAIN CONTEXT RPC
mainnet bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55 grpc.oasis.io:443
mainnet_local (*) b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535 unix:/node/data/internal.sock
testnet 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 testnet.grpc.oasis.io:443
oasis network set-chain-context mainnet_local 01234513331133a715c7a150313877dF1d33e77a715c7a150313877dF1d33e77
oasis network list
NAME CHAIN CONTEXT RPC
mainnet bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55 grpc.oasis.io:443
mainnet_local (*) 01234513331133a715c7a150313877dF1d33e77a715c7a150313877dF1d33e77 unix:/node/data/internal.sock
testnet 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 testnet.grpc.oasis.io:443
Set Default Network
To change the default network for future Oasis CLI operations, use
network set-default <name>
.
oasis network list
NAME CHAIN CONTEXT RPC
mainnet (*) bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55 grpc.oasis.io:443
mainnet_local b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535 unix:/node/data/internal.sock
testnet 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 testnet.grpc.oasis.io:443
oasis network set-default mainnet_local
oasis network list
NAME CHAIN CONTEXT RPC
mainnet bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55 grpc.oasis.io:443
mainnet_local (*) b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535 unix:/node/data/internal.sock
testnet 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 testnet.grpc.oasis.io:443
Change a Network's RPC Endpoint
To change the RPC address of the already configured network, run
network set-rpc <name> <new_endpoint>
:
oasis network list
NAME CHAIN CONTEXT RPC
mainnet (*) bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55 grpc.oasis.io:443
mainnet_local b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535 unix:/node/data/internal.sock
testnet 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 testnet.grpc.oasis.io:443
testnet_alt 50304f98ddb656620ea817cc1446c401752a05a249b36c9b90dba4616829977a testnet2.grpc.oasis.io:443
oasis network set-rpc testnet_alt testnet3.grpc.oasis.io:443
oasis network list
NAME CHAIN CONTEXT RPC
mainnet (*) bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55 grpc.oasis.io:443
mainnet_local b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535 unix:/node/data/internal.sock
testnet 0b91b8e4e44b2003a7c5e23ddadb5e14ef5345c0ebcb3ddcae07fa2f244cab76 testnet.grpc.oasis.io:443
testnet_alt 50304f98ddb656620ea817cc1446c401752a05a249b36c9b90dba4616829977a testnet3.grpc.oasis.io:443
Advanced
Governance Operations
network governance
command is aimed towards validators for proposing
or voting on-chain for network upgrades or changes to other crucial network
parameters.
list
Use network list
to view all past and still active governance proposals.
Each proposal has its unique subsequent ID, a submitter, an epoch when the
proposal was created and when it closes and a state.
oasis network governance list --network testnet
ID KIND SUBMITTER CREATED AT CLOSES AT STATE
1 upgrade oasis1qrs2dl6nz6fcxxr3tq37laxlz6hxk6kuscnr6rxj 5633 5645 passed
2 upgrade oasis1qrs2dl6nz6fcxxr3tq37laxlz6hxk6kuscnr6rxj 7525 7537 passed
3 upgrade oasis1qrs2dl6nz6fcxxr3tq37laxlz6hxk6kuscnr6rxj 8817 8829 passed
4 upgrade oasis1qrs2dl6nz6fcxxr3tq37laxlz6hxk6kuscnr6rxj 14183 14195 passed
5 upgrade oasis1qrs2dl6nz6fcxxr3tq37laxlz6hxk6kuscnr6rxj 14869 14881 passed
6 cancel upgrade 5 oasis1qrs2dl6nz6fcxxr3tq37laxlz6hxk6kuscnr6rxj 14895 14907 passed
7 upgrade oasis1qrs2dl6nz6fcxxr3tq37laxlz6hxk6kuscnr6rxj 14982 14994 passed
8 upgrade oasis1qpwaggvmhwq5uk40clase3knt655nn2tdy39nz2f 29493 29505 passed
9 change parameters (governance) oasis1qrx85mv85k708ylww597rd42enlzhdmeu56wqj72 30693 30705 passed
10 change parameters (staking) oasis1qqxxut9x74dutu587f9nj8787qz4dm0ueu05l88c 33059 33071 passed
Network selector is available for the
governance list
command.
show
network governance show <proposal-id>
shows detailed information on
past or opened governance proposals on the consensus layer.
oasis network governance show 9 --network testnet
=== PROPOSAL STATUS ===
Network: testnet
Proposal ID: 9
Status: passed
Submitted By: oasis1qrx85mv85k708ylww597rd42enlzhdmeu56wqj72
Created At: epoch 30693
Results:
- yes: 43494459676132712
- no: 0
- abstain: 0
=== PROPOSAL CONTENT ===
Change Parameters:
Module: governance
Changes:
- Parameter: upgrade_cancel_min_epoch_diff
Value: 15
=== VOTED STAKE ===
Total voting stake: 43777341677851724
Voted stake: 43494459676132712 (99.35%)
Voted yes stake: 43494459676132712 (100.00%)
Threshold: 68%
You can also view individual validator votes by passing the --show-votes
parameter:
oasis network governance show 9 --show-votes --network testnet
=== PROPOSAL STATUS ===
Network: testnet
Proposal ID: 9
Status: passed
Submitted By: oasis1qrx85mv85k708ylww597rd42enlzhdmeu56wqj72
Created At: epoch 30693
Results:
- yes: 43494459676132712
- no: 0
- abstain: 0
=== PROPOSAL CONTENT ===
Change Parameters:
Module: governance
Changes:
- Parameter: upgrade_cancel_min_epoch_diff
Value: 15
=== VOTED STAKE ===
Total voting stake: 43777341677851724
Voted stake: 43494459676132712 (99.35%)
Voted yes stake: 43494459676132712 (100.00%)
Threshold: 68%
=== VALIDATORS VOTED ===
1. oasis1qqv25adrld8jjquzxzg769689lgf9jxvwgjs8tha,<none>,11072533240458237 (25.29%): yes
2. oasis1qz2tg4hsatlxfaf8yut9gxgv8990ujaz4sldgmzx,<none>,10922431911536365 (24.95%): yes
3. oasis1qz424yg28jqmgfq3xvly6ky64jqnmlylfc27d7cp,<none>,10786148310722167 (24.64%): yes
4. oasis1qq2vzcvxn0js5unsch5me2xz4kr43vcasv0d5eq4,<none>,10713346213415943 (24.47%): yes
=== VALIDATORS NOT VOTED ===
1. oasis1qrwncs459lauc77zw23efdn9dmfcp23cxv095l5z,GateOmega,43681995855414 (0.10%)
2. oasis1qq60zmsfca0gvmm3v8906pn5zqtt4ee2ssexramg,Validatrium,37519643115923 (0.09%)
3. oasis1qrkwv688m3naejcy8rhycls8r78ga0th4qaun90k,Tuzem,13051121909522 (0.03%)
4. oasis1qrg430wr84xqh2pm6hv609v7jx9j3gt7xykmjl65,cherkes,12829194880949 (0.03%)
5. oasis1qzjm0zwfg4egs9kk4d9rkujudzk8pjp5rvxyr3ag,Munay Network,12777089617060 (0.03%)
6. oasis1qqsxhxedvzt0et3sahcqcjw02p4kcz92dqtjuzwh,BroMyb,12062754356510 (0.03%)
7. oasis1qpq97fm6lf87jzms9agd6z902nh7axtxvus6m352,LDV,11442842011460 (0.03%)
8. oasis1qpz97gfrvj5xzx8jx7x9zweeq0rcf2q6jg4a09qz,Stardust,11304018972474 (0.03%)
9. oasis1qrkf98prkpf05kd6he7wcvpzr9sd6gs2jvrn5keh,glebanyy,10964792231490 (0.03%)
10. oasis1qzxtc82d7gmcr5yazlu786gkwcvukz3zvu9ph5la,ushakov,10954729838903 (0.03%)
11. oasis1qpgg65qg7r7yy2a0qp2yufvcsyl2lm46lg03g6cp,Breathe and Stake,10942254111385 (0.02%)
12. oasis1qrruwg0y4au55efu0pcgl0nanaq6p3sdwv0jhzv5,Dobrynya Hukutu4,10753083746804 (0.02%)
13. oasis1qq6k7q4uukpucz322m8dhy0pt0gvfdgrvcvrx2rm,Spectrum Staking,10724618200610 (0.02%)
14. oasis1qr2jxg57ch6p3787t2a8973v8zn8g82nxuex0773,Doorgod,9959349109598 (0.02%)
15. oasis1qrp0cgv0u5mxm7l3ruzqyk57g6ntz6f8muymfe4p,ELYSIUM,9536638984147 (0.02%)
16. oasis1qrfeessnrnyaggvyvne52aple2f8vaw93vt608sz,Julia-Ju,7765469996624 (0.02%)
17. oasis1qz9x0zpja6n25hc5242k2e60l6a7ke2zsq9cqrqz,SerGo,5553178612897 (0.01%)
18. oasis1qq4fj0fdydz83zvcgt4kn38ea7ncm3dj8qkcfnm4,Wanderer Staking,5471851136155 (0.01%)
19. oasis1qzcemlzf7zv2jxsufex4h9mjaqwy4upnzy7qrl7x,Making.Cash Validator,5461635837440 (0.01%)
20. oasis1qrq7hgvv26003hy89klcmy3mnedrmyd7lvf0k6qn,Perfect Stake,4040750411525 (0.01%)
21. oasis1qqxxut9x74dutu587f9nj8787qz4dm0ueu05l88c,Princess Stake,3406051188880 (0.01%)
22. oasis1qq45am6gzaur2rxhk26av9qf7ryhgca6ecg28clu,Jr,2201101606599 (0.01%)
23. oasis1qz7rce6dmnh9qtr9nltsyy69d69j3a95rqm3jmxw,Everstake,2171181028607 (0.00%)
24. oasis1qz8w4erh0kkwpmdtwd3dt9ueaz9hmzfpecjhd7t4,Chloris Network,2011713919098 (0.00%)
25. oasis1qzlzczsdme4scprjjh4h4vtljnmx3ag4vgpdnqln,Alexander (aka Bambarello) Validator,1757051650379 (0.00%)
26. oasis1qzwe6xywazp29tp20974wgxhdcpdf6yxfcn2jxvv,Simply Staking,1388519563110 (0.00%)
27. oasis1qq2vdcvkyzdghcrrdhvujk3tvva84wd9yvt68zyx,Lusia,1300150706950 (0.00%)
28. oasis1qphcvmsh6mw98vtg0cg4dvdsen5tm0g3e58eqpnp,Appload,1221281508316 (0.00%)
29. oasis1qpc66dgff4wrkj8kac4njrl2uvww3c9m5ycjwar2,Forbole-Testnet,1112551173826 (0.00%)
30. oasis1qzz9wdgt4hxfmcelfgyg8ne827a47pvh4g4jamtu,max999,1096825296654 (0.00%)
31. oasis1qz5zfcaqqud75naqln92ez7czjxf0dpyj5rmtfls,alexandr0,1096729833573 (0.00%)
32. oasis1qz4532s3lhkpju7fd3mxqfvaw98pjq5htss4g4w0,RedHead,1096422596648 (0.00%)
33. oasis1qphhz4u08xgt4wk85x4t8xv6g3nxy8fq5ue4htxr,Kumaji,1042663336329 (0.00%)
34. oasis1qrrggkf3jxa3mqjj0uzfpn8wg5hpsn5hdvusqspc,Bit Cat😻 ,959384168121 (0.00%)
35. oasis1qz6tqn2ktffz2jjlj2fwqlhw7f2rwwud5ghh54yv,WeHaveServers.com,933754283937 (0.00%)
36. oasis1qpswaz4djukz0zanquyh2vswk59up22emysq5am9,StakeService,879748845930 (0.00%)
37. oasis1qq87z733lxx87zyuutee5xpxcksqk3mj9uq3xvaq,w3coins,819152557031 (0.00%)
38. oasis1qrcf5mwjyu7hahwfjgwmywhy9cjyaqdd5vkj7ah3,ou812,418376899484 (0.00%)
39. oasis1qpxaq8thpx3y8wumn6hmfx70rvk0j9cxrgz9h27k,Colossus,410141268162 (0.00%)
40. oasis1qr4vsan850vmztuy9r2pex4fj4wxnmhvlgclg500,<none>,327983310482 (0.00%)
41. oasis1qqgvqelw8kmcd8k4cqypcsyajkl3gq6ppc4t34n2,AnkaStake,220810245010 (0.00%)
42. oasis1qrpp8h9wl3wtqn04nvyx4dcrlz3jzqazugec7pxz,CryptoSJ.net,213393794996 (0.00%)
Governance proposals are not indexed and an endpoint may take some time to respond. If you encounter timeouts, consider setting up your own gRPC endpoint!
Network selector is available for the
governance show
command.
cast-vote
network governance cast-vote <proposal-id> { yes | no | abstain }
is used
to submit your vote on the governance proposal. The vote can either be yes
,
no
or abstein
.
oasis network governance cast-vote 5 yes
Unlock your account.
? Passphrase:
You are about to sign the following transaction:
Method: governance.CastVote
Body:
Proposal ID: 5
Vote: yes
Nonce: 7
Fee:
Amount: 0.0 TEST
Gas limit: 1240
(gas price: 0.0 TEST per gas unit)
Network: testnet
ParaTime: none (consensus layer)
Account: test
Network and account selectors are available for the
governance cast-vote
command.
create-proposal
To submit a new governance proposal use network governance create-proposal
.
The following proposal types are currently supported:
cancel-upgrade <proposal-id>
: Cancel network proposed upgrade. Provide the ID of the network upgrade proposal you wish to cancel.parameter-change <module-name> <changes.json>
: Network parameter change proposal. Provide the consensus module name and the parameter changes JSON. Valid module names are:staking
,governance
,keymanager
,scheduler
,registry
, androothash
upgrade <descriptor.json>
: Network upgrade proposal. Provide a JSON file containing the upgrade descriptor.
Network and account selectors are available for all
governance create-proposal
subcommands.
Show Network Properties
network show
shows the network property stored in the registry, scheduler,
genesis document or on chain.
By passing --height <block_number>
with a block number, you can obtain a
historic value of the property.
Network selector is available for the
network show
command.
The command expects one of the following parameters:
entities
Shows all registered entities in the network registry. See the
account entity
command, if you want to register or update your own entity.
This call is not enabled on public Oasis gRPC endpoints. You will have to run your own client node to enable this functionality.
nodes
Shows all registered nodes in the network registry. See the account entity
,
to add a node to your entity.
This call is not enabled on public Oasis gRPC endpoints. You will have to run your own client node to enable this functionality.
paratimes
Shows all registered ParaTimes in the network registry.
validators
Shows all IDs of the nodes in the validator set.
native-token
Shows information of the network's native tokens such as its symbol, the number of decimal points, total supply, debonding period and staking thresholds.
oasis network show native-token
Network: mainnet
Token's ticker symbol: ROSE
Token's base-10 exponent: 9
Total supply: 10000000000.0 ROSE
Common pool: 853509298.875305407 ROSE
Last block fees: 0.0 ROSE
Governance deposits: 0.0 ROSE
Debonding interval: 336 epoch(s)
=== STAKING THRESHOLDS ===
entity: 100.0 ROSE
node-validator: 100.0 ROSE
node-compute: 100.0 ROSE
node-keymanager: 100.0 ROSE
runtime-compute: 50000.0 ROSE
runtime-keymanager: 50000.0 ROSE
We can see that the token's name is ROSE and that 1 token corresponds to 10^9 (i.e. one billion) base units.
Next, we can observe that the total supply is 10 billion tokens and that about 1.3 billion tokens are in the common pool.
Staking thresholds are important for the network validators. They show the minimum staked amount required to become an active validator for the entity and all node kinds (validator, compute, key manager nodes). At time of writing, this was 100 tokens. For example, if you wanted to register an entity running a validator and a compute node, you would need to stake (i.e. escrow) at least 300 tokens.
Each runtime may also require a minimum ParaTime-specific escrow for
running a compute node. Use the network show id
command and pass a corresponding Paratime ID to see it.
The runtime-
fields show you the required staked amount for
registering a new ParaTime of any kind (compute,
key manager) was 50,000 tokens at time of writing.
gas-costs
Shows minimum gas costs for each consensus transaction.
oasis network show gas-costs
Gas costs for network mainnet:
- add_escrow: 1000
- allow: 1000
- amend_commission_schedule: 1000
- burn: 1000
- reclaim_escrow: 1000
- transfer: 1000
- withdraw: 1000
Above, we can see that the maximum amount of gas our transaction can spend must be set to at least 1000 gas units, otherwise it will be rejected by the network.
committees
Shows runtime committees.
oasis network show committees
=== COMMITTEE ===
Paratime: sapphire(000000000000000000000000000000000000000000000000f80306c9858e7279)
Height: 19241881
ENTITY ID NODE ID ROLE
T5k7PtOR01oZrdnZveDpO9AFpMUhEREZk7WSSfm8Gtg= RT7JKF5T1hlKXTYZsp4SL07f4IHG6O0SQppf8wnfr+Y= worker
oOVxTw2hEYgYvSrTjjKODCt/Soy3OLcQV9YBy/PF/xY= Io86AKuu7YDnya+fVnldHBybFggwCoXeQPu3Wj8kHW4= worker
sDi9ZxHYB+rHTpVh4abNFXDMRSecfGe4QzbyGK8ZgQg= FEMUVK91HEULeQpMZj07jN2giNKjd6HPK3VdjsIQcjY= worker
RMa2ER0wvraR+4u5QOGOrRTwmMVOYNcOot7sFppPRP0= DW4/7kVEumpZV1CmntaQBncSV36t6QoE0QwQd5pLIZU= worker
21+iPu/omYBN7X5cUY4QnD4b9VVuAiW/u8uABqt2VjM= x8DFPc8E9BZxLJKbh51xj41es3R53AkJERfMEyRCrbk= worker
7nCBfl1vRS4kn7G2yJZeZdwE8OFA4avUphWdCRrFhJM= drsZxbpqG5h+4tq/JKWqmoVGXmQUirVCjD8GLBuNj9M= worker
iGs5cCGos/I5KQv82MwgGMNENaxy3bhuWdFXtINcu0U= HH/jnBO0AqHocNg4aS7MiMjiKmta1VP0ceRc0iILMAw= worker
ko5wr5SMqhKb+P1kimM1EF/T4SqvW/WjSOwPHigQl+k= aJFHeID4Q7qUfMa42dRwaa9PQrZ/cVDiE3WNt4bQjo0= worker
UDV5FoaIkssdSFWC4asZtxvsyagoyrIS5rPX8p/np2U= 86y1tHzH9GlxvS0Bneh5l2AUDXYO6VMrzx75JvJViNE= worker
BdSzNycR8Y3MdHooxU0vtOEPr3ZG9KD5p8wxHtvueUU= +JOOp6OMmzldm9Dy7Cnbl/FE66bNkU0TJquOYnQIv7s= worker
nw+8VTk+LbrZ4mSmeKYuQGu/swFgAOpPB5ls4STzh1g= XCiPWblWT3n1aN2NI0vslmlfV9GOkxE2Ih2SI66ZR38= backup-worker
J2nwlXuYEPNZ0mMH2Phg5RofbZzj65xDvQMNdy9Ji0E= ITrwEekdZNqXrEzvw3GT6Q3AtHDd51f19nD2nVU/f0c= backup-worker
sDi9ZxHYB+rHTpVh4abNFXDMRSecfGe4QzbyGK8ZgQg= FEMUVK91HEULeQpMZj07jN2giNKjd6HPK3VdjsIQcjY= backup-worker
6XvrCu3wqMKYc5a0d5UZzG7ZGeb3j//MzcqUMUHkMCk= C+AWG4iXz590kCdbO/DAb4sBZr+umjyp683ucmawdM4= backup-worker
T5k7PtOR01oZrdnZveDpO9AFpMUhEREZk7WSSfm8Gtg= RT7JKF5T1hlKXTYZsp4SL07f4IHG6O0SQppf8wnfr+Y= backup-worker
RFpWeibJDHnfgoq9mO1BJcxyDbIstDi22ZBhvgXvE1Y= YTHRajyCrIwOiys1ktOarSUyV1NVolvAw6DQqhaXg6w= backup-worker
LQaKibf9tD8KXO210NhiDUHzXTsRIeK5l/3ITmfg118= 7/WyW54TO+31VkXZcj4xIAgv5kWxR6azSEjwrSAte3Y= backup-worker
hNBVs2ay1IWvufQwX0TbYA6X4ocKaMpzpyaMTHggi6Q= bKvnByvx8qwF41EqOG6wdmatGzz/qT2nbHC8i8VM65k= backup-worker
UDV5FoaIkssdSFWC4asZtxvsyagoyrIS5rPX8p/np2U= 86y1tHzH9GlxvS0Bneh5l2AUDXYO6VMrzx75JvJViNE= backup-worker
9yOiPY3NnNMpEzB+6XS/OqahzFwwX8mFhmT2fvbxlVI= mIKW8IEDWZZxCRtDTvWQLpslvfUBwWxVAxLakwq25C8= backup-worker
nZoBfua/odt7fZThkfzGQo2oBp8UnEj+VpG52SB8onM= 70ibfZrA3+d9O4qNnecsXceTCvsLTywOjNQfN83MYQQ= backup-worker
1JttHp0rBBBHDOpPl8fAiLTcN9tUzxJGjk7llFcvhZQ= rK6mrmCRi2dYPNraNwqg2jgEVi4sd6hi53JmT2HVGxQ= backup-worker
4gbOOU09bcyvM53Up1lTnP+sLb0feniJu0OcUUPCBSs= +zVbgQqOdY90Z2NQKXFByNT0OwLxj/Ho4j4qT5u2yKM= backup-worker
fhXoWYc8Ml153jBBvFrQ4CRY7vnbCk9j269rVLeg7cE= NM/XberrrMrvavGDCYc9CX8HPT1TPz1YHWuBaDArDHc= backup-worker
WXs7ElBlm30la2fG4oZDpubeFu5sKkjDVeflWo+YuIA= ST2B7aeKSspiFNy325rIh8alQIRVCDyZ5t8f2NKN3PU= backup-worker
=== COMMITTEE ===
Paratime: emerald(000000000000000000000000000000000000000000000000e2eaa99fc008f87f)
Height: 19241881
ENTITY ID NODE ID ROLE
L4OY/0mNEduAS9z6jh2xLp72b8gZURgcrd76AOiRIXk= fGqOEIbBxaM2YmMcKq4PbpUOd9+s3TcS4AxaTChGuz0= worker
g9UqzvW6JvfKrflRKbCPBpm41rH/O+4apCK+KkD2tG4= 4wqhqp5wDAfvQxNZUUSDmM2fVYrkxKq/tqjnnCe72Uw= worker
PrCDIA3uyoLqNOZJ1PrRWdyviFn6K0PWFz91qQ9QyTw= o8p0FlVg1Wlv+ZLKojWS7c0P4xZHklFt9frLW4B4QlE= worker
bTok0el8GbmUzTAAgcQ78uww/TsgeWwXpM3N2S49qBQ= cb/avZHoAQkZiHGzkjJxEkVsqiiiJzL/5fHp1TsDTdY= worker
BTAJNDyd6/UQ+pfhTDdPGsothzJ+C5/C/g52a3DIlMw= RV/KmNN7oWH7qDjx/7kn+o9nsyd52CPUauF9MGvxl70= worker
4gbOOU09bcyvM53Up1lTnP+sLb0feniJu0OcUUPCBSs= +zVbgQqOdY90Z2NQKXFByNT0OwLxj/Ho4j4qT5u2yKM= worker
RMa2ER0wvraR+4u5QOGOrRTwmMVOYNcOot7sFppPRP0= 4mcgJKfEa6RqWh9NqSJ+/yfs6X8dU0tG1dI1L0lFNzM= worker
6XvrCu3wqMKYc5a0d5UZzG7ZGeb3j//MzcqUMUHkMCk= VtP8ubAEY1p8iOshGDUqxrZGstnswozt7h1wlMAvba8= worker
1YeMK0NAZtE1ZK8u6KWddkKGZoD5VLfG9EAZI3b8HzE= bhVU8RdrUXE7XgI7hIIdMFOhsomBFmPEnNU9zFPTHzY= worker
cVGc1fI6xu0WeI2GUrLIwDpH/JtBE3PwD+P66YkSKg8= giemTZIHjRmBA3FzYMK01eokfs8L/VmusK3M5+lUdGc= worker
4gbOOU09bcyvM53Up1lTnP+sLb0feniJu0OcUUPCBSs= +zVbgQqOdY90Z2NQKXFByNT0OwLxj/Ho4j4qT5u2yKM= backup-worker
p1VsfSsedbKn/5GzkPsr15XD+/AOIfbPda1/2yT84N4= S2eoEMq6Qzms5Yd/fIOhSEacHp7Pym0BfgBEmsijEDw= backup-worker
bTok0el8GbmUzTAAgcQ78uww/TsgeWwXpM3N2S49qBQ= cb/avZHoAQkZiHGzkjJxEkVsqiiiJzL/5fHp1TsDTdY= backup-worker
sDi9ZxHYB+rHTpVh4abNFXDMRSecfGe4QzbyGK8ZgQg= Dpj1ibIMtTHMh/i5qh0eZcGGmOVODELSHvg/ZFBIPbY= backup-worker
UFXCpcvXBOHbxtObG4psGcn+LgZOedvDDUAqVengpPk= rczLI7bYocBYyQ+bsnHPNPKc+SJpunQiuxip/tNlolw= backup-worker
RMa2ER0wvraR+4u5QOGOrRTwmMVOYNcOot7sFppPRP0= 4mcgJKfEa6RqWh9NqSJ+/yfs6X8dU0tG1dI1L0lFNzM= backup-worker
kupW3Pt0XMeERSkdDWyZMU4oZrk0wGysVXVyqX3rylc= BZvhmvc1YZpXteI2nPhBDyC2jxi04MHEbKXB1DpTM1w= backup-worker
6XvrCu3wqMKYc5a0d5UZzG7ZGeb3j//MzcqUMUHkMCk= VtP8ubAEY1p8iOshGDUqxrZGstnswozt7h1wlMAvba8= backup-worker
TWLcdgEfahwyFPTC7nN3rZacPO2aXlLfZIDt7uXbzEI= 5uD3zbTZGhivYt1ZQw/Yr/Bcg2t6zEdyR9Ogg5ipkho= backup-worker
oOVxTw2hEYgYvSrTjjKODCt/Soy3OLcQV9YBy/PF/xY= jVPUq8aUDKe9jawIs7wPB4NBml27ft5kICIY7SBh/yQ= backup-worker
WXs7ElBlm30la2fG4oZDpubeFu5sKkjDVeflWo+YuIA= RzMsfs49HQDT5fIVKQ+flR/sCJjrkKDPsc5ZS6O7VdM= backup-worker
1YeMK0NAZtE1ZK8u6KWddkKGZoD5VLfG9EAZI3b8HzE= bhVU8RdrUXE7XgI7hIIdMFOhsomBFmPEnNU9zFPTHzY= backup-worker
cVGc1fI6xu0WeI2GUrLIwDpH/JtBE3PwD+P66YkSKg8= giemTZIHjRmBA3FzYMK01eokfs8L/VmusK3M5+lUdGc= backup-worker
nZoBfua/odt7fZThkfzGQo2oBp8UnEj+VpG52SB8onM= urRVg0K+6UhuxOnRE1/wIiPuuTu188orpsLDTz5NFTw= backup-worker
UkwjS1YvEfHx9b6MMT5Q1WvCY3aWn2lxRDsB/Pw+zGk= CdkWAAnsdYg0g6yl90Eiqdwqer6NK9yIxWWvPR3fwD8= backup-worker
PrCDIA3uyoLqNOZJ1PrRWdyviFn6K0PWFz91qQ9QyTw= o8p0FlVg1Wlv+ZLKojWS7c0P4xZHklFt9frLW4B4QlE= backup-worker
nw+8VTk+LbrZ4mSmeKYuQGu/swFgAOpPB5ls4STzh1g= XCiPWblWT3n1aN2NI0vslmlfV9GOkxE2Ih2SI66ZR38= backup-worker
BTAJNDyd6/UQ+pfhTDdPGsothzJ+C5/C/g52a3DIlMw= RV/KmNN7oWH7qDjx/7kn+o9nsyd52CPUauF9MGvxl70= backup-worker
1JttHp0rBBBHDOpPl8fAiLTcN9tUzxJGjk7llFcvhZQ= dN/aIe69HWFUHtOy/oqWdp1jw4fzOIljXLbMI79ilTo= backup-worker
uxSkvFu6x4MIYV+M1VrDu3m/qbADs/1Ae3mWAcEmnaQ= 0qOmNfZvPDnjyzPU/97x1FWsl0d3UsImNiSNXd7lE/0= backup-worker
21+iPu/omYBN7X5cUY4QnD4b9VVuAiW/u8uABqt2VjM= x8DFPc8E9BZxLJKbh51xj41es3R53AkJERfMEyRCrbk= backup-worker
BdSzNycR8Y3MdHooxU0vtOEPr3ZG9KD5p8wxHtvueUU= CZgE+WU9T8YpTnPRosJYFqos9S8W53jGQKeRrRxMeQc= backup-worker
FDqRmM1FyhaGas+lquWmGAKgMsU2rj7UESAlnOHtxco= qnRAoObwndP/P9otTzQ/9Z2+vmSQ1Pch7G4tGBSTxCo= backup-worker
ko5wr5SMqhKb+P1kimM1EF/T4SqvW/WjSOwPHigQl+k= aJFHeID4Q7qUfMa42dRwaa9PQrZ/cVDiE3WNt4bQjo0= backup-worker
AX8zJsi0DnrrdwCi/8JJptXSy62kZgQcAYKlCYD4oN8= BqCqG8wuMVdnONN5bysITf0mYQD5FD+TEF5wrJttsSQ= backup-worker
aiTgGyYB2l4uAMG93Ajq5S4EXPIRkYDg1ICLjWD45Ck= pGkBYly79y2gJUEOau8XN04ErcfwrObO+W5+CYXJW5k= backup-worker
kfr2A6K6TlvhQm4nz88Hczzkd2Aq5PlkxSpnmUUBAFs= KUjJArjDn1TtZOi6AgYki1fUTC2PrU0LJFJ4ppHt3NQ= backup-worker
cgXH87+sYoe2mXsdDKWCyRvWZ8JqnVnxJkCq09LlBoI= 6ioksdd5uKtlNnPmCpu1NYohfamlb/QHiD8EhMuTbfw= backup-worker
N+3/m12DoAqzFS0yF3R/kXSkSj7pZnWhq8nRCo/MKwk= zibJtnvTpDotvOK3a3nNYmlYwg/K4TdZB781TQCEAT4= backup-worker
/ylWdaid2DDlI4BMVkX6gAR6eaBYlLolHbjCmHitrzc= 9sk2Nq2DFGv932dnavOIr02RnfQUOngggsn2HUEEfRg= backup-worker
=== COMMITTEE ===
Paratime: cipher(000000000000000000000000000000000000000000000000e199119c992377cb)
Height: 19241881
ENTITY ID NODE ID ROLE
bTok0el8GbmUzTAAgcQ78uww/TsgeWwXpM3N2S49qBQ= LI48Ol5Is045ijOAjiCiKFHKOyzwuGL6mMTr3F5cMdM= worker
1YeMK0NAZtE1ZK8u6KWddkKGZoD5VLfG9EAZI3b8HzE= /dBEDGDBCu6TF5w9crktZ9aloTBpOGGSa6A8uVNunAo= worker
sDi9ZxHYB+rHTpVh4abNFXDMRSecfGe4QzbyGK8ZgQg= FEMUVK91HEULeQpMZj07jN2giNKjd6HPK3VdjsIQcjY= worker
ko5wr5SMqhKb+P1kimM1EF/T4SqvW/WjSOwPHigQl+k= aJFHeID4Q7qUfMa42dRwaa9PQrZ/cVDiE3WNt4bQjo0= worker
1JttHp0rBBBHDOpPl8fAiLTcN9tUzxJGjk7llFcvhZQ= kgTUu0eXQWfPaE8Li8NgXf0bsjXdupxIfM8moGrTMK4= worker
UDV5FoaIkssdSFWC4asZtxvsyagoyrIS5rPX8p/np2U= VonN99SPIvJ6Aq8dS5JQG9g50svyuLwMHjXZYAAtLKo= backup-worker
RMa2ER0wvraR+4u5QOGOrRTwmMVOYNcOot7sFppPRP0= k0g6YN7CFSgjaPU1EjVWXhzPVmEset+3sQ3c3NJ8Ys4= backup-worker
cgXH87+sYoe2mXsdDKWCyRvWZ8JqnVnxJkCq09LlBoI= 6ioksdd5uKtlNnPmCpu1NYohfamlb/QHiD8EhMuTbfw= backup-worker
nw+8VTk+LbrZ4mSmeKYuQGu/swFgAOpPB5ls4STzh1g= XCiPWblWT3n1aN2NI0vslmlfV9GOkxE2Ih2SI66ZR38= backup-worker
WazI78lMcmjyCH5+5RKkkfOTUR+XheHIohlqMu+a9As= uvPTOOyC+Kb+Hl3Pw34S3/YC9IerAdZncyW08LIaTtw= backup-worker
PrCDIA3uyoLqNOZJ1PrRWdyviFn6K0PWFz91qQ9QyTw= vI2QpEG/5LYwU+Fp52QsYxdRMRoy9j+pdJSb23tW3ng= backup-worker
YDHYz/R+Y7pCodhmgkCqzoqqN54gzRfVE5fjZriX+RI= 7Rz1yAFZcAD06OOTZxx5LLDg2L5+1Me4304xZB8cgxU= backup-worker
zAhtGrpk1L3bBLaP5enm3natUTCoj7MEFryq9+MG4tE= PsfFUQrXqGoFtowWZcoc8ilh8xHP94LvNYHvqQHpw1E= backup-worker
wCGlLKUiTNr9Ba49YA6dDuqm9rdtPcKKsKzHqMBn+rc= vlG7mUtP7s2PsnARfyrI3mW/q4pcqRi3SHk2GxmQ2NM= backup-worker
J2nwlXuYEPNZ0mMH2Phg5RofbZzj65xDvQMNdy9Ji0E= ITrwEekdZNqXrEzvw3GT6Q3AtHDd51f19nD2nVU/f0c= backup-worker
oOVxTw2hEYgYvSrTjjKODCt/Soy3OLcQV9YBy/PF/xY= Io86AKuu7YDnya+fVnldHBybFggwCoXeQPu3Wj8kHW4= backup-worker
<id>
The provided ID can be one of the following:
-
If the ParaTime ID is provided, Oasis CLI shows ParaTime information stored in the network's registry.
For example, at time of writing information on Sapphire stored in the Mainnet registry were as follows:
oasis network show 000000000000000000000000000000000000000000000000f80306c9858e7279
{
"v": 3,
"id": "000000000000000000000000000000000000000000000000f80306c9858e7279",
"entity_id": "TAv9qXjV4yBphnKLJcNkzois1TLoYUjaRPrMfY58Apo=",
"genesis": {
"state_root": "c672b8d1ef56ed28ab87c3622c5114069bdd3ad7b8f9737498d0c01ecef0967a",
"round": 0
},
"kind": 1,
"tee_hardware": 1,
"key_manager": "4000000000000000000000000000000000000000000000008c5ea5e49b4bc9ac",
"executor": {
"group_size": 5,
"group_backup_size": 7,
"allowed_stragglers": 1,
"round_timeout": 2,
"max_messages": 256,
"min_live_rounds_percent": 90,
"min_live_rounds_eval": 20,
"max_liveness_fails": 4
},
"txn_scheduler": {
"batch_flush_timeout": 1000000000,
"max_batch_size": 1000,
"max_batch_size_bytes": 1048576,
"propose_batch_timeout": 2
},
"storage": {
"checkpoint_interval": 100000,
"checkpoint_num_kept": 2,
"checkpoint_chunk_size": 8388608
},
"admission_policy": {
"any_node": {}
},
"constraints": {
"executor": {
"backup-worker": {
"validator_set": {},
"max_nodes": {
"limit": 1
},
"min_pool_size": {
"limit": 7
}
},
"worker": {
"validator_set": {},
"max_nodes": {
"limit": 1
},
"min_pool_size": {
"limit": 7
}
}
}
},
"staking": {
"thresholds": {
"node-compute": "5000000000000000"
},
"min_in_message_fee": "0"
},
"governance_model": "entity",
"deployments": [
{
"version": {
"minor": 4
},
"valid_from": 20944,
"tee": "oWhlbmNsYXZlc4GiaW1yX3NpZ25lclggQCXat+vaH77MTjY3YG4CEhTQ9BxtBCL9N4sqi4iBhFlqbXJfZW5jbGF2ZVgg3mqV02+CDfyth1fNyaR8jo3rVp024JOBkBGnjtLPypM="
},
{
"version": {
"minor": 5,
"patch": 2
},
"valid_from": 23476,
"tee": "oWhlbmNsYXZlc4GiaW1yX3NpZ25lclggQCXat+vaH77MTjY3YG4CEhTQ9BxtBCL9N4sqi4iBhFlqbXJfZW5jbGF2ZVggMBEUvUKRVLByqR+3a/KVNkkMjorOJLTw2Znb36baBQY="
}
]
}Network validators may be interested in the ParaTime staking threshold stored inside the
thresholds
field. In the example above, the amount to run a Sapphire compute node on the Mainnet is 5,000,000 tokens and should be considered on top of the consensus-layer validator staking thresholds obtained by thenetwork show native-token
command. -
If the entity ID is provided, Oasis CLI shows information on the entity and its corresponding nodes in the network registry. For example:
oasis network show xQN6ffLSdc51EfEQ2BzltK1iWYAw6Y1CkBAbFzlhhEQ=
{
"v": 2,
"id": "xQN6ffLSdc51EfEQ2BzltK1iWYAw6Y1CkBAbFzlhhEQ=",
"nodes": [
"Kb6opWKGbJHL0LK2Lto+m5ROIAXLhIr1lxQz0/kAOUM="
]
} -
If the node ID is provided, Oasis CLI shows detailed information of the node such as the Oasis Core software version, the node's role, supported ParaTimes, trusted execution environment support and more. For example:
oasis network show Kb6opWKGbJHL0LK2Lto+m5ROIAXLhIr1lxQz0/kAOUM=
{
"v": 2,
"id": "Kb6opWKGbJHL0LK2Lto+m5ROIAXLhIr1lxQz0/kAOUM=",
"entity_id": "xQN6ffLSdc51EfEQ2BzltK1iWYAw6Y1CkBAbFzlhhEQ=",
"expiration": 23482,
"tls": {
"pub_key": "SslsTv8Cq/UvKHPk8w1S/Ag/wwsscqSa05bqDAVOR1I=",
"next_pub_key": "js0fhS02f+G3kW7uu+N47lzcfxjbBEPkPibTfeQrJTA=",
"addresses": null
},
"p2p": {
"id": "e9fyvK+2FwU805dag81qOsrKHaO5b+nQnHyzEySi258=",
"addresses": null
},
"consensus": {
"id": "3K2Vx3gTop+/GoM9Zh+ZSGPwVb2BRTFtcAo6xPo4pb4=",
"addresses": [
"e9fyvK+2FwU805dag81qOsrKHaO5b+nQnHyzEySi258=@125.122.166.210:26656"
]
},
"vrf": {
"id": "3z85R+Rdud27NUTMFf4gO4NBQbMEnWqnhHhI6AtNx74="
},
"runtimes": null,
"roles": "validator",
"software_version": "22.2.7"
}
Status of the Network's Endpoint
network status
will connect to the gRPC endpoint and request extensive status
report from the Oasis Core node. Node operators will find important information
in the report such as:
- the last proposed consensus block,
- whether the node's storage is synchronized with the network,
- the Oasis Core software version,
- connected peers,
- similar information as above for each ParaTime, if the node is running it.
At time of writing, the following status of the official gRPC endpoint for Mainnet was reported:
oasis network status
=== NETWORK STATUS ===
Network: mainnet
Node's ID: mVyn1iZkOAlP7AQRuhYHahAkUEGJmywY1G8raR5u/3I=
Core version: 23.0.9
==== Consensus ====
Status: ready
Version: 7.0.0
Chain context: bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55
Latest height: 18458209 (2024-03-21 10:47:52 +0100 CET)
Latest block hash: eb3fbe258b3066935de32158ac1b0cf2d3f79f5558682eee8f04f3afc80374ae
Latest epoch: 30750
Is validator: false
Registration: false
==== ParaTimes ====
cipher (000000000000000000000000000000000000000000000000e199119c992377cb):
Kind: compute
Is confidential: true
Status: ready
Latest round: 1612018 (2024-03-21 10:47:52 +0100 CET)
Last finalized round: 1612018
Storage status: syncing rounds
Active version: 3.0.2
Available version(s): 2.6.2, 3.0.2
Number of peers: 30
emerald (000000000000000000000000000000000000000000000000e2eaa99fc008f87f):
Kind: compute
Is confidential: false
Status: ready
Latest round: 9509250 (2024-03-21 10:47:52 +0100 CET)
Last finalized round: 9509250
Storage status: syncing rounds
Active version: 11.0.0
Available version(s): 10.0.0, 11.0.0
Number of peers: 29
sapphire (000000000000000000000000000000000000000000000000f80306c9858e7279):
Kind: compute
Is confidential: true
Status: ready
Latest round: 2958958 (2024-03-21 10:47:52 +0100 CET)
Last finalized round: 2958958
Storage status: syncing rounds
Active version: 0.7.0
Available version(s): 0.7.0
Number of peers: 39
You can also view output in json format by passing the --format json
parameter:
oasis network status --format json
{
"software_version": "23.0.9",
"identity": {
"node": "mVyn1iZkOAlP7AQRuhYHahAkUEGJmywY1G8raR5u/3I=",
"consensus": "CQVOWxM6nNl4zeatY2TC5ZtJ4vz6joP+HAZIbqwyKgw=",
"tls": "NV7emPy4aoIScppvKMqJZpVN+q/6pqDrop9yvNbUpwU="
},
"consensus": {
"status": "ready",
"version": {
"major": 7
},
"backend": "tendermint",
"features": 3,
"latest_height": 18270232,
"latest_hash": "a586e2fc45b1d70f9b37331a5767cd365ec249a7cacb5630033c154dccb66ce7",
"latest_time": "2024-03-08T10:46:02+01:00",
"latest_epoch": 30437,
"latest_state_root": {
"ns": "0000000000000000000000000000000000000000000000000000000000000000",
"version": 18270231,
"root_type": 1,
"hash": "420851d6af33cef0af7c16abce92db3a6d10fbd4ea1ee04d54b82764a30a5738"
},
"genesis_height": 16817956,
"genesis_hash": "7670c86852c214f4e2b5ad571f4c2c344c630afdb409f7a5a3adce5a85240f31",
"last_retained_height": 16817956,
"last_retained_hash": "7670c86852c214f4e2b5ad571f4c2c344c630afdb409f7a5a3adce5a85240f31",
"chain_context": "bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55",
"is_validator": false,
"p2p": {
"pub_key": "/YOH7B2pk8Iff19lzWQ1qkKJ+PbXJtcyP6k7avW6NkE=",
"peer_id": "e4f393164321e67b2ad1d62cd698aa175d4f7165",
"addresses": [
"/YOH7B2pk8Iff19lzWQ1qkKJ+PbXJtcyP6k7avW6NkE=@34.135.216.16:26656"
],
"peers": [
"9a4d7c9aabbab2967aea6ad01a8a8632c64a38f4@131.153.164.23:51314",
"68d63f77952a6c2e5f0f7040402cba93cdeaa70a@95.216.72.47:38756",
"140a7c1411ff0de81c8fa6744f31fdf654063eaa@135.181.22.224:26656",
"4390496facda27743a10c2c0c5ff2c7e454e6e5d@95.216.37.80:45508",
"1be3c26045608e81bd7c27a7aaa0366a70181f1b@131.153.164.11:49462",
"19b24c4124e6a5e5eaf9508537544252e9202555@18.176.52.160:43004",
"dba1969fc288a52d69d8cc8e08f9e5ef6882e42a@188.42.245.84:37856",
"eb474e45eea6de5330f13d910a6be36864e439de@143.42.108.67:33896",
"136d2d3b17be220719ab23a0611bc68e52323e5a@95.217.204.115:53792",
"dc7ac801187cf1600072a4caad315e4f492c9b18@91.235.116.246:49064",
"53c9ffebd7c2e96c1302ebe7bcd31382a69e5348@135.181.2.18:38514",
"b74f519bb45738233bd8b5723accf0fa967fee46@131.153.158.203:46988",
"c717bacf4fe474f881c31b63330a9d45bf9698ab@95.217.77.154:55244",
"95d97246a37d44a226021cf9f5014b976e022416@20.232.103.170:53852",
"0666e962c44875289b8355a4a8bf9d58c88c387e@52.194.107.16:30389",
"f7e8a17f275543353d713315863577aad9a455c7@131.153.57.230:47004",
"04e6c48bfb04f4642ce257d3a973aca74b265fdd@104.198.241.118:37838",
"bf4cbb24920f04ae34ec7b568d79d89e44563413@66.165.251.58:33824",
"d064899fa00e860734e3cb9839e6945f0fc8dce2@91.216.245.188:26656",
"f4bde78f8ad065d3b74c3baf3e65e8ac9067789c@54.82.200.23:64728",
"d6503409d1be441f290bb45aafe3c8f2343c0d02@94.130.25.75:25123",
"3a0aa443bcafd6360fba8173c88be772dd010c3d@80.64.208.190:1720",
"d6aabd0a4c9ec030828be419059cc77c19137510@93.157.248.142:26656",
"ca0e733b946ef09491e2ad26f5425c404465b774@80.64.208.171:35165",
"de3249501db9312f53556af293ca8f7d1ff5b093@87.119.223.15:59628",
"c2ffb6c7b77aa504f4816789e5a4d4a42f29f36d@3.112.138.57:47988",
"752af3d38aea5e8eff69161833658031f3d5ac44@217.79.252.130:44368",
"8aa27f84baa1a340fb672f75027ec4655fd78968@34.135.12.249:52220",
"322c5bce6cf858e4dedc1057fff879f2ca819e3d@15.235.183.125:60642",
"8703c37574622728b19ac7cb76508284fb381279@86.111.48.51:47994",
"ae36c8f46b340315691c7bf0bd8c77012fb2f86d@134.119.191.179:48932",
"108fa65cc0e82191dbdc64cd7fc916907acb0c17@34.71.93.50:26656",
"24c362d09c1bedd98b9fe207916227f9b3d7d34e@66.85.141.242:53474",
"cfbd5780a731690862b6ed42ab0fbd966dc4a14c@13.115.221.102:41614",
"ffa875d275e8a30f1e0ded2af542fee3ceff4f2d@162.55.95.170:36756",
"239246b126e70e8023201b2c4066cfb6eaf7d50c@52.194.8.37:59952",
"4e98fd9344befa108c9ab714d673212bba5dc1b8@47.243.161.117:50270",
"36189358cbed896d5ee7af2f0582d010b937403f@18.176.159.242:9313",
"59ef3fe6a5e6520da1fc67e9684d74bb433f1320@47.242.42.58:35440",
"3cc19a3fde93e22ce954c223aaf54c5e2e84cd32@142.132.213.82:26656",
"5fb93f5ac86efeddc35062f7f3e789f1a0cd39d7@142.132.194.124:42358",
"d22834f65843ac1aeabd424803699fd4b86b0a77@178.63.47.146:52052",
"59e633dcef4db5f79a65dafc410e7815ea105e8e@135.181.179.38:16656",
"a81d024f7f42ab190bb60f457c79c29abc2a9bb1@162.55.245.211:35566",
"e7ad5f2aec34b3486ad91a40bd4439f67da77440@95.111.240.82:60716",
"41df0b7f45a1b2164805b61576293ce04a0a57ec@165.232.81.5:49402",
"ed8d710f7ba7a12df9f143a62aac322300124653@159.69.183.181:37520",
"ec89299f6538af21aad50ee9a02b5ae2a1e3a67d@131.153.164.21:44180",
"dd0d0ae872577c53a2a5e5886d2df1dec08e3311@65.109.20.222:40346",
"5114f3918d2ce178376837e25baa31dd6ca75bc3@15.165.142.244:44556",
"f2c77c2243949dbe0c1fe60146429e81f2a56b6e@92.42.109.183:58922",
"d8b549e447292d1b36987a70836e0b59e3b75121@54.208.50.80:26656",
"f5ba16af030d45322508bf43ee83fd93f0491b5d@66.85.141.186:57306",
"2ae1b6657b434aa34bde472f880051ec0e1423b2@134.119.190.191:42154",
"d11601b05409a7a6b887f533bafe60890ab9ea66@47.242.195.167:35402",
"bbfac1c724eb4e3f7787b6b2db96f99fda5d252d@65.108.6.54:32884",
"f8b16418e95d6508b98479f7ba086c57baf4bee1@167.172.31.178:26656",
"24e7035e8380ca2cfbce8850522a628f93ba70cf@45.125.23.194:60234",
"c36236d658276737cd96ceffd700d80895053812@157.90.199.94:52664",
"b2b267a52aec2bc9203e4efb4bb06da4ed37ae12@95.217.34.120:56976",
"5e2538898cba75f1d58a9a8bc33059a72d8ec80e@174.138.162.2:46720",
"e15e2a29672bc0784b45ea1bf81d51e0fc5f1bbb@134.119.194.139:39384",
"6c18886e0b16d93410db563fc7d66804b74b9796@23.88.38.81:26777",
"85d744388148b6d2c10a66b40ef7c9e73e5a99cc@212.126.35.132:33970",
"412890d778a3d90123a156ff01e8af563622ffaf@164.68.120.119:42900",
"378ce07a57fc2d7caffd2d3a8a15ecafa0cebc88@35.79.207.60:1261",
"0107967d77c59c9f2741bf8ca2d1ad393913f1ff@65.109.34.46:26656",
"e2bcd89092c40eaee9694c9389ff687ab1d8a6b7@148.251.246.233:45818",
"e983bcecaae17c3c77be98eeae9740e773f03799@8.217.165.72:40986",
"232730ebcb4350c9390ceb85d690563474e4caea@157.90.89.253:26686",
"925583eb4e02a5cb69e18fd5eddac27ffad639e5@195.189.97.15:42656",
"78ddec184305cb332a4f223331fa387d91f57301@51.79.176.85:40294",
"4c8622ff6fc152a13fe394f95c85f0c32a991d6f@65.21.90.141:27656",
"4eeba1ead5b7ede2c968426d0104935bf7ee8a49@212.232.29.233:49322",
"a51cda7babb0994b52fe70ff658915ebdd5f167a@93.115.25.138:60204",
"15c88aac912c1020b3d49a90fb894dff738c476a@131.153.164.15:26656",
"1b611282f1f06262b38fdd16958dd70f083f532d@80.64.208.154:36889",
"ecc168dd1bef0d6e325d7191d546c18dfbeadac2@54.199.153.43:42473",
"2d1b795f1cf73cfce05f43cdeec7ea7d01a52cac@35.232.154.67:38088",
"e527309ff618bfc41904bbb93317781aaccefd1a@84.234.97.201:44462",
"c426e80e4972e3efb0a85588e6f3712f53e463e9@142.132.203.173:44226",
"d0c65475d3db97663678d7546ae6fa68c5464e5e@131.153.205.66:46844",
"aa246b072060eb700001fe25cd03bbb42a72fff4@193.34.212.218:34726",
"bd8c0023bd9046c13b7bccf1bef3b2a0ba0541d4@52.204.103.24:47011",
"273d1d2ab06c0caf522fd63a0d8948dd9d4fd439@65.109.30.110:40366",
"b8994b04adf1393b4957ccfd3406361455046897@159.69.59.60:39980",
"e6e6cdb013ec62313e1062e8247f10edb4daa113@95.217.144.50:60244",
"49991aac0a36020204b14cb4311ab5b42fb8f771@93.115.25.171:48408",
"51dd31bb5e86b2014b16e058f00fff8a9dc81e83@65.108.127.220:60148",
"36abd07fba6e9fe6c28a8106e7e314ba4ac738bc@92.42.109.101:33444",
"1638e5805abc75ee7575bea77a246e3b81a7c23c@135.181.62.168:26656",
"c06a9e8cc5e33997d4d224418d9e936887fa5ed3@185.107.80.40:45312",
"e98583c0682d6c65991923f6d0dad5d6599fc756@54.249.45.3:35356",
"82af2cf1624cebbf3cb91efb0639c4296d8fd434@51.222.154.19:26656",
"56cb4457419f814c0c3722e8cc84558b36d1dbf0@131.153.158.145:51058",
"7ca85f4942e424935f9b8e5fc3fd52465d0b6e53@65.21.73.113:35790",
"645d7abf7b0e89845b5cdc74baa9131099966332@34.252.55.98:59878",
"d02357dfe32dadfa21fbad9129a793d836627d2c@95.217.118.121:16656",
"4f6c97a1ede39d37c2445037e2493a9ba45eb6c2@92.204.248.255:48548",
"184f768af5a8fa8bb4e9336261da4bb47757b0c7@185.188.42.107:46258",
"0435bcb4c96099853a5577a179193eeffac1ad56@136.244.86.89:42430",
"b9b9a5d34b7cf19fc22fc8055608c39f506cd46a@129.226.155.121:13549",
"462dc40e72a895c054b885a6777c8eb609fe0169@34.48.1.200:59758",
"078adc90344d7c7c261625ea4a3d5f223d4618fd@146.59.85.227:43726",
"4bc1ce84911cea6a17ee3c5564fd658e09798245@80.64.208.193:17990",
"9fb0071d9630e2e1592e912d52565933ee292549@65.108.201.32:52640",
"bff37dfb8bda01e432369e8267272ebc47e32523@178.63.93.41:46318",
"b22d7ed700f22390e0f4e3de051561b032a80818@84.39.245.93:39652",
"806d29e0c3a2072cd35544a01b279d74d222b575@64.25.109.153:56770",
"1ecee321d4ac42a818ce14b4ac1f10775ea3ba56@78.46.18.44:33102",
"ac6ccf89de3c109e6dd9f92d3210d7bc9887a0ee@193.201.82.155:55662",
"b7c38b98134fb29257d05145fd997645e9333484@165.154.224.206:38834",
"e27f6b7a350b4cc2b48a6cbe94b0a02b0dcb0bf3@35.199.49.168:60736",
"0d8b2a311c5089230f9c1aacb925682fd64eabe4@13.125.182.16:52190",
"52114be29ad3ea06c81feec22c8e4321205144ae@95.214.53.217:53468",
"5e163829692be3dd1c5bc42ffbc836453516f4d8@51.89.190.189:43414",
"1520ced3b1f1445988a72cbeda48a3d748860a62@70.165.57.67:20714"
]
}
},
"light_client": {
"latest_height": 18269956,
"latest_hash": "a4a723371efe4eaef2cb6d98204961daa67ff6052b48a9445fff3f8413ee0c3b",
"latest_time": "2024-03-08T10:18:42+01:00",
"oldest_height": 16817956,
"oldest_hash": "7670c86852c214f4e2b5ad571f4c2c344c630afdb409f7a5a3adce5a85240f31",
"oldest_time": "2023-11-29T11:02:19+01:00",
"peer_ids": [
"12D3KooWDK97pWjMJDuu5Rq1eALHG2eyxzf2JAFccDh7sDgQUVwJ",
"12D3KooWPxb48tCvx8mytzYwn7FU4qsmF5QUiK2upd16NXkctmUY",
"12D3KooWA6en49Pg7fwLgZMUZGwURNyB98yDAJh9j74vV74kdD7V"
]
},
"runtimes": {
"000000000000000000000000000000000000000000000000e199119c992377cb": {
"descriptor": {
"v": 3,
"id": "000000000000000000000000000000000000000000000000e199119c992377cb",
"entity_id": "TAv9qXjV4yBphnKLJcNkzois1TLoYUjaRPrMfY58Apo=",
"genesis": {
"state_root": "c672b8d1ef56ed28ab87c3622c5114069bdd3ad7b8f9737498d0c01ecef0967a",
"round": 0
},
"kind": 1,
"tee_hardware": 1,
"key_manager": "4000000000000000000000000000000000000000000000008c5ea5e49b4bc9ac",
"executor": {
"group_size": 5,
"group_backup_size": 11,
"allowed_stragglers": 1,
"round_timeout": 2,
"max_messages": 256
},
"txn_scheduler": {
"batch_flush_timeout": 1000000000,
"max_batch_size": 1000,
"max_batch_size_bytes": 10485760,
"propose_batch_timeout": 5000000000
},
"storage": {
"checkpoint_interval": 100000,
"checkpoint_num_kept": 2,
"checkpoint_chunk_size": 8388608
},
"admission_policy": {
"any_node": {}
},
"constraints": {
"executor": {
"backup-worker": {
"validator_set": {},
"max_nodes": {
"limit": 1
},
"min_pool_size": {
"limit": 11
}
},
"worker": {
"validator_set": {},
"max_nodes": {
"limit": 1
},
"min_pool_size": {
"limit": 11
}
}
}
},
"staking": {
"min_in_message_fee": "0"
},
"governance_model": "entity",
"deployments": [
{
"version": {
"major": 2,
"minor": 6,
"patch": 2
},
"valid_from": 20492,
"tee": "oWhlbmNsYXZlc4GiaW1yX3NpZ25lclggQCXat+vaH77MTjY3YG4CEhTQ9BxtBCL9N4sqi4iBhFlqbXJfZW5jbGF2ZVggyJORh2eP/BKGIVTGWwyQowE65kx2EdME5DtKjbMcPxE="
},
{
"version": {
"major": 3,
"patch": 2
},
"valid_from": 28186,
"tee": "oWhlbmNsYXZlc4GiaW1yX3NpZ25lclggQCXat+vaH77MTjY3YG4CEhTQ9BxtBCL9N4sqi4iBhFlqbXJfZW5jbGF2ZVgg2sZMDBwkVsRPxVr1GDArubMyzKn6Im0fhYgOh4CbSM4="
}
]
},
"latest_round": 1433155,
"latest_hash": "1e74144d52c955b33f8f5314d5febecddf5858ec4db28aca1567824af6503a87",
"latest_time": "2024-03-08T10:46:02+01:00",
"latest_state_root": {
"ns": "000000000000000000000000000000000000000000000000e199119c992377cb",
"version": 1433155,
"root_type": 1,
"hash": "b50a6918a1c2cfaef743025ac3cc8e78cbaed8c376751632564b81ef018a104d"
},
"genesis_round": 44054,
"genesis_hash": "7f14a395c6daa1ec492152a29c8c27f5b84fba94e09652d765d6d0937ba2abfb",
"last_retained_round": 44054,
"last_retained_hash": "7f14a395c6daa1ec492152a29c8c27f5b84fba94e09652d765d6d0937ba2abfb",
"committee": {
"status": "ready",
"active_version": {
"major": 3,
"patch": 2
},
"latest_round": 1433155,
"latest_height": 18270232,
"executor_roles": null,
"scheduler_rank": 18446744073709551615,
"peers": [
"/ip4/51.210.116.110/tcp/30002/p2p/12D3KooWEvfS5EdnpcC8etv8eiE3oSkhWid2FEXb5oAisZT3AJyo",
"/ip4/66.85.156.122/tcp/30002/p2p/12D3KooWN2wNNar6xWQuRem6QGaWie5u3StWWmdZm4xeZ4CFKADE",
"/ip4/51.222.41.188/tcp/30002/p2p/12D3KooWKTvsowgyv3WRTVm2dvEBtxpKsshWKtKJmGriGDPdzRBM",
"/ip4/93.107.154.131/tcp/30002/p2p/12D3KooWQZXoU1GFSSWsmqWALRz2nvukxENCPBKJGndTca3gfW8o",
"/ip4/134.119.219.154/tcp/20103/p2p/12D3KooWCdX3M9s1HicZVDqEtuyJ8NPDihR4cZDdNroYxJgiCtsD",
"/ip4/131.153.59.34/tcp/26892/p2p/12D3KooWB4GhP7dXsBnFjTpkgr3sCmwkKxcmDhkHKNxZ3CrGgHDR",
"/ip4/51.89.234.42/tcp/30002/p2p/12D3KooWS74Wqr1ZYLWafymznv4ib48DzDdmgZzVqMkM2ntNg5DZ",
"/ip4/80.64.208.193/tcp/30002/p2p/12D3KooWJArUJBm2ikBb8ZfDmVeXTrawXz9qscP1kCSuye2oraQv",
"/ip4/131.153.164.15/tcp/30002/p2p/12D3KooWCixcEb3YyZqQnANYX9YLVuAxQ2tNaRapQuYh9TeTTFZV",
"/ip4/131.153.99.10/tcp/30002/p2p/12D3KooWKPMS72iRgPDWczMVzKyYa3DSZmc771XDNXnMWVPnjfmJ",
"/ip4/2.56.188.205/tcp/30003/p2p/12D3KooWApMJjg1bGe85Ag5WZVxnmvxhk3izxV3rD4KiWDeKQ2xK",
"/ip4/134.119.190.237/tcp/30002/p2p/12D3KooWSPgs5SCss4U2RRXuuBhGv5HMcsZwsVNW426TtFUxJBKA",
"/ip4/66.85.154.218/tcp/30002/p2p/12D3KooWRRbEUSjnw3FwLm368wd8pArGRG6YCYMhAdA8oWG1CgkT",
"/ip4/131.153.57.226/tcp/30002/p2p/12D3KooWDzq86WGEqEHcVCYfhukxuYKPq7cjrCxwsYg5euBpTcfi",
"/ip4/51.81.57.69/tcp/30002/p2p/12D3KooWAcrMmjagXif4ocSDeZxWT4XA8LMNinHASwrmG2uV64H5",
"/ip4/51.91.75.150/tcp/30002/p2p/12D3KooWQaNYjegtZyFtyrRNCF1yxB3sgGtBgY8asgEpFEcXPJiS",
"/ip4/84.234.97.201/tcp/30004/p2p/12D3KooWJy5LhH2z79Zu2Ki7HWjmwcHDxRuCNzLFxtz7ksYFQxXo",
"/ip4/51.222.44.106/tcp/30002/p2p/12D3KooWSJ4WnjUY76cfiifujynaxD15QnCdQfzxuJsyqzat24rp",
"/ip4/174.138.162.2/tcp/30002/p2p/12D3KooWAYVr6x3xpw7PCywXwbsneDc4eAN9SiaT4TndL61xE64J",
"/ip4/131.153.158.97/tcp/30002/p2p/12D3KooWSnJtBMWpaYmwZgkHQApefXzuQhUxRencTzwyuXzuWpFf",
"/ip4/212.232.29.235/tcp/35002/p2p/12D3KooWSHF3gtW3thCZVJ3HJJTHNyJMB273iEVbJHVPpRYpdmmb",
"/ip4/80.64.208.194/tcp/30002/p2p/12D3KooWGTfuY6Umye8348GDgbfghM6gwLbFDQEdbpeXbahFRE5R",
"/ip4/131.153.154.13/tcp/30002/p2p/12D3KooWGfyNBqnppXZ1jo8zRcav3uKunj85HGbEDqj67d72jbJv",
"/ip4/66.85.139.42/tcp/25002/p2p/12D3KooWMqPvVGdzgz56jHVsAjL1W8YwR2FpiFvpR8SCw6SZxX32",
"/ip4/185.107.80.40/tcp/30002/p2p/12D3KooWHHG9fq9bLSKSdtQXBtqMJj4K3zyDCUJU9PvEKj7CBFbw",
"/ip4/131.153.165.57/tcp/30002/p2p/12D3KooWStTpimpJLSa85gsWG17SGpdh43pHogQDhzFGiKXDQAJe",
"/ip4/34.135.12.249/tcp/9002/p2p/12D3KooWNxPsNEZa1P8cFoqHwevBAzjx81hAxUXPLs9nKajbUoy8",
"/ip4/34.71.93.50/tcp/9002/p2p/12D3KooWD5SCMPhVVtSQEX4jbZym37BtNAADzr3XjrLYG558abKN",
"/ip4/135.181.112.38/tcp/9200/p2p/12D3KooWSyaGh3PZScCVDZKteMTEszm4GXPBP2Fv8k5QfTLUvbhF",
"/ip4/89.212.17.232/tcp/9200/p2p/12D3KooWPcz11AarnbjJaJyxz1y5C9nbVfVuJJqqbvFTrZ5RXRko",
"/ip4/195.201.202.101/tcp/34648/p2p/12D3KooWMEnRxPekFYjyRvr6sTahT5LtCWiBaLmakoXgBbk9F7tQ"
],
"host": {
"versions": [
{
"major": 2,
"minor": 6,
"patch": 2
},
{
"major": 3,
"patch": 2
}
]
}
},
"storage": {
"status": "syncing rounds",
"last_finalized_round": 1433155
},
"provisioner": "sandbox"
},
"000000000000000000000000000000000000000000000000e2eaa99fc008f87f": {
"descriptor": {
"v": 3,
"id": "000000000000000000000000000000000000000000000000e2eaa99fc008f87f",
"entity_id": "TAv9qXjV4yBphnKLJcNkzois1TLoYUjaRPrMfY58Apo=",
"genesis": {
"state_root": "c672b8d1ef56ed28ab87c3622c5114069bdd3ad7b8f9737498d0c01ecef0967a",
"round": 0
},
"kind": 1,
"tee_hardware": 0,
"executor": {
"group_size": 10,
"group_backup_size": 30,
"allowed_stragglers": 1,
"round_timeout": 2,
"max_messages": 256,
"min_live_rounds_percent": 50,
"min_live_rounds_eval": 10,
"max_liveness_fails": 4
},
"txn_scheduler": {
"batch_flush_timeout": 1000000000,
"max_batch_size": 1000,
"max_batch_size_bytes": 1048576,
"propose_batch_timeout": 5000000000
},
"storage": {
"checkpoint_interval": 100000,
"checkpoint_num_kept": 2,
"checkpoint_chunk_size": 8388608
},
"admission_policy": {
"any_node": {}
},
"constraints": {
"executor": {
"backup-worker": {
"validator_set": {},
"max_nodes": {
"limit": 1
},
"min_pool_size": {
"limit": 30
}
},
"worker": {
"validator_set": {},
"max_nodes": {
"limit": 1
},
"min_pool_size": {
"limit": 30
}
}
}
},
"staking": {
"thresholds": {
"node-compute": "5000000000000000"
},
"min_in_message_fee": "0"
},
"governance_model": "entity",
"deployments": [
{
"version": {
"major": 10
},
"valid_from": 21437
},
{
"version": {
"major": 11
},
"valid_from": 28017
}
]
},
"latest_round": 9322034,
"latest_hash": "448e91c56b20536951d17f67fc71e975dcadfe33c4cf3307ec038ab8890712a4",
"latest_time": "2024-03-08T10:46:02+01:00",
"latest_state_root": {
"ns": "000000000000000000000000000000000000000000000000e2eaa99fc008f87f",
"version": 9322034,
"root_type": 1,
"hash": "cb811c51d318d72fdad434ec390f122210ec3d7f9001b78dccfd7095d0fe8c02"
},
"genesis_round": 7875129,
"genesis_hash": "602632dba1fe37719925835a0e30e155668addf9cf91307d14b08c1362f38c80",
"last_retained_round": 7875129,
"last_retained_hash": "602632dba1fe37719925835a0e30e155668addf9cf91307d14b08c1362f38c80",
"committee": {
"status": "ready",
"active_version": {
"major": 11
},
"latest_round": 9322034,
"latest_height": 18270232,
"executor_roles": null,
"scheduler_rank": 18446744073709551615,
"peers": [
"/ip4/65.108.127.220/tcp/46002/p2p/12D3KooWCM5fJRX7SZP2LzBqs9wQ1xdkf79u4HZjYVzPVUKYFhbq",
"/ip4/88.198.49.137/tcp/46657/p2p/12D3KooWBsGC8isMUPqC56wkaLsq1cYgfkyybFXrsZMhjJBR7AHx",
"/ip4/51.210.116.110/tcp/30002/p2p/12D3KooWEvfS5EdnpcC8etv8eiE3oSkhWid2FEXb5oAisZT3AJyo",
"/ip4/34.48.1.200/tcp/30002/p2p/12D3KooW9whHFUP4G5apBgKNDMc1Uc4yb3E3opvPgqVrPC9T6Kvu",
"/ip4/195.14.6.187/tcp/9200/p2p/12D3KooWALMakdAtrHbEHCMKXVaKuUqucYYRo9vXUQavjDj65eQQ",
"/ip4/65.108.71.225/tcp/35002/p2p/12D3KooWML9Lyua1yqZa34FJpcydEYUzWNMHLrRj1NsnPbG3dvqH",
"/ip4/66.85.156.122/tcp/30002/p2p/12D3KooWN2wNNar6xWQuRem6QGaWie5u3StWWmdZm4xeZ4CFKADE",
"/ip4/51.222.41.188/tcp/30002/p2p/12D3KooWKTvsowgyv3WRTVm2dvEBtxpKsshWKtKJmGriGDPdzRBM",
"/ip4/34.85.239.136/tcp/30002/p2p/12D3KooWEWDthPgwwhe1bvDp5rwTNs4M2q1UHUKtMyXBW4JCrfJs",
"/ip4/131.153.59.34/tcp/26892/p2p/12D3KooWB4GhP7dXsBnFjTpkgr3sCmwkKxcmDhkHKNxZ3CrGgHDR",
"/ip4/51.89.234.42/tcp/30002/p2p/12D3KooWS74Wqr1ZYLWafymznv4ib48DzDdmgZzVqMkM2ntNg5DZ",
"/ip4/131.153.164.15/tcp/30002/p2p/12D3KooWCixcEb3YyZqQnANYX9YLVuAxQ2tNaRapQuYh9TeTTFZV",
"/ip4/131.153.164.23/tcp/20103/p2p/12D3KooWLZ8qr2rUZKhMzj3kEFCSfEaSM7m9gKkexQ9hNLh3J42p",
"/ip4/131.153.99.10/tcp/30002/p2p/12D3KooWKPMS72iRgPDWczMVzKyYa3DSZmc771XDNXnMWVPnjfmJ",
"/ip4/66.85.154.218/tcp/30002/p2p/12D3KooWRRbEUSjnw3FwLm368wd8pArGRG6YCYMhAdA8oWG1CgkT",
"/ip4/131.153.57.230/tcp/30002/p2p/12D3KooWDzq86WGEqEHcVCYfhukxuYKPq7cjrCxwsYg5euBpTcfi",
"/ip4/51.91.75.150/tcp/30002/p2p/12D3KooWQaNYjegtZyFtyrRNCF1yxB3sgGtBgY8asgEpFEcXPJiS",
"/ip4/51.222.44.106/tcp/30002/p2p/12D3KooWSJ4WnjUY76cfiifujynaxD15QnCdQfzxuJsyqzat24rp",
"/ip4/174.138.162.2/tcp/30002/p2p/12D3KooWAYVr6x3xpw7PCywXwbsneDc4eAN9SiaT4TndL61xE64J",
"/ip4/74.118.139.149/tcp/30002/p2p/12D3KooWPbvwm5SvjmYm4ghavhN3LHT4AV9MGeyPdUUxFqwjhwcC",
"/ip4/135.181.112.38/tcp/9200/p2p/12D3KooWSyaGh3PZScCVDZKteMTEszm4GXPBP2Fv8k5QfTLUvbhF",
"/ip4/104.198.128.161/tcp/9002/p2p/12D3KooWMRnHvBkAieXoWFCUwm8CanK8pNTK3qe7SM7qQqRaxetA",
"/ip4/131.153.205.66/tcp/9200/p2p/12D3KooWC8aPyvutEPaBiRx2Sq1HK5DkBfxrtvicd7bShJY72Ham",
"/ip4/89.212.17.232/tcp/9200/p2p/12D3KooWPcz11AarnbjJaJyxz1y5C9nbVfVuJJqqbvFTrZ5RXRko",
"/ip4/195.201.202.101/tcp/34648/p2p/12D3KooWMEnRxPekFYjyRvr6sTahT5LtCWiBaLmakoXgBbk9F7tQ",
"/ip4/43.157.5.35/tcp/9200/p2p/12D3KooWKEfhVy5mG6S2MerWVpYRUU9LJPVfnSN8agntumGwJ77P",
"/ip4/34.135.12.249/tcp/9002/p2p/12D3KooWNxPsNEZa1P8cFoqHwevBAzjx81hAxUXPLs9nKajbUoy8",
"/ip4/3.253.128.73/tcp/9200/p2p/12D3KooWHfda8yH4DRkvhSKiYqjFtwwtFkThMGRNNKyduR7Dz2wk",
"/ip4/93.115.25.171/tcp/9200/p2p/12D3KooWCgRyX8HKYvtWcy5JBcFQ2NSrKXAR8YFsKruzfjgTN8in",
"/ip4/34.71.93.50/tcp/9002/p2p/12D3KooWD5SCMPhVVtSQEX4jbZym37BtNAADzr3XjrLYG558abKN",
"/ip4/157.90.89.253/tcp/9200/p2p/12D3KooWH6xTgP5rNRNKza4GD4S37btCwJzbrddLjrc4GprxpqbH"
],
"host": {
"versions": [
{
"major": 11
},
{
"major": 10
}
]
}
},
"storage": {
"status": "syncing rounds",
"last_finalized_round": 9322034
},
"provisioner": "sandbox"
},
"000000000000000000000000000000000000000000000000f80306c9858e7279": {
"descriptor": {
"v": 3,
"id": "000000000000000000000000000000000000000000000000f80306c9858e7279",
"entity_id": "TAv9qXjV4yBphnKLJcNkzois1TLoYUjaRPrMfY58Apo=",
"genesis": {
"state_root": "c672b8d1ef56ed28ab87c3622c5114069bdd3ad7b8f9737498d0c01ecef0967a",
"round": 0
},
"kind": 1,
"tee_hardware": 1,
"key_manager": "4000000000000000000000000000000000000000000000008c5ea5e49b4bc9ac",
"executor": {
"group_size": 10,
"group_backup_size": 15,
"allowed_stragglers": 4,
"round_timeout": 2,
"max_messages": 256,
"min_live_rounds_eval": 60,
"max_liveness_fails": 4
},
"txn_scheduler": {
"batch_flush_timeout": 1000000000,
"max_batch_size": 1000,
"max_batch_size_bytes": 1048576,
"propose_batch_timeout": 5000000000
},
"storage": {
"checkpoint_interval": 100000,
"checkpoint_num_kept": 2,
"checkpoint_chunk_size": 8388608
},
"admission_policy": {
"any_node": {}
},
"constraints": {
"executor": {
"backup-worker": {
"validator_set": {},
"max_nodes": {
"limit": 1
},
"min_pool_size": {
"limit": 15
}
},
"worker": {
"validator_set": {},
"max_nodes": {
"limit": 1
},
"min_pool_size": {
"limit": 15
}
}
}
},
"staking": {
"thresholds": {
"node-compute": "5000000000000000"
},
"min_in_message_fee": "0"
},
"governance_model": "entity",
"deployments": [
{
"version": {
"minor": 7
},
"valid_from": 28190,
"tee": "oWhlbmNsYXZlc4GiaW1yX3NpZ25lclggQCXat+vaH77MTjY3YG4CEhTQ9BxtBCL9N4sqi4iBhFlqbXJfZW5jbGF2ZVgg5ww4lVfjy7mcDs3AfHnvq2Q4JbzXkh+UCeOukPjcJpc="
}
]
},
"latest_round": 2775514,
"latest_hash": "5f6ab3e90ea2778dfe2526a5e4d1466289abe5f09c2f7fec82e6f6b3ca3d7d83",
"latest_time": "2024-03-08T10:46:02+01:00",
"latest_state_root": {
"ns": "000000000000000000000000000000000000000000000000f80306c9858e7279",
"version": 2775514,
"root_type": 1,
"hash": "03f951006fea6ade82c9b1d350043784d61c4794d5bfd13145c2569348d0d20b"
},
"genesis_round": 1357486,
"genesis_hash": "151309e2bee057eff11500d83834c59edaa0defdceabddf8d27bcf8dbbf11aa3",
"last_retained_round": 1357486,
"last_retained_hash": "151309e2bee057eff11500d83834c59edaa0defdceabddf8d27bcf8dbbf11aa3",
"committee": {
"status": "ready",
"active_version": {
"minor": 7
},
"latest_round": 2775514,
"latest_height": 18270232,
"executor_roles": null,
"scheduler_rank": 18446744073709551615,
"peers": [
"/ip4/66.85.147.250/tcp/30005/p2p/12D3KooWN7fWvPgXqaD42LfpnZPdSrJpfjY7koPvL7MuJ6a9Zsag",
"/ip4/93.107.154.131/tcp/30002/p2p/12D3KooWQZXoU1GFSSWsmqWALRz2nvukxENCPBKJGndTca3gfW8o",
"/ip4/134.119.219.154/tcp/20103/p2p/12D3KooWCdX3M9s1HicZVDqEtuyJ8NPDihR4cZDdNroYxJgiCtsD",
"/ip4/84.39.245.93/tcp/30102/p2p/12D3KooWP97nqRjJdQ32x1aLyGbhD5ruLYtZiJBVG4JD4Yy8fqgF",
"/ip4/131.153.59.34/tcp/26892/p2p/12D3KooWB4GhP7dXsBnFjTpkgr3sCmwkKxcmDhkHKNxZ3CrGgHDR",
"/ip4/51.89.234.42/tcp/30002/p2p/12D3KooWS74Wqr1ZYLWafymznv4ib48DzDdmgZzVqMkM2ntNg5DZ",
"/ip4/131.153.164.15/tcp/30002/p2p/12D3KooWCixcEb3YyZqQnANYX9YLVuAxQ2tNaRapQuYh9TeTTFZV",
"/ip4/131.153.99.10/tcp/30002/p2p/12D3KooWKPMS72iRgPDWczMVzKyYa3DSZmc771XDNXnMWVPnjfmJ",
"/ip4/66.85.154.218/tcp/30002/p2p/12D3KooWRRbEUSjnw3FwLm368wd8pArGRG6YCYMhAdA8oWG1CgkT",
"/ip4/131.153.57.230/tcp/30002/p2p/12D3KooWDzq86WGEqEHcVCYfhukxuYKPq7cjrCxwsYg5euBpTcfi",
"/ip4/2.56.188.205/tcp/9200/p2p/12D3KooWFDWBBH6nskRDFEjvRghvp5Tu3DQ2ZStsBtjyS3wmpXcV",
"/ip4/51.91.75.150/tcp/30002/p2p/12D3KooWQaNYjegtZyFtyrRNCF1yxB3sgGtBgY8asgEpFEcXPJiS",
"/ip4/174.138.162.2/tcp/30002/p2p/12D3KooWAYVr6x3xpw7PCywXwbsneDc4eAN9SiaT4TndL61xE64J",
"/ip4/131.153.158.97/tcp/30002/p2p/12D3KooWSnJtBMWpaYmwZgkHQApefXzuQhUxRencTzwyuXzuWpFf",
"/ip4/92.42.109.101/tcp/30002/p2p/12D3KooWQyAVM5NVfYJHWZn6a5phHe8wZH3n3CVVNA7SF2JUtQu4",
"/ip4/51.222.44.106/tcp/30002/p2p/12D3KooWSJ4WnjUY76cfiifujynaxD15QnCdQfzxuJsyqzat24rp",
"/ip4/212.232.29.235/tcp/35002/p2p/12D3KooWSHF3gtW3thCZVJ3HJJTHNyJMB273iEVbJHVPpRYpdmmb",
"/ip4/131.153.154.13/tcp/30002/p2p/12D3KooWGfyNBqnppXZ1jo8zRcav3uKunj85HGbEDqj67d72jbJv",
"/ip4/66.85.139.42/tcp/25002/p2p/12D3KooWMqPvVGdzgz56jHVsAjL1W8YwR2FpiFvpR8SCw6SZxX32",
"/ip4/185.107.80.40/tcp/30002/p2p/12D3KooWHHG9fq9bLSKSdtQXBtqMJj4K3zyDCUJU9PvEKj7CBFbw",
"/ip4/131.153.165.57/tcp/30002/p2p/12D3KooWStTpimpJLSa85gsWG17SGpdh43pHogQDhzFGiKXDQAJe",
"/ip4/51.210.116.110/tcp/30002/p2p/12D3KooWEvfS5EdnpcC8etv8eiE3oSkhWid2FEXb5oAisZT3AJyo",
"/ip4/66.85.156.122/tcp/30002/p2p/12D3KooWN2wNNar6xWQuRem6QGaWie5u3StWWmdZm4xeZ4CFKADE",
"/ip4/51.222.41.188/tcp/30002/p2p/12D3KooWKTvsowgyv3WRTVm2dvEBtxpKsshWKtKJmGriGDPdzRBM",
"/ip4/131.153.158.145/tcp/20103/p2p/12D3KooWJebHaWqqsDXm38apaWT4RX83N119L8mMHh7GemZtKzQe",
"/ip4/131.153.158.241/tcp/20103/p2p/12D3KooWL5r52yBoHmRL7gesjUZMM8QSf8Yi1iWLNh6fACEsoJQR",
"/ip4/131.153.158.195/tcp/20103/p2p/12D3KooWJvttMywMUmxoNPzeE7NDRGSN56qQCNSoZmd95AEbfZhq",
"/ip4/131.153.158.203/tcp/20103/p2p/12D3KooWPo5FYGDQQikFhrFfzHDw2XPKAfhX5NAtp4HePHFgKQQ2",
"/ip4/20.231.83.188/tcp/9002/p2p/12D3KooWMRFWewSpssbH1ouKAPFohTwZWerY8q7HYnnRdbqHwW88",
"/ip4/135.181.112.38/tcp/9200/p2p/12D3KooWSyaGh3PZScCVDZKteMTEszm4GXPBP2Fv8k5QfTLUvbhF",
"/ip4/20.232.103.170/tcp/9002/p2p/12D3KooWDeXUzwZg4miWeBatCxhtzsq1VoReBZY651cCJPJQjkBX",
"/ip4/89.212.17.232/tcp/9200/p2p/12D3KooWPcz11AarnbjJaJyxz1y5C9nbVfVuJJqqbvFTrZ5RXRko",
"/ip4/131.153.164.11/tcp/20103/p2p/12D3KooWA6en49Pg7fwLgZMUZGwURNyB98yDAJh9j74vV74kdD7V",
"/ip4/195.201.202.101/tcp/34648/p2p/12D3KooWMEnRxPekFYjyRvr6sTahT5LtCWiBaLmakoXgBbk9F7tQ",
"/ip4/131.153.158.115/tcp/20103/p2p/12D3KooWPQbAYgnij8kwBZbDH2ArZV8Ch9vgHSP8bCKMph1S6FMm",
"/ip4/44.213.118.127/tcp/9200/p2p/12D3KooWK52QkQdGFnjHLUVUurKZnCdUBFacnJ3gyCHWbqDthaet",
"/ip4/131.153.147.30/tcp/9200/p2p/12D3KooWJQCVuzE6chjFRdHnn2M4SCXngZ87TmdDU3ccosMaQ4kt",
"/ip4/34.135.12.249/tcp/9002/p2p/12D3KooWNxPsNEZa1P8cFoqHwevBAzjx81hAxUXPLs9nKajbUoy8",
"/ip4/131.153.158.147/tcp/20103/p2p/12D3KooW9vQWrHSZZn3mKGZkFgCsP5XPHGnszr4A54etg67tR5YK",
"/ip4/20.163.238.123/tcp/9002/p2p/12D3KooWLT8joftMLzdnDt1Lb2rZKNYZZ1PEWPg81GpcJMaErkzm",
"/ip4/34.71.93.50/tcp/9002/p2p/12D3KooWD5SCMPhVVtSQEX4jbZym37BtNAADzr3XjrLYG558abKN",
"/ip4/20.124.126.75/tcp/9002/p2p/12D3KooWQTkXHYy6UnSaHuZvET5JL3fe5fV5P1eqs7So2Fz5nsdT"
],
"host": {
"versions": [
{
"minor": 7
},
{
"minor": 6,
"patch": 4
}
]
}
},
"storage": {
"status": "syncing rounds",
"last_finalized_round": 2775514
},
"provisioner": "sandbox"
}
},
"registration": {
"last_attempt_successful": false,
"last_attempt": "0001-01-01T00:00:00Z",
"last_registration": "0001-01-01T00:00:00Z"
},
"p2p": {
"pub_key": "/YOH7B2pk8Iff19lzWQ1qkKJ+PbXJtcyP6k7avW6NkE=",
"peer_id": "12D3KooWSsyeFEkSTrGTWXhnnpVGPExNeNX7FYtuVUkrWLUYVkSU",
"addresses": [
"34.135.216.16:9002"
],
"num_peers": 99,
"num_connections": 102,
"protocols": {
"/oasis/bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55/keymanager/4000000000000000000000000000000000000000000000008c5ea5e49b4bc9ac/2.0.0": 6,
"/oasis/bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55/light/1.0.0": 99,
"/oasis/bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55/storagesync/000000000000000000000000000000000000000000000000e199119c992377cb/2.0.0": 34,
"/oasis/bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55/storagesync/000000000000000000000000000000000000000000000000e2eaa99fc008f87f/2.0.0": 34,
"/oasis/bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55/storagesync/000000000000000000000000000000000000000000000000f80306c9858e7279/2.0.0": 47
},
"topics": {
"oasis/bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55/tx/000000000000000000000000000000000000000000000000e199119c992377cb/5.0.0": 34,
"oasis/bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55/tx/000000000000000000000000000000000000000000000000e2eaa99fc008f87f/5.0.0": 34,
"oasis/bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55/tx/000000000000000000000000000000000000000000000000f80306c9858e7279/5.0.0": 48
}
}
}
Network selector is available for the
network status
command.