Taquito TypeDocs
    Preparing search index...

    Interface TransferParams

    Parameters for transfer method

    interface TransferParams {
        amount: number;
        fee?: number;
        gasLimit?: number;
        mutez?: boolean;
        parameter?: TransactionOperationParameter;
        source?: string;
        storageLimit?: number;
        to: string;
    }
    Index

    Properties

    amount: number

    Transfer amount.

    Interpreted as tez by default. Set mutez: true to pass mutez.

    fee?: number

    Fee in mutez.

    gasLimit?: number

    Gas limit.

    mutez?: boolean

    When true, amount is interpreted as mutez.

    parameter?: TransactionOperationParameter

    Optional transaction parameter for contract calls.

    source?: string

    Operation source. Defaults to the active signer pkh.

    storageLimit?: number

    Storage limit.

    to: string

    Destination account or contract address.