Setting Up a Validator for PundiX Chain

Before setting up your validator node, make sure you've already gone through the Full Node Setup guide either with Binaries or with Docker.

Information on how to join the mainnet (genesis.json file and seeds) is held in our PundiX CLI Commands repo.

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 PundiX 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.

pundixd keys add <_name> --algo secp256k1 --coin-type 118 --ledger --index 0
# for example
pundixd keys add v1 --algo secp256k1 --coin-type 118 --ledger --index 5

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 _name will be used again later.

It returns something like this when adding new account and mnemonic is stored in ledger:

{
    "name":"v1",
    "type":"ledger",
    "address":"px1t2sh0a6u36udu9gxs48uc83dmyk57590j9ytjj",
    "pubkey":"{\"@type\":\"/cosmos.crypto.secp256k1.PubKey\",\"key\":\"AylVPwWK1KQ6svnp0d5zH1swkN8jHnqGdAwCCWZYs2bg\"}",
    "algo":"secp256k1"
}

if you already have an existing f(x)wallet and would like to import it you may run the following command and follow the prompts:

pundixd keys add <account_name> --recover
# for example
pundixd keys add v1 --recover

Bind 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/status or pundixd status to 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 PUNDIX tokens before creating a validator. For Testnet version, you may obtain PUNDIX tokens via PUNDIX Faucet. For more information on how to obtain PUNDIX tokens on Testnet. A minimum of 100 PUNDIX is needed to create an active validator. You will need more than 100 testnet PUNDIX in your account because some is needed to pay for the creation of your validator. PUNDIX has 18 decimal points.

Great! You can now bind the node consensus and validator's token holding account.

The command to run will be pundixd tx staking create-validator, copy the entire command below, after editing the required fields:

  • chain-id=payalebar is set as our pundix testnet chain ie payalebar. for mainnet, set the chain-id=PUNDIX.

  • gas="auto" automatically assesses the gas used for this create-validator transaction.

  • gas-adjustment=1.5 there will be a 20% buffer added to the automatically assessed gas amount.

  • gas-prices="0.000002PUNDIX" 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 validator.

  • amount=100PUNDIX this is the amount you will be self-delegating for your validator.

  • pubkey=$(pundixd tendermint show-validator) this is your pubkey of your validator.

  • commission-rate="0.01" this is the commission you will be charging as a validator.

  • commission-max-rate="0.2" the maximum commission rate which this validator can charge. This parameter cannot be changed after create-validator is processed.

  • commission-max-change-rate="0.01" the maximum daily increase of the validator commission. This parameter cannot be changed after create-validator is processed.

  • min-self-delegation="10000000000000000000000" minimum amount of PUNDIX the validator needs to have bonded at all time. If the validator's self-delegated stake falls below this limit, their entire staking pool will unbond.

  • moniker="choose a moniker" this will be the name of your validator for easier identification.

  • website="https://pundix.com" this will be the website for delegators or the public to read more about your validator

  • details="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 .pundix 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'
# or
cat .pundix/config/priv_validator_key.json| jq .pub_key

Ensure both these outputs are the same.

pundixd keys parse $(cat .pundix/config/priv_validator_key.json| jq -r '.address')
# or
pundixd tendermint show-address

Ensure the second to the last value from the first command has the same output as the second command before running the following:

pundixd tx staking create-validator \
  --chain-id=PUNDIX \
  --from=<_name> \
  --amount=500PUNDIX \
  --pubkey=$(pundixd tendermint show-validator) \
  --commission-rate="0.01" \
  --commission-max-rate="0.20" \
  --commission-max-change"0.01" \
  --min-self-delegation="100" \
  --moniker="choose a moniker" \
  --website="https://pundix.com" \
  --details="To infinity and beyond!" 

# for example
pundixd tx staking create-validator \
  --chain-id=PUNDIX \
  --from=a2 \
  --amount=100PUNDIX \
  --pubkey='{"@type":"/cosmos.crypto.ed25519.PubKey","key":"c9K95ze0trEtE1KCZ1smjhJQdVqEB8+7Ma6ht64bhDg="}' \
  --commission-rate="0.01" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="100" \
  --moniker="choose a moniker" \
  --website="https://pundix.com" \
  --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":"1","delegator_address":"px1egmy0ncxzuur504qlz9z0ykfa5cqdk0ap5tgxz","validator_address":"pxvaloper1egmy0ncxzuur504qlz9z0ykfa5cqdk0af9khcz","pubkey":{"@type":"/cosmos.crypto.ed25519.PubKey","key":"c9K95ze0trEtE1KCZ1smjhJQdVqEB8+7Ma6ht64bhDg="},"value":{"denom":"PUNDIX","amount":"500"}}],"memo":"","timeout_height":"0","extension_options":[],"non_critical_extension_options":[]},"auth_info":{"signer_infos":[],"fee":{"amount":[{"denom":"PUNDIX","amount":"1.020264"}],"gas_limit":"170044","payer":"","granter":""}},"signatures":[]}

confirm transaction before signing and broadcasting [y/N]: 

Do record the validator_address as this is the only time you can see it on the terminal, or else you will have to use the explorer Mainnet/Testnet to obtain the validator_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\":\"pxvaloper1egmy0ncxzuur504qlz9z0ykfa5cqdk0af9khcz\"},{\"key\":\"amount\",\"value\":\"500\"}]},{\"type\":\"message\",\"attributes\":[{\"key\":\"action\",\"value\":\"create_validator\"},{\"key\":\"module\",\"value\":\"staking\"},{\"key\":\"sender\",\"value\":\"px1egmy0ncxzuur504qlz9z0ykfa5cqdk0ap5tgxz\"}]}]}]","logs":[{"msg_index":0,"log":"","events":[{"type":"create_validator","attributes":[{"key":"validator","value":"pxvaloper1egmy0ncxzuur504qlz9z0ykfa5cqdk0af9khcz"},{"key":"amount","value":"500"}]},{"type":"message","attributes":[{"key":"action","value":"create_validator"},{"key":"module","value":"staking"},{"key":"sender","value":"px1egmy0ncxzuur504qlz9z0ykfa5cqdk0ap5tgxz"}]}]}],"info":"","gas_wanted":"170044","gas_used":"155067","tx":null,"timestamp":""}

When specifying commission parameters, the commission-max-change-rate is used to measure % point change over the commission-rate. E.g. 1% to 2% is a 100% rate increase, but only 1 percentage point.

min-self-delegation is a stritly positive integer that represents the minimum amount of self-delegated voting power your validator must always have. A min-self-delegation of 100000000000000000000 means your validator will never have a self-delegation lower than 100 PUNDIX

You can confirm that you are in the validator set by using a third party explorer for Mainnet/Testnet.

Get validator pubkey

Your pxvalconspub 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:

pundixd tendermint show-validator

This command is very important for recovery of your validator in the future.

To check if node is running

ps -ef | grep pundixd

Edit 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 empty (--moniker defaults to the machine name) if the field has never been set or remain the same if it has been set in the past.

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 percentage

  • details 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-rate

  • Must not exceed the validator's commission-max-change-rate which is maximum % point change rate per day. In other words, a validator can only change its commission once per day and within commission-max-change-rate bounds.

pundixd tx staking edit-validator \
  --moniker="choose a moniker" \
  --website="https://pundix.com" \
  --identity=<keybase> \
  --details="To infinity and beyond!" \
  --commission-rate="0.10" \
  --chain-id=PUNDIX \
  --from=<_name>

View Validator Description

View the validator's information with this command:

pundixd query staking validator <validator_address>
# for example
pundixd query staking validator pxvaloper1egmy0ncxzuur504qlz9z0ykfa5cqdk0af9khcz

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:

pundixd query slashing signing-info "$(pundixd 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).

pundixd tx slashing unjail --from=<key_name>

Confirm Your Validator is Running

Your validator is active if the following command returns anything:

pundixd query tendermint-validator-set | grep "$(pundixd tendermint show-address)"

You should now see your validator in one of the PundiX explorers. You are looking for the bech32 encoded address in the ~/.pundix/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 pundixd. 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 pundixd tx staking create-validator command does not work for me

Get your _pubkey using pundixd tendermint show-validator.

You will have to type out the command as follows:

pundixd tx staking create-validator \
--chain-id PUNDIX \
--from <_name> \
--amount 100PUNDIX \
--pubkey <_pubkey> \
--moniker "choose a moniker" \
--commission-rate 0.01 \
--commission-max-rate 0.20 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--moniker "choose a moniker" \
--website "https://pundix.com" \
--details "To infinity and beyond!"

Problem #2: My transaction keeps failing with insufficient fees

Example of the error as shown:

{"height":"0","txhash":"1BF7A7126EF2650AE66DA211D1EE0C41AF0FCA0EEB0F14503A2371A6541F698C","codespace":"sdk","code":13,"data":"","raw_log":"insufficient fees; got:  required: 1.2PUNDIX: 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:

pundixd tx staking edit-validator --from <_name> --fees="1PUNDIX" --moniker "test test" --gas-prices=""

Problem #3: My validator has voting_power: 0

Your validator has become jailed. Validators get jailed, for example 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 pundixd is not running, start it up again:

pundixd start

Wait 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.

pundixd status

You may notice that your voting power is less than it used to be. That's because you got slashed for downtime!

Problem #4: My pundixd crashes because of too many open files

The default number of files Linux can open (per-process) is 1024. pundixd 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 pundixd start. If you are using systemd or another process manager to launch pundixd this may require some configuration at that level. A sample systemd file to fix this issue is below:

# /etc/systemd/system/pundixd.service
[Unit]
Description=PundiX Node
After=network.target

[Service]
Type=simple
User=ubuntu
WorkingDirectory=/home/ubuntu
ExecStart=/home/ubuntu/go/bin/pundixd start
Restart=on-failure
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target

Last updated