mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 01:27:56 +00:00
2416aa7999
* Bump version * update test-utils crates to be ready for publishing * adding changelog * Adding automaticly generated READMEs * fixing versions * another version mishap
31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
# Vesting Module
|
|
|
|
- [`vesting::Trait`](./trait.Trait.html)
|
|
- [`Call`](./enum.Call.html)
|
|
|
|
## Overview
|
|
|
|
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 any reason other than transaction fee payment.
|
|
|
|
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.
|
|
|
|
## Interface
|
|
|
|
This module implements the `VestingSchedule` trait.
|
|
|
|
### Dispatchable Functions
|
|
|
|
- `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.
|
|
|
|
[`Call`]: ./enum.Call.html
|
|
[`Trait`]: ./trait.Trait.html
|
|
|
|
License: Apache-2.0 |