bvs_vault_base/
lib.rs

1pub mod error;
2
3/// Base router (aka auth) module for the vault.
4pub mod router;
5
6/// Base messages required for all vaults.
7pub mod msg;
8
9/// Virtual shares offset module for the vault to guard against inflation attacks.
10pub mod offset;
11
12/// Accounting module for vaults that tracks staker shares.
13pub mod shares;
14
15pub use crate::error::VaultError;