Name | Lookup | Parameters | |
|---|---|---|---|
| propose_spend | 1100 | 2 | |
| reject_proposal | 1101 | 1 | |
| approve_proposal | 1102 | 1 | |
| report_awesome | 1103 | 2 | |
| retract_tip | 1104 | 1 | |
| tip_new | 1105 | 3 | |
| tip | 1106 | 2 | |
| close_tip | 1107 | 1 | |
| propose_bounty | 1108 | 2 | |
| approve_bounty | 1109 | 1 | |
| propose_curator | 110a | 3 | |
| unassign_curator | 110b | 1 | |
| accept_curator | 110c | 1 | |
| award_bounty | 110d | 2 | |
| claim_bounty | 110e | 1 | |
| close_bounty | 110f | 1 | |
| extend_bounty_expiry | 1110 | 2 |
Name | Lookup | Attributes | |
|---|---|---|---|
| Proposed | 1100 | ||
| Spending | 1101 | ||
| Awarded | 1102 | ||
| Rejected | 1103 | ||
| Burnt | 1104 | ||
| Rollover | 1105 | ||
| Deposit | 1106 | ||
| NewTip | 1107 | ||
| TipClosing | 1108 | ||
| TipClosed | 1109 | ||
| TipRetracted | 110a | ||
| BountyProposed | 110b | ||
| BountyRejected | 110c | ||
| BountyBecameActive | 110d | ||
| BountyAwarded | 110e | ||
| BountyClaimed | 110f | ||
| BountyCanceled | 1110 | ||
| BountyExtended | 1111 |
Name | Type | |
|---|---|---|
| ProposalCount | {"origin":"PlainType","plain_type":"ProposalIndex"} | |
| Proposals | {"origin":"MapType","map_type":{"key":"ProposalIndex","hasher":"Twox64Concat","value":"Proposal<AccountId, BalanceOf>","isLinked":false}} | |
| Approvals | {"origin":"PlainType","plain_type":"Vec<ProposalIndex>"} | |
| Tips | {"origin":"MapType","map_type":{"key":"Hash","hasher":"Twox64Concat","value":"OpenTip<AccountId, BalanceOf, BlockNumber, Hash>","isLinked":false}} | |
| Reasons | {"origin":"MapType","map_type":{"key":"Hash","hasher":"Identity","value":"Bytes","isLinked":false}} | |
| BountyCount | {"origin":"PlainType","plain_type":"BountyIndex"} | |
| Bounties | {"origin":"MapType","map_type":{"key":"BountyIndex","hasher":"Twox64Concat","value":"Bounty<AccountId, BalanceOf, BlockNumber>","isLinked":false}} | |
| BountyDescriptions | {"origin":"MapType","map_type":{"key":"BountyIndex","hasher":"Twox64Concat","value":"Bytes","isLinked":false}} | |
| BountyApprovals | {"origin":"PlainType","plain_type":"Vec<BountyIndex>"} |
Name | Type | Value | |
|---|---|---|---|
| ProposalBond | Permill | 0x50c30000 | |
| ProposalBondMinimum | BalanceOf | 0x0000c16ff28623000000000000000000 | |
| SpendPeriod | BlockNumber | 0x00460500 | |
| Burn | Permill | 0x00000000 | |
| TipCountdown | BlockNumber | 0x40380000 | |
| TipFindersFee | Percent | 0x14 | |
| TipReportDepositBase | BalanceOf | 0x0010a5d4e80000000000000000000000 | |
| DataDepositPerByte | BalanceOf | 0x00e40b54020000000000000000000000 | |
| ModuleId | ModuleId | 0x70792f7472737279 | |
| BountyDepositBase | BalanceOf | 0x0010a5d4e80000000000000000000000 | |
| BountyDepositPayoutDelay | BlockNumber | 0x40380000 | |
| BountyCuratorDeposit | Permill | 0x20a10700 | |
| BountyValueMinimum | BalanceOf | 0x005039278c0400000000000000000000 | |
| MaximumReasonLength | u32 | 0x00400000 |
Name | Docs |
|---|---|
| InsufficientProposersBalance | Proposer's balance is too low. |
| InvalidIndex | No proposal or bounty at that index. |
| ReasonTooBig | The reason given is just too big. |
| AlreadyKnown | The tip was already found/started. |
| UnknownTip | The tip hash is unknown. |
| NotFinder | The account attempting to retract the tip is not the finder of the tip. |
| StillOpen | The tip cannot be claimed/closed because there are not enough tippers yet. |
| Premature | The tip cannot be claimed/closed because it's still in the countdown period. |
| UnexpectedStatus | The bounty status is unexpected. |
| RequireCurator | Require bounty curator. |
| InvalidValue | Invalid bounty value. |
| InvalidFee | Invalid bounty fee. |
| PendingPayout | A bounty payout is pending. To cancel the bounty, you must unassign and slash the curator. |