Skip to main content

roshi_interface/state/
mod.rs

1//! Account wire types shared with off-chain readers.
2
3pub mod vault;
4
5pub use vault::{Role, Vault};
6
7/// Tag byte that prefixes a `Vault` payload in the program's tagged `Account`.
8pub const VAULT_ACCOUNT_TAG: u8 = 1;