miden-standards 0.16.1

Standards of the Miden protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod auth_network_account;
pub use auth_network_account::AuthNetworkAccount;

#[allow(clippy::module_inception)]
mod network_account;
pub use network_account::{NetworkAccount, NetworkAccountError};

mod note_allowlist;
pub use note_allowlist::{NetworkAccountNoteAllowlist, NetworkAccountNoteAllowlistError};

mod sponsorship_policy;
pub use sponsorship_policy::{SponsorshipPolicy, SponsorshipPolicyError};

mod tx_script_allowlist;
pub use tx_script_allowlist::{
    NetworkAccountTxScriptAllowlist,
    NetworkAccountTxScriptAllowlistError,
};