aztec_account/
lib.rs

1//! Account abstractions and deployment helpers.
2
3pub mod abi {
4    pub use aztec_core::abi::*;
5}
6
7pub mod error {
8    pub use aztec_core::error::*;
9}
10
11pub mod fee {
12    pub use aztec_core::fee::*;
13}
14
15pub mod tx {
16    pub use aztec_core::tx::*;
17}
18
19pub mod types {
20    pub use aztec_core::types::*;
21}
22
23pub mod wallet {
24    pub use aztec_wallet::*;
25}
26
27pub mod account;
28pub mod authorization;
29pub mod entrypoint;
30pub mod meta_payment;
31pub mod schnorr;
32pub mod signerless;
33pub mod single_account_provider;
34
35pub use account::*;
36pub use authorization::CallAuthorizationRequest;
37pub use entrypoint::{
38    AccountFeePaymentMethodOptions, DefaultAccountEntrypoint, DefaultAccountEntrypointOptions,
39    DefaultMultiCallEntrypoint, EncodedAppEntrypointCalls,
40};
41pub use error::Error;
42pub use meta_payment::AccountEntrypointMetaPaymentMethod;
43pub use schnorr::SchnorrAccountContract;
44pub use signerless::SignerlessAccount;
45pub use single_account_provider::SingleAccountProvider;