Type Alias BuildTransferFromParameters

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

Parameters for building a transferFrom instruction

Type declaration

  • OptionalgasLimit?: bigint

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

    75000n
    
  • recipient: Address

    Recipient address.

    "0x1234567890123456789012345678901234567890"
    
  • sender: Address

    Owner address.

    "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"