ore-mint-api 0.1.3-alpha.1

Solana native store of value.
Documentation
use steel::*;

#[repr(u8)]
#[derive(Clone, Copy, Debug, Eq, PartialEq, TryFromPrimitive)]
pub enum OreMintInstruction {
    MintORE = 0,
    MintORE2 = 1,
    Init = 2,
}

#[repr(C)]
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
pub struct MintORE {
    pub amount: [u8; 8],
}

#[repr(C)]
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
pub struct MintORE2 {
    pub amount: [u8; 8],
}

#[repr(C)]
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
pub struct Init {}

instruction!(OreMintInstruction, MintORE);
instruction!(OreMintInstruction, MintORE2);
instruction!(OreMintInstruction, Init);