๐ฎInit Smart Delegate
pub struct InitSmartDelegate<'info> {
#[account(mut)]
pub payer: Signer<'info>,
#[account(
init,
seeds = [
b"smart-delegate",
],
bump,
space = 8 + SmartDelegate::INIT_SPACE,
payer = payer,
)]
pub smart_delegate: Account<'info, SmartDelegate>,
pub system_program: Program<'info, System>,
}Last updated