ore-mint-api 0.1.1

Solana native store of value.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use steel::*;

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

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

instruction!(OreMintInstruction, MintORE);