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