Taquito TypeDocs
    Preparing search index...

    Interface TransferTicketParams

    Parameters for the transferTicket contract provider

    interface TransferTicketParams {
        destination: string;
        entrypoint: string;
        fee?: number;
        gasLimit?: number;
        source?: string;
        storageLimit?: number;
        ticketAmount: number;
        ticketContents: MichelsonV1Expression;
        ticketTicketer: string;
        ticketTy: MichelsonV1Expression;
    }
    Index

    Properties

    destination: string

    Destination contract or implicit account.

    entrypoint: string

    Destination entrypoint name (1-31 bytes).

    For implicit destinations (tz...), this must be default; otherwise protocol rejects with michelson_v1.no_such_entrypoint.

    fee?: number

    Fee in mutez.

    gasLimit?: number

    Gas limit.

    source?: string

    Operation source. Defaults to the active signer pkh.

    storageLimit?: number

    Storage limit.

    ticketAmount: number

    Quantity of tickets to transfer.

    ticketContents: MichelsonV1Expression

    Ticket payload.

    ticketTicketer: string

    Ticket ticketer contract address.

    ticketTy: MichelsonV1Expression

    Ticket Micheline type.