Skip to main content

dlp_api/args/
call_handler.rs

1use borsh::{BorshDeserialize, BorshSerialize};
2
3#[derive(BorshSerialize, BorshDeserialize)]
4pub struct CallHandlerArgs {
5    pub escrow_index: u8,
6    /// This is raw instruction data, it could include discriminator + args
7    /// or can be in any other custom format
8    pub data: Vec<u8>,
9}