Files
pezkuwi-subxt/substrate/frame/child-bounties
Alexander Theißen f3168c3fa0 Add production profile to substrate-wasm-builder (#10747)
* Add production profile to wasm builder

* Fix profile detection

* Apply suggestions from code review

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Replace panic! by println! + exit

* Default to `release` for wasm on debug builds

* Replaced unwrap by expect

* Update all weights

Rerun on the bm2 server.

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* cargo run --quiet --profile=production  --features=runtime-benchmarks --manifest-path=bin/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_contracts --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/contracts/src/weights.rs --template=./.maintain/frame-weight-template.hbs

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Parity Bot <admin@parity.io>
2022-01-31 14:16:26 +00:00
..
2021-12-07 18:40:47 -04:00

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.