Skip to main content

miden_standards/account/auth/
mod.rs

1mod no_auth;
2pub use no_auth::NoAuth;
3
4mod singlesig;
5pub use singlesig::AuthSingleSig;
6
7mod singlesig_acl;
8pub use singlesig_acl::{AuthSingleSigAcl, AuthSingleSigAclConfig};
9
10mod multisig;
11pub use multisig::{AuthMultisig, AuthMultisigConfig};
12
13pub mod multisig_smart;
14pub use multisig_smart::{AuthMultisigSmart, AuthMultisigSmartConfig};
15
16mod guarded_multisig;
17pub use guarded_multisig::{AuthGuardedMultisig, AuthGuardedMultisigConfig, GuardianConfig};
18
19mod network_account;
20pub use network_account::{
21    AuthNetworkAccount,
22    NetworkAccount,
23    NetworkAccountNoteAllowlist,
24    NetworkAccountNoteAllowlistError,
25    NetworkAccountTxScriptAllowlist,
26    NetworkAccountTxScriptAllowlistError,
27};