Crates.io | pallet-vesting |
lib.rs | pallet-vesting |
version | 38.0.0 |
source | src |
created_at | 2020-02-28 05:50:59.963876 |
updated_at | 2024-09-26 08:48:15.416348 |
description | FRAME pallet for manage vesting |
homepage | https://paritytech.github.io/polkadot-sdk/ |
repository | https://github.com/paritytech/polkadot-sdk.git |
max_upload_size | |
id | 213429 |
size | 127,473 |
A simple module providing a means of placing a linear curve on an account's locked balance. This
module ensures that there is a lock in place preventing the balance to drop below the unvested
amount for reason other than the ones specified in UnvestedFundsAllowedWithdrawReasons
configuration value.
As the amount vested increases over time, the amount unvested reduces. However, locks remain in
place and explicit action is needed on behalf of the user to ensure that the amount locked is
equivalent to the amount remaining to be vested. This is done through a dispatchable function,
either vest
(in typical case where the sender is calling on their own behalf) or vest_other
in case the sender is calling on another account's behalf.
This module implements the VestingSchedule
trait.
vest
- Update the lock, reducing it in line with the amount "vested" so far.vest_other
- Update the lock of another account, reducing it in line with the amount
"vested" so far.License: Apache-2.0
Polkadot SDK stable2409