light_token_interface/instructions/mint_action/
mint_to.rs

1use light_zero_copy::ZeroCopy;
2
3use crate::{AnchorDeserialize, AnchorSerialize};
4
5#[repr(C)]
6#[derive(Debug, Clone, Copy, AnchorSerialize, AnchorDeserialize, ZeroCopy)]
7pub struct MintToAction {
8    pub account_index: u8, // Index into remaining accounts for the recipient token account
9    pub amount: u64,
10}