Files
pezkuwi-subxt/substrate/frame/child-bounties/README.md
T
Gautam Dhameja 752e050cf4 Add child-bounties pallet. (#10309)
* Extract child-bounties as a separate pallet.

* Initial tests added.

* More tests.

* Tests complete. Fixed curator fee issue.

* Fixed comments.

* Added benchmarks for child-bounties pallet.

* Added weights.

* Fixed formatting.

* Fixed comments.

* Re-run benchmarks for bounties pallet.

* Make cargo fmt happy again

* add max encoded len

* use event structs

* fmt

* fix compile

* Addressed review comments.

* Use config type instead of const in benchmarking.

* Addressed more review comments.

* Use ensure_can_withdraw instead of just checking min balance.

* fmt.

* Introduce ChildBountyCuratorDepositBase to avoid zero curator deposits for child bounties.

* Fix unassign curator logic for child-bounties.

* Added more tests for unassign curator.

* Reduce bounty description max length in node runtime.

* Updated weights for child bounties pallet.

* reduce indentation of unassign_curator

* more indentation reduction

* deduplicate slashing arms

* reintroduce ensure check

* add assertion to check that bad unassign origin fails

* formatting

* Updated comments.

Co-authored-by: Ricardo Rius <ricardo@parity.io>
Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
Co-authored-by: Alexander Popiak <alexander.popiak@parity.io>
2021-12-07 18:40:47 -04:00

1.3 KiB

Child Bounties Pallet (pallet-child-bounties)

Child Bounty

NOTE: This pallet is tightly coupled with pallet-treasury and pallet-bounties.

With child bounties, a large bounty proposal can be divided into smaller chunks, for parallel execution, and for efficient governance and tracking of spent funds.

A child-bounty is a smaller piece of work, extracted from a parent bounty. A curator is assigned after the child-bounty is created by the parent bounty curator, to be delegated with the responsibility of assigning a payout address once the specified set of tasks is completed.

Interface

Dispatchable Functions

  • add_child_bounty - Add a child-bounty for a parent-bounty to for dividing the work in smaller tasks.
  • propose_curator - Assign an account to a child-bounty as candidate curator.
  • accept_curator - Accept a child-bounty assignment from the parent-bounty curator, setting a curator deposit.
  • award_child_bounty - Close and pay out the specified amount for the completed work.
  • claim_child_bounty - Claim a specific child-bounty amount from the payout address.
  • unassign_curator - Unassign an accepted curator from a specific child-bounty.
  • close_child_bounty - Cancel the child-bounty for a specific treasury amount and close the bounty.