phase-protocol-sdk 0.3.0

Integration SDK for phase-protocol and fundraising programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use anchor_lang::prelude::*;

pub mod state;
declare_id!("3skYe7q6eeiA3sh4dok7ZXtARry8iMzDjwiZud1hMFg2");

#[program]
pub mod phase_protocol_sdk {
    use super::*;

    pub fn initialize(_ctx: Context<Initialize>) -> Result<()> {
        Ok(())
    }
}

#[derive(Accounts)]
pub struct Initialize {}