Name | Lookup | Parameters | |
|---|---|---|---|
| propose | 0a00 | 2 | |
| second | 0a01 | 2 | |
| vote | 0a02 | 2 | |
| emergency_cancel | 0a03 | 1 | |
| external_propose | 0a04 | 1 | |
| external_propose_majority | 0a05 | 1 | |
| external_propose_default | 0a06 | 1 | |
| fast_track | 0a07 | 3 | |
| veto_external | 0a08 | 1 | |
| cancel_referendum | 0a09 | 1 | |
| cancel_queued | 0a0a | 1 | |
| delegate | 0a0b | 3 | |
| undelegate | 0a0c | - | |
| clear_public_proposals | 0a0d | - | |
| note_preimage | 0a0e | 1 | |
| note_preimage_operational | 0a0f | 1 | |
| note_imminent_preimage | 0a10 | 1 | |
| note_imminent_preimage_operational | 0a11 | 1 | |
| reap_preimage | 0a12 | 2 | |
| unlock | 0a13 | 1 | |
| remove_vote | 0a14 | 1 | |
| remove_other_vote | 0a15 | 2 | |
| enact_proposal | 0a16 | 2 |
Name | Lookup | Attributes | |
|---|---|---|---|
| Proposed | 0a00 | ||
| Tabled | 0a01 | ||
| ExternalTabled | 0a02 | ||
| Started | 0a03 | ||
| Passed | 0a04 | ||
| NotPassed | 0a05 | ||
| Cancelled | 0a06 | ||
| Executed | 0a07 | ||
| Delegated | 0a08 | ||
| Undelegated | 0a09 | ||
| Vetoed | 0a0a | ||
| PreimageNoted | 0a0b | ||
| PreimageUsed | 0a0c | ||
| PreimageInvalid | 0a0d | ||
| PreimageMissing | 0a0e | ||
| PreimageReaped | 0a0f | ||
| Unlocked | 0a10 |
Name | Type | |
|---|---|---|
| PublicPropCount | {"origin":"PlainType","plain_type":"PropIndex"} | |
| PublicProps | {"origin":"PlainType","plain_type":"Vec<(PropIndex, Hash, AccountId)>"} | |
| DepositOf | {"origin":"MapType","map_type":{"key":"PropIndex","hasher":"Twox64Concat","value":"(Vec<AccountId>, BalanceOf)","isLinked":false}} | |
| Preimages | {"origin":"MapType","map_type":{"key":"Hash","hasher":"Identity","value":"PreimageStatus<AccountId, BalanceOf, BlockNumber>","isLinked":false}} | |
| ReferendumCount | {"origin":"PlainType","plain_type":"ReferendumIndex"} | |
| LowestUnbaked | {"origin":"PlainType","plain_type":"ReferendumIndex"} | |
| ReferendumInfoOf | {"origin":"MapType","map_type":{"key":"ReferendumIndex","hasher":"Twox64Concat","value":"ReferendumInfo<BlockNumber, Hash, BalanceOf>","isLinked":false}} | |
| VotingOf | {"origin":"MapType","map_type":{"key":"AccountId","hasher":"Twox64Concat","value":"Voting<BalanceOf, AccountId, BlockNumber>","isLinked":false}} | |
| Locks | {"origin":"MapType","map_type":{"key":"AccountId","hasher":"Twox64Concat","value":"BlockNumber","isLinked":false}} | |
| LastTabledWasExternal | {"origin":"PlainType","plain_type":"bool"} | |
| NextExternal | {"origin":"PlainType","plain_type":"(Hash, VoteThreshold)"} | |
| Blacklist | {"origin":"MapType","map_type":{"key":"Hash","hasher":"Identity","value":"(BlockNumber, Vec<AccountId>)","isLinked":false}} | |
| Cancellations | {"origin":"MapType","map_type":{"key":"Hash","hasher":"Identity","value":"bool","isLinked":false}} | |
| StorageVersion | {"origin":"PlainType","plain_type":"Releases"} |
Name | Type | Value | |
|---|---|---|---|
| EnactmentPeriod | BlockNumber | 0x00c20100 | |
| LaunchPeriod | BlockNumber | 0xc0890100 | |
| VotingPeriod | BlockNumber | 0xc0890100 | |
| MinimumDeposit | BalanceOf | 0x0000c16ff28623000000000000000000 | |
| FastTrackVotingPeriod | BlockNumber | 0xc0a80000 | |
| CooloffPeriod | BlockNumber | 0xc0890100 | |
| PreimageByteDeposit | BalanceOf | 0x00e40b54020000000000000000000000 | |
| MaxVotes | u32 | 0x64000000 |
Name | Docs |
|---|---|
| ValueLow | Value too low |
| ProposalMissing | Proposal does not exist |
| BadIndex | Unknown index |
| AlreadyCanceled | Cannot cancel the same proposal twice |
| DuplicateProposal | Proposal already made |
| ProposalBlacklisted | Proposal still blacklisted |
| NotSimpleMajority | Next external proposal not simple majority |
| InvalidHash | Invalid hash |
| NoProposal | No external proposal |
| AlreadyVetoed | Identity may not veto a proposal twice |
| NotDelegated | Not delegated |
| DuplicatePreimage | Preimage already noted |
| NotImminent | Not imminent |
| TooEarly | Too early |
| Imminent | Imminent |
| PreimageMissing | Preimage not found |
| ReferendumInvalid | Vote given for invalid referendum |
| PreimageInvalid | Invalid preimage |
| NoneWaiting | No proposals waiting |
| NotLocked | The target account does not have a lock. |
| NotExpired | The lock on the account to be unlocked has not yet expired. |
| NotVoter | The given account did not vote on the referendum. |
| NoPermission | The actor has no permission to conduct the action. |
| AlreadyDelegating | The account is already delegating. |
| Overflow | An unexpected integer overflow occurred. |
| Underflow | An unexpected integer underflow occurred. |
| InsufficientFunds | Too high a balance was provided that the account cannot afford. |
| NotDelegating | The account is not currently delegating. |
| VotesExist | The account currently has votes attached to it and the operation cannot succeed until these are removed, either through `unvote` or `reap_vote`. |
| InstantNotAllowed | The instant referendum origin is currently disallowed. |
| Nonsense | Delegation to oneself makes no sense. |
| WrongUpperBound | Invalid upper bound. |
| MaxVotesReached | Maximum number of votes reached. |