pub trait MulticallItem {
type Decoder: SolCall;
// Required methods
fn target(&self) -> Address;
fn input(&self) -> Bytes;
}
Expand description
A trait that is to be implemented by a type that can be distilled to a singular contract call item.