Files
ore/api/src/state/treasury.rs
Hardhat Chad 04940529f8 cleanup
2025-09-18 11:46:35 -07:00

14 lines
328 B
Rust

use steel::*;
use super::OreAccount;
/// Treasury is a singleton account which is the mint authority for the ORE token and the authority of
/// the program's global token account.
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
pub struct Treasury {
pub balance: u64,
}
account!(OreAccount, Treasury);