pub trait SafeCall { // Required methods fn to(&self) -> Address; fn value(&self) -> U256; fn data(&self) -> Bytes; fn operation(&self) -> Operation; }
Trait for types that can be converted to a Safe call
Returns the target address
Returns the value to send (in wei)
Returns the calldata
Returns the operation type (Call or DelegateCall)