Type alias SolidityFunction

SolidityFunction: {
    address: string;
    selector: string;
}

A Solidity function, i.e., the address of a contract and the selector of a function within that contract.

Type declaration

  • address: string

    The address of the contract. Must be a 40-character long hex string (excluding the "0x"-prefix).

  • selector: string

    The selector of the function. Must be an 8-character long hex string (excluding the "0x"-prefix).