Type alias ConfirmOptions

ConfirmOptions: {
    commitment?: Commitment;
    maxRetries?: number;
    minContextSlot?: number;
    preflightCommitment?: Commitment;
    skipPreflight?: boolean;
}

Options for confirming transactions

Type declaration

  • Optional commitment?: Commitment

    desired commitment level

  • Optional maxRetries?: number

    Maximum number of times for the RPC node to retry sending the transaction to the leader.

  • Optional minContextSlot?: number

    The minimum slot that the request can be evaluated at

  • Optional preflightCommitment?: Commitment

    preflight commitment level

  • Optional skipPreflight?: boolean

    disable transaction verification step

Generated using TypeDoc