ore-mint-api 0.1.3

Solana native store of value.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};
use steel::*;

use super::OreAccount;

/// Account which has the mint authority for the ORE token.
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable, Serialize, Deserialize)]
pub struct Authority {
    /// The slot of the last mint.
    pub last_mint_at: u64,
}

account!(OreAccount, Authority);