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