Node Tools
This guide focuses on using the Sui CLI validator
commands.
This tool only supports pending validators and active validators at the moment.
Preparation
-
Make sure you have completed all the prerequisites.
-
Build the
sui
binary, which you need for the genesis ceremony. This step can be done on any machine you like. It does not have to be done on the machine on which you will run the validator.-
Clone the git repo:
git clone git@github.com:MystenLabs/sui.git && cd sui
-
Check out the commit to use for the testnet:
git checkout testnet
-
Build sui binary
cargo build --bin sui
-
Remember the path to your binary:
export SUI_BINARY="$(pwd)/target/debug/sui"
-
-
Run the following command to set up your Sui account and CLI environment.
-
If this is the first time running this program, it will ask you to provide a Sui Fullnode Server URL and a meaningful environment alias. It will also generate a random key pair in
sui.keystore
and a configclient.yaml
. Swap in your validator account key if you already have one. -
If you already set it up, simply make sure a.
rpc
is correct inclient.yaml
. b.active_address
is correct inclient.yaml
. b.sui.keystore
contains your account key pair.If at this point you can't find where
client.yaml
orsui.keystore
is or have other questions, read Sui Client CLI tutorial.$ sui client
-
-
To test you are connected to the network and configured your config correctly, run the following command to display your validator info.
$ sui validator display-metadata
Using Sui CLI
Print help info
$ sui validator --help
Display validator metadata
$ sui validator display-metadata
or
$ sui validator display-metadata <validator-address>
to print another validator's information.
Update validator metadata
Run the following to see how to update validator metadata. Read description carefully about when the change will take effect.
$ sui validator update-metadata --help
You can update the following on-chain metadata:
- name
- description
- image URL
- project URL
- network address
- p2p address
- primary address
- worker address
- protocol public key
- network public key
- worker public key
Notably, only the first 4 metadata listed above take effect immediately.
If you change any metadata from points 5 to 11, they will be changed only after the next epoch - for these, you'll want to restart the validator program immediately after the next epoch, with the new key files and/or updated validator.yaml
config. Particularly, make sure the new address is not behind a firewall.
Run the following to see how to update each metadata.
$ sui validator update-metadata --help
Operation cap
Operation Cap allows a validator to authorizer another account to perform certain actions on behalf of this validator. Read about Operation Cap here.
The Operation Cap holder (either the valdiator itself or the delegatee) updates its Gas Price and reports validator peers with the Operation Cap.
Update gas price
To update Gas Price, run
$ sui validator update-gas-price <gas-price>
if the account itself is a validator and holds the Operation Cap. Or
$ sui validator update-gas-price --operation-cap-id <operation-cap-id> <gas-price>
if the account is a delegatee.
Report validators
To report validators peers, run
$ sui validator report-validator <reportee-address>
Add --undo-report false
if it intents to undo an existing report.
Similarly, if the account is a delegatee, add --operation-cap-id <operation-cap-id>
option to the command.
if the account itself is a validator and holds the Operation Cap. Or
$ sui validator update-gas-price --operation-cap-id <operation-cap-id> <gas-price>
if the account is a delegatee.
Become a validator / join committee
To become a validator candidate, first run
$ sui validator make-validator-info <name> <description> <image-url> <project-url> <host-name> <gas_price>
This will generate a validator.info
file and key pair files. The output of this command includes:
- Four key pair files (Read more here). ==Set their permissions with the minimal visibility (chmod 600, for example) and store them securely==. They are needed when running the validator node as covered below.
a. If you follow this guide thoroughly, this key pair is actually copied from your
sui.keystore
file. validator.info
file that contains your validator info. Double check all information is correct.
Then run
$ sui validator become-candidate {path-to}validator.info
to submit an on-chain transaction to become a validator candidate. The parameter is the file path to the validator.info generated in the previous step. Make sure the transaction succeeded (printed in the output).
At this point you are validator candidate and can start to accept self staking and delegated staking.
If you haven't, start a fullnode now to catch up with the network. When you officially join the committee but is not fully up-to-date, you cannot make meaningful contribution to the network and may be subject to peer reporting hence face the risk of reduced staking rewards for you and your delegators.
Once you collect enough staking amount, run
$ sui validator join-committee
to become a pending validator. A pending validator will become active and join the committee starting from next epoch.
Leave committee
To leave committee, run
$ sui validator leave-committee
Then you will be removed from committee starting from next epoch.
Generate the payload to create PoP
Serialize the payload that is used to generate Proof of Possession. This is allows the signer to take the payload offline for an Authority protocol BLS keypair to sign.
$ sui validator serialize-payload-pop --account-address $ACCOUNT_ADDRESS --protocol-public-key $BLS_PUBKEY
Serialized payload: $PAYLOAD_TO_SIGN