[][src]Trait ethers_core::abi::FunctionExt

pub trait FunctionExt {
    fn abi_signature(&self) -> String;
fn selector(&self) -> Selector; }
This is supported on feature="abi" only.

Extension trait for ethabi::Function.

Required methods

fn abi_signature(&self) -> String

This is supported on feature="abi" only.

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

fn selector(&self) -> Selector

This is supported on feature="abi" only.

Compute the Keccak256 function selector used by contract ABIs.

Loading content...

Implementors

impl FunctionExt for Function[src]

Loading content...