ephemeral_rollups_sdk/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use solana_program::pubkey::Pubkey;

pub use ephemeral_rollups_sdk_attribute_delegate::delegate;

pub mod anchor;
pub mod consts;
pub mod cpi;
pub mod delegate_args;
pub mod ephem;
pub mod pda;
pub mod types;
pub mod utils;

pub fn id() -> Pubkey {
    consts::DELEGATION_PROGRAM_ID
}