save-token 0.1.3

SAVE Token: A Simple Agreement for Vote-Escrowed Tokens.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Instructions for SAVE token.

pub mod create_save;
pub mod lock;
pub mod mint_from_underlying;
pub mod mint_from_yi;

pub use create_save::*;
pub use lock::*;
pub use mint_from_underlying::*;
pub use mint_from_yi::*;