ore_mint_api/
instruction.rs

1use steel::*;
2
3#[repr(u8)]
4#[derive(Clone, Copy, Debug, Eq, PartialEq, TryFromPrimitive)]
5pub enum OreMintInstruction {
6    MintORE = 0,
7}
8
9#[repr(C)]
10#[derive(Clone, Copy, Debug, Pod, Zeroable)]
11pub struct MintORE {
12    pub amount: [u8; 8],
13}
14
15instruction!(OreMintInstruction, MintORE);