delegation_program_sdk/
types.rs1use borsh::{BorshDeserialize, BorshSerialize};
2
3#[derive(Debug, BorshSerialize, BorshDeserialize)]
4pub struct DelegateAccountArgs {
5 pub valid_until: i64,
6 pub commit_frequency_ms: u32,
7 pub seeds: Vec<Vec<u8>>,
8}