Interface ContractActionPayload

The object representation of a ContractAction.InitPayload

ContractActionPayload

interface ContractActionPayload {
    chainId: bigint;
    target: `0x${string}`;
    selector: `0x${string}`;
    value: bigint;
}

Properties

chainId: bigint

The chain ID on which the target exists

target: `0x${string}`

The target contract address

selector: `0x${string}`

The selector for the function to be called

value: bigint

The native token value to send with the function call