Delegated Staking
This section delivers step by step instructions for staking $EWT by delegating to a collator on EWX, via the Polkadot.js explorer “Extrinsics” tab.
Anyone can delegate to a collator candidate by staking at or above the minimum delegated stake threshold (MinNominationPerCollator)
currently at 1 $EWT.
A delegator can stake with multiple collators, but can only choose one collator per staking action.
Prerequisites
A funded EWX account with enough $EWT to cover your stake plus fees (keep a small buffer for future actions).
Polkadot.js extension, browser wallets (SubWallet, Nova Wallet etc) installed and your account added (or Ledger/Trezor via polkadot.js if you use hardware).
Becoming a Delegator
Open Polkadot.js Apps connected to EWX
Open Polkadot JS App and navigate to EWX, or click here to open the URL with the public EWX endpoint.
In the Polkadot JS App go to Developer → Extrinsics → Submission.
Click Accounts → Accounts and confirm your account appears and shows your EWT balance.
Choose a Collator
Go to Developer → Chain State
Select the staking pallet, parachainStaking, from the “Select State Query” field
Then in the adjacent field select: candidateInfo(AccountId)
Alternatively, select candidatePool to get a quick summary of the collator accounts and their total stake.
Toggle “Include Option” off in order to view all active collator candidates
Click the + Icon to return the following for each collator:
Collator Account Address
Self Stake (bond)
Number of nominations to that collator (Note: it states nominationCount but it actually represents candidateNominationCount)
Total Stake (self stake + total delegated stake) (totalCounted)
Amount of stake delegated from the lowest ranked nominator (lowestTopNominationAmount)
Amount of stake delegated from the highest of the next in line delegators, not actively delegating (highestBottomNominationAmount)
Liveness Status (Active or Inactive)
Make sure to note down the address of the collator you wish to nominate and their nominationCount as this is required for delegating stake in the next section.
You will also need to know how many collators you have nominated. If you do not know this query the following:
parachainStaking → nominatorState(AccountId)
Select your own account from the AccountId field on the next line (ensure “Include Option” is toggled on)
Click the “+” Icon
Note the number of unique nominations.

Delegate (Nominate) Stake via Extrinsic
Go to Developer → Extrinsics
Select parachainStaking extrinsic
Choose the
nominate(candidate, amount, candidateNominationCount, nominationCount)
callIn the input fields, enter:
The collator candidate’s address
The amount of EWT you wish to stake in Wei (1 EWT = 1 × 10^18 wei = 1000000000000000000)
Input candidateNominationCount (see Section “2) f)” above on how to find this)
Input nominationCount (See Section “2) h)” above on how to find this)
If this is your first stake delegation, put 0
See FAQ 1. on why iii) & iv) are required.
Click Submit Transaction → Sign with your wallet
Verify: You can verify your stake delegation by:
going to Network → Explorer → Recent Events;
or by querying nominatorState again for your account on the Chain State;
or by going to Accounts tab → Accounts, and querying your account.

Adjust Your Delegated Stake
Delegators can increase or decrease their stake via the Developer → Extrinsics tab.
Increasing stake
Go to Developer → Extrinsics
Select your desired account
Select parachainStaking → bondExtra
Fill the input fields as follows:
Candidate: AccountId
: Enter the account of the collator you wish to increase your delegationMore (balanceOf)
: Enter the amount of EWT in Wei you wish to increase your stake position by (1 EWT = 1 × 10^18 wei = 1000000000000000000)Submit Transaction → Sign with your wallet
Decreasing stake
Go to Developer → Extrinsics
Select your desired account
Select parachainStaking → scheduleNominatorUnbond
Fill the input fields as follows:
Candidate
: Enter the account of the collator you wish to decrease your delegationLess (balanceOf)
: Enter the amount of EWT in Wei you wish to decrease your stake position by (1 EWT = 1 × 10^18 wei = 1000000000000000000)Submit Transaction → Sign with your wallet
The current unbond delay is set to 2 eras which is ~ 2 days
After the delay call executeNominationRequest(nominator, candidate) to finalize the reduction and free the tokens.
Nominator is your account address, candidate is the collator’s.
Unstaking
We have covered how to decrease your stake for a particular collator in “Adjust Your Delegated Stake: 2)”. This section will cover how to unbond your entire stake delegation with a particular collator, or unbond completely unbond from all collators.
Stop delegating to a specific collator
Go to Developer → Extrinsics → parachainStaking
Select the call: scheduleRevokeNomination(collator)
Input the collator’s address in the collator:AccountId field
Submit Transaction → Sign with your wallet
Then, after waiting the unbond delay (2 eras), call:
executeNominationRequest(nominator, candidate)
In the nominator field, select your account
In the candidate field, select the collator’s account.
Stop delegating to all collators (unstake all)
Go to Developer → Extrinsics → parachainStaking
Select the call: scheduleLeaveNominators()
Submit Transaction → Sign with your wallet
Then, after waiting the unbond delay (2 eras), call:
executeLeaveNominators(nominator, nominationCount)
In the nominator field, select your account
In the nominationCount field, put the number of nominations from your account. See “Become a Collator 2) f) iii)” on how to retrieve your nominationCount
If during the unbonding delay period you decide to cancel the request, call:
cancelLeaveNominators()
FAQs
Why is candidateNominationCount and nominationCount are required to delegate stake?
Polkadot/Substrate fees are based on execution weight, which depends on how many items the call must touch. Supplying candidateNominationCount
(how many delegators the candidate already has), and nominationCount (how many candidates you already delegate to) lets the runtime estimate weight accurately instead of charging a worst-case amount and refunding later. In short: these two numbers are hints for precise fee/weight calculation.
What are
topNominations
andbottomNominations
? How many delegators per collator contribute to the total stake and receive staking rewards?
The top delegators per collator candidate (topNominations) receive a share of staking rewards; currently the top 300 delegators per collator are included in the total staking contribution and receive staking rewards.
The pallet also tracks and stores the “next in line” delegators, just outside of the top 300 (currently tracks the next 20). These are called bottomNominations, and help to determine the additional stake required to break into the top nominator set for each collator candidate.
How are staking rewards distributed?
There are two types of rewards for staking: rewards from transaction fees which are paid out at the end of every era, and staking rewards from growth. Staking rewards from growth are paid at the end of each growth period (currently every 28 eras). For each collator, the reward allocated to that collator are distributed among the collator and its delegators in that collator’s topNominations set pro rata, i.e., each delegator receives a fraction equal to their staked amount divided by the sum of all counted total stake for that collator at the snapshot.
Last updated