pub trait DepositTransaction: CommonTxFields {
// Required methods
fn source_hash(&self) -> B256;
fn to(&self) -> TxKind;
fn mint(&self) -> Option<u128>;
fn is_system_transaction(&self) -> bool;
}
pub trait DepositTransaction: CommonTxFields {
// Required methods
fn source_hash(&self) -> B256;
fn to(&self) -> TxKind;
fn mint(&self) -> Option<u128>;
fn is_system_transaction(&self) -> bool;
}