A token vesting plan for contributors. Includes scheduling, cliff vesting, and third-party revocation.
dss-vest
allows DAOs to create a participant vesting plan via token mints or surplus withdrawals.
$ dapp update
$ make deploy-suckable
or
$ make deploy-mintable gem=0xbeef...
or
$ make deploy-transferrable owner=0xdead... gem=0xbeef...
Pass the address of the vesting token to the constructor on deploy. This contract must be given authority to mint()
tokens in the vesting contract.
After deployment, governance must set the cap
value using the file
function.
Pass the MCD chainlog address to the constructor to set up the contract for scheduled Dai or USDS suck
s. Note: this contract must be given authority to suck()
Dai from the vat
's surplus buffer.
To choose between Dai and USDS, supply the relevant join (MCD_JOIN_DAI
or USDS_JOIN
) as the address _join
constructor parameter.
A vat.live
check is introduced to disable vest()
in the event of Emergency Shutdown (aka Global Settlement).
After deployment, governance must set the cap
value using the file
function.
Pass the authorized sender address and the address of the token contract to the constructor to set up the contract for streaming arbitrary ERC20 tokens. Note: this contract must be given ERC approve()
authority to withdraw tokens from this contract.
After deployment, the owner must also set the cap
value using the file
function.
Create a new vesting plan.
_usr
: The plan beneficiary_tot
: The total amount of the vesting plan, in token units- ex. 100 MKR =
100 * 10**18
- ex. 100 MKR =
_bgn
: A unix-timestamp of the plan start date_tau
: The duration of the vesting plan (in seconds)_eta
: The cliff period, a duration in seconds from the_bgn
time, in which tokens are accrued but not payable. (in seconds)_mgr
: (Optional) The address of an authorized manager. This address has permission to remove the vesting plan when the contributor leaves the project.- Note:
auth
users on this contract always have the ability toyank
a vesting contract.
- Note:
The vesting plan participant calls vest(id)
after the cliff period to pay out all accrued and unpaid tokens.
The vesting plan participant calls vest(id, maxAmt)
after the cliff period to pay out accrued and unpaid tokens, up to maxAmt.
The vesting plan participant can transfer their contract _id
control and ownership to another address _dst
.
Returns the amount of accrued, vested, unpaid tokens.
Returns the amount of tokens that have accrued from the beginning of the plan to the current block.
Returns true if the plan id is valid and has not been claimed or yanked before the cliff.
Allows governance or the owner to restrict vesting to the owner only.
Allows governance or the owner to enable permissionless vesting.
An authorized user (ex. governance) of the vesting contract, or an optional plan manager, can yank
a vesting contract. If the contract is yanked prior to the plan cliff, no funds will be paid out. If a plan is yank
ed after the contract cliff period has ended, new accruals will cease and the participant will be able to call vest
to claim any vested funds.
Allows governance to schedule a point in the future to end the vest. Used for planned offboarding of contributors.
- Install Echidna v2.0.0
$ nix-env -i -f https://github.com/crytic/echidna/archive/v2.0.0.tar.gz
- Install Echidna v2.0.0 via echidnup
$ echidnup v2.0.0
- Install solc 0.6.12
$ nix-env -f https://github.com/dapphub/dapptools/archive/master.tar.gz -iA solc-static-versions.solc_0_6_12
- Install solc 0.6.12 via duppsolc
$ duppsolc 0.6.12
- DssVestMintableEchidnaTest:
$ make echidna-mintable
- DssVestSuckableEchidnaTest:
$ make echidna-suckable
- DssVestTransferrableEchidnaTest:
$ make echidna-transferrable
- Install Java
sudo apt install openjdk-14-jdk
- Install Certora Prover
pip3 install certora-cli
- Set Certora Key
export CERTORAKEY=<key>
- Install solc-select and install solc 0.6.12 artifacts:
make solc-select
- Run DssVestMintable Specs:
make certora-mintable
- Run DssVestSuckable Specs:
make certora-suckable
- Run DssVestTransferrable Specs:
make certora-transferrable