Trait ethers::abi::FunctionExt[][src]

pub trait FunctionExt {
    fn abi_signature(&self) -> String;
fn selector(&self) -> [u8; 4]; }
Expand description

Extension trait for ethabi::Function.

Required methods

Compute the method signature in the standard ABI format. This does not include the output types.

Compute the Keccak256 function selector used by contract ABIs.

Implementors