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
use anchor_lang::prelude::*;

pub const SEED_CONFIG: &[u8] = b"cfg";

#[account]
pub struct Config {
    pub transfer_fee_program: u64,
    pub transfer_fee_distributor: u64,
    pub bump: u8,
}