Skip to main content

jiminy_vesting/
lib.rs

1#![no_std]
2//! # jiminy-vesting
3//!
4//! Linear, cliff, stepped, and periodic unlock schedules.
5//!
6//! Calculate how many tokens a user can claim right now, given a schedule
7//! and a timestamp. Covers every common vesting curve: linear with cliff,
8//! stepped (monthly/quarterly), periodic, and custom combinations.
9
10mod vesting;
11pub use vesting::*;
12pub use pinocchio;