Files
ore/api/src/state/treasury.rs
2024-09-27 00:22:32 +00:00

12 lines
305 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 {}
account!(OreAccount, Treasury);