| 
1 | 1 | use crate::cmd::{  | 
2 | 2 |     access_list::AccessListArgs, artifact::ArtifactArgs, bind::BindArgs, call::CallArgs,  | 
3 | 3 |     constructor_args::ConstructorArgsArgs, create2::Create2Args, creation_code::CreationCodeArgs,  | 
4 |  | -    estimate::EstimateArgs, find_block::FindBlockArgs, interface::InterfaceArgs, logs::LogsArgs,  | 
5 |  | -    mktx::MakeTxArgs, rpc::RpcArgs, run::RunArgs, send::SendTxArgs, storage::StorageArgs,  | 
6 |  | -    txpool::TxPoolSubcommands, wallet::WalletSubcommands,  | 
 | 4 | +    da_estimate::DAEstimateArgs, estimate::EstimateArgs, find_block::FindBlockArgs,  | 
 | 5 | +    interface::InterfaceArgs, logs::LogsArgs, mktx::MakeTxArgs, rpc::RpcArgs, run::RunArgs,  | 
 | 6 | +    send::SendTxArgs, storage::StorageArgs, txpool::TxPoolSubcommands, wallet::WalletSubcommands,  | 
7 | 7 | };  | 
8 | 8 | use alloy_ens::NameOrAddress;  | 
9 | 9 | use alloy_primitives::{Address, Selector, B256, U256};  | 
@@ -1065,6 +1065,9 @@ pub enum CastSubcommand {  | 
1065 | 1065 |         #[command(subcommand)]  | 
1066 | 1066 |         command: TxPoolSubcommands,  | 
1067 | 1067 |     },  | 
 | 1068 | +    /// Estimates the data availability size of a given opstack block.  | 
 | 1069 | +    #[command(name = "da-estimate")]  | 
 | 1070 | +    DAEstimate(DAEstimateArgs),  | 
1068 | 1071 | }  | 
1069 | 1072 | 
 
  | 
1070 | 1073 | /// CLI arguments for `cast --to-base`.  | 
 | 
0 commit comments