forked from darwinia-network/darwinia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
632 additions
and
596 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Treasury Module | ||
|
||
The Treasury module provides a "pot" of funds that can be managed by stakeholders in the | ||
system and a structure for making spending proposals from this pot. | ||
|
||
- `treasury::Trait` | ||
- `Call` | ||
## Overview | ||
|
||
The Treasury Module itself provides the pot to store funds, and a means for stakeholders to | ||
propose, approve, and deny expenditures. The chain will need to provide a method (e.g. | ||
inflation, fees) for collecting funds. | ||
|
||
By way of example, the Council could vote to fund the Treasury with a portion of the block | ||
reward and use the funds to pay developers. | ||
|
||
### Terminology | ||
|
||
- **Proposal:** A suggestion to allocate funds from the pot to a beneficiary. | ||
- **Beneficiary:** An account who will receive the funds from a proposal iff | ||
the proposal is approved. | ||
- **Deposit:** Funds that a proposer must lock when making a proposal. The | ||
deposit will be returned or slashed if the proposal is approved or rejected | ||
respectively. | ||
- **Pot:** Unspent funds accumulated by the treasury module. | ||
## Interface | ||
|
||
### Dispatchable Functions | ||
|
||
- `propose_spend` - Make a spending proposal and stake the required deposit. | ||
- `set_pot` - Set the spendable balance of funds. | ||
- `configure` - Configure the module's proposal requirements. | ||
- `reject_proposal` - Reject a proposal, slashing the deposit. | ||
- `approve_proposal` - Accept the proposal, returning the deposit. | ||
## GenesisConfig | ||
|
||
The Treasury module depends on the `GenesisConfig`. |
Oops, something went wrong.