Interface TransactionDetailsForUserOp

interface TransactionDetailsForUserOp {
    data: string;
    gasLimit?: BigNumberish;
    maxFeePerGas?: BigNumberish;
    maxPriorityFeePerGas?: BigNumberish;
    nonce?: BigNumberish;
    target: string;
    value?: BigNumberish;
}

Properties

data: string

data: The data to send to the contract

gasLimit?: BigNumberish

gasLimit: The gas limit to use for the transaction

maxFeePerGas?: BigNumberish

maxFeePerGas: The maximum fee per gas to use for the transaction

maxPriorityFeePerGas?: BigNumberish

maxPriorityFeePerGas: The maximum priority fee per gas to use for the transaction

nonce?: BigNumberish

nonce: The nonce to use for the transaction

target: string

target: The address of the contract to call

value?: BigNumberish

value: The value to send to the contract