ore_api/state/
treasury.rs

1use steel::*;
2
3use super::OreAccount;
4
5/// Treasury is a singleton account which is the mint authority for the ORE token and the authority of
6/// the program's global token account.
7#[repr(C)]
8#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
9pub struct Treasury {}
10
11account!(OreAccount, Treasury);