Setting Up a Validator for Pundi AIFX
Information on how to join the mainnet (
genesis.jsonfile and seeds) is held in ourfxcorerepo.
Before setting up your validator node, make sure you've already gone through the Full Node Setup guide either with Binaries or with Docker.
If you plan to use a KMS (key management system), you should go through these steps first.
What is a Validator?
The role of a validator is to run a full-node and participate in consensus by broadcasting votes. Validators commit new blocks in the blockchain and receive rewards in exchange for their work. They must also participate in governance by voting on proposals. Validators are weighted according to their total stake.
Before you proceed to the next section, ensure that you have already set up a full-node.
Create Your Validator
⚠️ We support ledger for sending transactions, we recommend using ledger as it is more secure, note that such transactions require fxcore to be installed on both the remote vm and the host vm, which is a bit of a pain but worth doing.
Create validator's token holding account
Here we will create a new token holding account for the validator which we will bind later to the node consensus.
fxcored keys add <_name> --algo secp256k1 --coin-type 118 --ledger --index 0fxcored keys add <_name>Note: This creates a new token holding account for you, do record the mnemonic phrase in a safe place. Take note of the address so that you can fund the account. The
_namewill be used again later.
For example:
fxcored keys add Ciri --algo secp256k1 --coin-type 118 --ledger --index 0fxcored keys add GeraltOutput:
name: test
type: ledger/local
address: "..."
pubkey: "..."
mnemonic: ""
threshold: 0
pubkeys: []
**Important** write this mnemonic phrase in a safe place.
It is the only way to recover your account if you ever forget your password.
word word word word...if you already have an existing fx wallet and would like to import it you may run the following command and follow the prompts:
fxcored keys add <account_name> --recoverBind the node consensus and validator's token holding account
Now we will bind the node consensus and validator's token holding account, once this is done you will have successfully set up a validator!
⚠️ ⚠️ ⚠️ Couple of items to ensure before continuing
Ensure that entire node has synchronised to the latest block height, to prevent risk of being jailed
Using
curl localhost:26657/statusorfxcored statusto check"catching_up":false. If"catching_up":true, please continue to wait until entire node has synchronised, this could take up to a day depending on network usage.
Ensure that your token holding account has enough
PUNDIAI tokensbefore creating a validator. ForTestnet version, you may obtainPUNDIAI tokensvia PUNDIAI Faucet. For more information on how to obtainPUNDIAI tokenson Testnet.
A minimum of
100 PUNDIAIis needed to create an active validator. You will need more than100 testnet PUNDIAIin your account because some is needed to pay for the creation of your validator. Note: PUNDIAI has 18 decimal points.
Great! You can now bind the node consensus and validator's token holding account.
The command to run will be fxcored tx staking create-validator, copy the entire command below, after editing the required fields:
chain-id=dhobyghautis set as our fxcore testnet chain ie dhobyghaut. for mainnet, set thechain-id=fxcoregas="auto"automatically assesses the gas used for thiscreate-validatortransactiongas-adjustment=1.2there will be a 20% buffer added to the automatically assessed gas amountgas-prices="5000000000apundiai"this will be the gas price you will be paying for (you may check the gas price you will need to pay for your node)from=<_name>this is the token holding account created above that you will be binding your consensus account to to create a validatoramount=100000000000000000000000apundiaithis is the amount you will be self-delegating for your validator (currently it is set as100,000 PUNDIAI)pubkey=$(fxcored tendermint show-validator)this is your pubkey of your validatorcommission-rate="0.01"this is the commission you will be charging as a validatorcommission-max-rate="0.20"The maximum commission rate which this validator can charge. This parameter cannot be changed aftercreate-validatoris processedcommission-max-change-rate="0.01"The maximum daily increase of the validator commission. This parameter cannot be changed aftercreate-validatoris processedmin-self-delegation="1000000000000000000"Minimum amount ofapundiaithe validator needs to have bonded at all time. If the validator's self-delegated stake falls below this limit, their entire staking pool will unbondmoniker="choose a moniker"This will be the name of your validator for easier identificationwebsite="https://functionx.io"This will be the website for delegators or the public to read more about your validatordetails="To infinity and beyond!"You can add some additional details about your validator
If this does not work for you, please check the Common Problem section or get help on the forum. Before you proceed and set your validator up, make sure you do some final checks (ensure your .fxcore path is set correctly). If you are in the root folder:
curl -s 127.0.0.1:26657/status | jq '.result.validator_info.pub_key'cat .fxcore/config/priv_validator_key.json| jq .pub_keyEnsure both these outputs are the same.
fxcored keys parse $(cat .fxcore/config/priv_validator_key.json| jq -r '.address')fxcored tendermint show-addressEnsure the second to the last value from the first command has the same output as the second command before running the following:
fxcored tx staking create-validator \
--chain-id=dhobyghaut \
--gas="auto" \
--gas-adjustment=1.2 \
--gas-prices="5000000000apundiai" \
--from=<_name> \
--amount=500000000000000000000FX \
--pubkey=$(fxcored tendermint show-validator) \
--commission-rate="0.01" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="100000000000000000000" \
--moniker="choose a moniker" \
--website="https://functionx.io" \
--details="To infinity and beyond!" Output:
{"body":{"messages":[{"@type":"/cosmos.staking.v1beta1.MsgCreateValidator","description":{"moniker":"choose a moniker","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.010000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1000000000000000000","delegator_address":"fx1egmy0ncxzuur504qlz9z0ykfa5cqdk0ap5tgxz","validator_address":"fxvaloper1egmy0ncxzuur504qlz9z0ykfa5cqdk0af9khcz","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"JWar8+3FHVppCQWH7S4w27eMhjkyxXqUYmnbo185B3g="},"value":{"denom":"apundiai","amount":"500000000000000000000"}}],"memo":"","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[],"fee":{"amount":[{"denom":"apundiai","amount":"1020264000000000000"}],"gas_limit":"170044","payer":"","granter":""}},"signatures":[]}
confirm transaction before signing and broadcasting [y/N]: Note: Do record the
validator_addressas this is the only time you can see it on the terminal, or else you will have to use the explorer Testnet/Mainnet to obtain thevalidator_address. The explorer option can only be done if the binding is successful.
Hit y and enter! If successful, You will get an object data from the terminal with code = 0 similar to what is shown below.
Output:
{"height":"729953","txhash":"8FB0EDE90AE37D6603D7FD3278018A7897E243F2DEF69F0592FF71BC58B40AE2","codespace":"","code":0,"data":"0A120A106372656174655F76616C696461746F72","raw_log":"[{\"events\":[{\"type\":\"create_validator\",\"attributes\":[{\"key\":\"validator\",\"value\":\"fxvaloper1egmy0ncxzuur504qlz9z0ykfa5cqdk0af9khcz\"},{\"key\":\"amount\",\"value\":\"500000000000000000000\"}]},{\"type\":\"message\",\"attributes\":[{\"key\":\"action\",\"value\":\"create_validator\"},{\"key\":\"module\",\"value\":\"staking\"},{\"key\":\"sender\",\"value\":\"fx1egmy0ncxzuur504qlz9z0ykfa5cqdk0ap5tgxz\"}]}]}]","logs":[{"msg_index":0,"log":"","events":[{"type":"create_validator","attributes":[{"key":"validator","value":"fxvaloper1egmy0ncxzuur504qlz9z0ykfa5cqdk0af9khcz"},{"key":"amount","value":"500000000000000000000"}]},{"type":"message","attributes":[{"key":"action","value":"create_validator"},{"key":"module","value":"staking"},{"key":"sender","value":"fx1egmy0ncxzuur504qlz9z0ykfa5cqdk0ap5tgxz"}]}]}],"info":"","gas_wanted":"170044","gas_used":"155067","tx":null,"timestamp":""}When specifying commission parameters, the
commission-max-change-rateis used to measure % point change over thecommission-rate. E.g. 1% to 2% is a 100% rate increase, but only 1 percentage point.
Min-self-delegationis a stritly positive integer that represents the minimum amount of self-delegated voting power your validator must always have. Amin-self-delegationof100000000000000000000means your validator will never have a self-delegation lower than100$PUNDIAI
You can confirm that you are in the validator set by using a third party explorer for Testnet/Mainnet.
Get validator pubkey
Your fxvalconspub is used to create a new validator by staking tokens (this is the account used by the node consensus). You can find your validator pubkey by running:
fxcored tendermint show-validatorTo check if node is running
ps -ef | grep fxcoredEdit Validator Description
You can edit your validator's public description. This info is to identify your validator, and will be relied on by delegators to decide which validators to stake to. Make sure to provide input for every flag below. If a flag is not included in the command the field will default to '[do-not-modify]'.
The <key_name> specifies which validator you are editing. If you choose to not include certain flags, remember that the --from flag must be included to identify the validator to update.
The --identity can be used as to verify identity with systems like Keybase or UPort. When using with Keybase --identity should be populated with a 16-digit string that is generated with a keybase.io account. It's a cryptographically secure method of verifying your identity across multiple online networks. The Keybase API allows us to retrieve your Keybase avatar. This is how you can add a logo to your validator profile.
There are only a few parameters that can be edited they are listed below:
commission-rate string: The new commission rate percentagedetails string: The validator's (optional) details (default "[do-not-modify]")identity string: The (optional) identity signature (ex. UPort or Keybase) (default "[do-not-modify]")moniker string: The validator's name (default "[do-not-modify]")security-contract string: The validator's (optional) security contact email (default "[do-not-modify]")website string: The validator's (optional) website (default "[do-not-modify]")
Note: The commission-rate value must adhere to the following invariants:
Must be between 0 and the validator's
commission-max-rateMust not exceed the validator's
commission-max-change-ratewhich is maximum % point change rate per day. In other words, a validator can only change its commission once per day and withincommission-max-change-ratebounds.
fxcored tx staking edit-validator \
--new-moniker="choose a moniker" \
--website="https://functionx.io" \
--identity=6A0D65E29A4CBC8E \
--details="To infinity and beyond!" \
--commission-rate="0.10" \
--chain-id=dhobyghaut \
--gas="auto" \
--gas-adjustment=1.2 \
--gas-prices="6000000000000FX" \
--from=<_name>View Validator Description
View the validator's information with this command:
fxcored query staking validator <validator_address>Track Validator Signing Information
In order to keep track of a validator's signatures in the past you can do so by using the signing-info command:
fxcored query slashing signing-info "$(fxcored tendermint show-validator)"Unjail Validator
When a validator is "jailed" for downtime, you must submit an Unjail transaction from the operator account in order to be able to get block proposer rewards again (depends on the zone fee distribution).
fxcored tx slashing unjail --from=<key_name>Confirm Your Validator is Running
Your validator is active if the following command returns anything:
fxcored query tendermint-validator-set | grep "$(fxcored tendermint show-address)"You should now see your validator in one of the Pundi AIFX explorers. You are looking for the bech32 encoded address in the ~/.fxcore/config/priv_validator.json file.
To be in the validator set, you need to have more total voting power than the 100th validator.
Halting Your Validator
When attempting to perform routine maintenance or planning for an upcoming coordinated upgrade, it can be useful to have your validator systematically and gracefully halt. You can achieve this by either setting the halt-height to the height at which you want your node to shutdown or by passing the --halt-height flag to fxcored. The node will shutdown with a zero exit code at that given height after committing the block.
Common Problems
Problem #1: Copy pasting the entire fxcored tx staking create-validator command does not work for me
fxcored tx staking create-validator command does not work for meGet your _pubkey using fxcored tendermint show-validator.
You will have to type out the command as follows:
fxcored tx staking create-validator --chain-id dhobyghaut --gas auto --gas-adjustment 1.2 --gas-prices 6000000000000FX --from <_name> --amount 100000000000000000000000FX pubkey <_pubkey> --moniker "choose a moniker" --commission-rate 0.01 --commission-max-rate 0.20 --commission-max-change-rate 0.01 --min-self-delegation 1000000000000000000 --moniker "choose a moniker" --website "https://functionx.io" --details "To infinity and beyond!"Problem #2: My transaction keeps failing with insufficient fees
insufficient feesExample of the error as shown:
{"height":"0","txhash":"1BF7A7126EF2650AE66DA211D1EE0C41AF0FCA0EEB0F14503A2371A6541F698C","codespace":"sdk","code":13,"data":"","raw_log":"insufficient fees; got: required: 1200000000000000000FX: insufficient fee","logs":[],"info":"","gas_wanted":"200000","gas_used":"0","tx":null,"timestamp":""}You will have to add --fees to your command, to find out how much fees to input you can copy paste from the required that is given to you.
Example of input:
fxcored tx staking edit-validator --from <_name> --fees 1200000000000000000FX --new-moniker "test test"Problem #3: My validator has voting_power: 0
voting_power: 0Your validator has become jailed. Validators get jailed, i.e. get removed from the active validator set, if they do not vote on 500 of the last 10000 blocks, or if they double sign.
If you got jailed for downtime, you can get your voting power back to your validator. First, if fxcored is not running, start it up again:
fxcored startWait for your full node to catch up to the latest block. Then, you can unjail your validator
Lastly, check your validator again to see if your voting power is back.
fxcored statusYou may notice that your voting power is less than it used to be. That's because you got slashed for downtime!
Problem #4: My fxcored crashes because of too many open files
fxcored crashes because of too many open filesThe default number of files Linux can open (per-process) is 1024. fxcored is known to open more than 1024 files. This causes the process to crash. A quick fix is to run ulimit -n 4096 (increase the number of open files allowed) and then restart the process with fxcored start. If you are using systemd or another process manager to launch fxcored this may require some configuration at that level. A sample systemd file to fix this issue is below:
# /etc/systemd/system/fxcored.service
[Unit]
Description=Pundi AIFX Node
After=network.target
[Service]
Type=simple
User=ubuntu
WorkingDirectory=/home/ubuntu
ExecStart=/home/ubuntu/go/bin/fxcored start
Restart=on-failure
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.targetLast updated