subscan
Runtime Modules / ParachainStaking
Spec Version:
Events
Name
Lookup
Attributes
NewRound1700["BlockNumber","SessionIndex"]
EnteredTopCandidates1701["AccountId"]
LeftTopCandidates1702["AccountId"]
JoinedCollatorCandidates1703["AccountId","BalanceOf"]
CollatorStakedMore1704["AccountId","BalanceOf","BalanceOf"]
CollatorStakedLess1705["AccountId","BalanceOf","BalanceOf"]
CollatorScheduledExit1706["SessionIndex","AccountId","SessionIndex"]
CollatorCanceledExit1707["AccountId"]
CandidateLeft1708["AccountId","BalanceOf"]
CollatorRemoved1709["AccountId","BalanceOf"]
MaxCandidateStakeChanged170a["BalanceOf"]
DelegatorStakedMore170b["AccountId","AccountId","BalanceOf","BalanceOf"]
DelegatorStakedLess170c["AccountId","AccountId","BalanceOf","BalanceOf"]
DelegatorLeft170d["AccountId","BalanceOf"]
Delegation170e["AccountId","BalanceOf","AccountId","BalanceOf"]
DelegationReplaced170f["AccountId","BalanceOf","AccountId","BalanceOf","AccountId","BalanceOf"]
DelegatorLeftCollator1710["AccountId","AccountId","BalanceOf","BalanceOf"]
Rewarded1711["AccountId","BalanceOf"]
MaxSelectedCandidatesSet1712["u32","u32"]
BlocksPerRoundSet1713["SessionIndex","BlockNumber","BlockNumber","BlockNumber"]
Storage Functions
Name
Type
MaxSelectedCandidates{"origin":"PlainType","plain_type":"U32","PlainTypeValue":4}
Round{"origin":"PlainType","plain_type":"parachain_staking:types:RoundInfo","PlainTypeValue":348}
LastDelegation{"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["AccountId"],"value":"parachain_staking:types:DelegationCounter","keys_id":0,"value_id":349}}
DelegatorState{"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["AccountId"],"value":"parachain_staking:types:Delegator","keys_id":0,"value_id":350}}
CandidatePool{"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["AccountId"],"value":"parachain_staking:types:Candidate","keys_id":0,"value_id":355}}
CounterForCandidatePool{"origin":"PlainType","plain_type":"U32","PlainTypeValue":4}
TotalCollatorStake{"origin":"PlainType","plain_type":"parachain_staking:types:TotalStake","PlainTypeValue":359}
TopCandidates{"origin":"PlainType","plain_type":"Vec<parachain_staking:types:Stake>","PlainTypeValue":360}
Unstaking{"origin":"Map","n_map_type":{"hashers":["Twox64Concat"],"key_vec":["AccountId"],"value":"Vec<Tuple:U32U128>","keys_id":0,"value_id":362}}
MaxCollatorCandidateStake{"origin":"PlainType","plain_type":"U128","PlainTypeValue":6}
ForceNewRound{"origin":"PlainType","plain_type":"Bool","PlainTypeValue":43}
Constants
Name
Type
Value
MinBlocksPerRoundU3205000000
DefaultBlocksPerRoundU320a000000
StakeDurationU3223000000
ExitQueueDelayU3202000000
MinCollatorsU3204000000
MinRequiredCollatorsU3204000000
MaxDelegationsPerRoundU3201000000
MaxDelegatorsPerCollatorU3219000000
MaxCollatorsPerDelegatorU3201000000
MaxTopCandidatesU3210000000
MinCollatorStakeU128007d0000000000000000000000000000
MinCollatorCandidateStakeU128007d0000000000000000000000000000
MinDelegationU128204e0000000000000000000000000000
MinDelegatorStakeU128204e0000000000000000000000000000
MaxUnstakeRequestsU320a000000
PotId[U8; 8]506f745374616b65
Error Types
Name
Docs
DelegatorNotFoundThe account is not part of the delegators set.
CandidateNotFoundThe account is not part of the collator candidates set.
DelegatorExistsThe account is already part of the delegators set.
CandidateExistsThe account is already part of the collator candidates set.
ValStakeZeroThe account tried to stake more or less with amount zero.
ValStakeBelowMinThe account has not staked enough funds to be added to the collatorcandidates set.
ValStakeAboveMaxThe account has already staked the maximum amount of funds possible.
NomStakeBelowMinThe account has not staked enough funds to become a delegator.
DelegationBelowMinThe account has not staked enough funds to delegate a collatorcandidate.
AlreadyLeavingThe collator candidate has already trigger the process to leave theset of collator candidates.
NotLeavingThe collator candidate wanted to execute the exit but has notrequested to leave before by calling `init_leave_candidates`.
CannotLeaveYetThe collator tried to leave before waiting at least for`ExitQueueDelay` many rounds.
CannotJoinBeforeUnlockingThe account has a full list of unstaking requests and needs tounlock at least one of these before being able to join (again).NOTE: Can only happen if the account was a candidate ordelegator before and either got kicked or exited voluntarily.
AlreadyDelegatingThe account is already delegating the collator candidate.
NotYetDelegatingThe account has not delegated any collator candidate yet, hence itis not in the set of delegators.
DelegationsPerRoundExceededThe delegator has exceeded the number of delegations per round whichis equal to MaxDelegatorsPerCollator.This protects against attacks in which a delegator can re-delegatefrom a collator who has already authored a block, to another onewhich has not in this round.
TooManyDelegatorsThe collator candidate has already reached the maximum number ofdelegators.This error is generated in case a new delegation request does notstake enough funds to replace some other existing delegation.
TooFewCollatorCandidatesThe set of collator candidates would fall below the required minimumif the collator left.
CannotStakeIfLeavingThe collator candidate is in the process of leaving the set ofcandidates and cannot perform any other actions in the meantime.
CannotDelegateIfLeavingThe collator candidate is in the process of leaving the set ofcandidates and thus cannot be delegated to.
MaxCollatorsPerDelegatorExceededThe delegator has already delegated the maximum number of candidatesallowed.
AlreadyDelegatedCollatorThe delegator has already previously delegated the collatorcandidate.
DelegationNotFoundThe given delegation does not exist in the set of delegations.
UnderflowThe collator delegate or the delegator is trying to un-stake morefunds that are currently staked.
CannotSetAboveMaxThe number of selected candidates per staking round isabove the maximum value allowed.
CannotSetBelowMinThe number of selected candidates per staking round isbelow the minimum value allowed.
InvalidScheduleAn invalid reward rate configuration is trying to be set.
NoMoreUnstakingThe staking reward being unlocked does not exist.Max unlocking requests reached.
StakeNotFoundProvided staked value is zero. Should never be thrown.
UnstakingIsEmptyCannot unlock when Unstaked is empty.