#tetcoin #framework #blockchain #crypto

no-std noble-vesting

FABRIC noble for manage vesting

Show the crate…

1 stable release

2.0.0 Apr 4, 2021

#154 in #tetcoin

Download history 3/week @ 2024-01-03 19/week @ 2024-01-10 1/week @ 2024-02-07 8/week @ 2024-02-14 17/week @ 2024-02-21 25/week @ 2024-02-28 20/week @ 2024-03-06 12/week @ 2024-03-13 14/week @ 2024-03-20 31/week @ 2024-03-27 34/week @ 2024-04-03

97 downloads per month
Used in 8 crates (via node-runtime)

Apache-2.0

1MB
25K SLoC

Vesting Module

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.

License: Apache-2.0

Dependencies

~3–13MB
~135K SLoC