payment-program 0.1.7

Schedule one-time and recurring token transfers on Solana
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod authority;
mod config;
mod payment;
mod payment_namespace;
mod role;
mod task;
mod task_namespace;
mod treasury;

pub use authority::*;
pub use config::*;
pub use payment::*;
pub use payment_namespace::*;
pub use role::*;
pub use task::*;
pub use task_namespace::*;
pub use treasury::*;