cast/cmd/mod.rs
1//! `cast` subcommands.
2//!
3//! All subcommands should respect the `foundry_config::Config`.
4//! If a subcommand accepts values that are supported by the `Config`, then the subcommand should
5//! implement `figment::Provider` which allows the subcommand to override the config's defaults, see
6//! [`foundry_config::Config`].
7
8pub mod access_list;
9pub mod artifact;
10pub mod bind;
11pub mod call;
12pub mod constructor_args;
13pub mod create2;
14pub mod creation_code;
15pub mod da_estimate;
16pub mod estimate;
17pub mod find_block;
18pub mod interface;
19pub mod logs;
20pub mod mktx;
21pub mod rpc;
22pub mod run;
23pub mod send;
24pub mod storage;
25pub mod txpool;
26pub mod wallet;