Type alias BuildTransferFromParameters

BuildTransferFromParameters: Trigger & {
    gasLimit?: bigint;
    recipient: Address;
    sender: Address;
}

Parameters for building a transferFrom instruction

Type declaration

  • Optional gasLimit?: bigint

    Gas limit for the transferFrom transaction. Required when using the standard transferFrom function instead of permit.

    Example

    75000n
    
  • recipient: Address

    Recipient address.

    Example

    "0x1234567890123456789012345678901234567890"
    
  • sender: Address

    Owner address.

    Example

    "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"