Class OriginationWalletOperation<TWallet>

Description

WalletOperation allows to monitor operation inclusion on chains and surface information related to the operation

Type Parameters

Hierarchy (view full)

Constructors

Properties

_included: boolean = false
_includedInBlock: ReplaySubject<BlockResponse> = ...
_operationResult: ReplaySubject<OperationContentsAndResult[]> = ...
context: Context

Taquito context allowing access to rpc and signer

newHead$: Observable<BlockResponse> = ...
opHash: string

Operation hash

Methods

  • Parameters

    • Optional confirmations: number

      [0] Number of confirmation to wait for

    Returns Promise<undefined | {
        block: BlockResponse;
        completed: boolean;
        currentConfirmation: number;
        expectedConfirmation: number;
        isInCurrentBranch: (() => Promise<boolean>);
    }>

  • Parameters

    • Optional confirmations: number

    Returns Observable<{
        block: BlockResponse;
        completed: boolean;
        currentConfirmation: number;
        expectedConfirmation: number;
        isInCurrentBranch: (() => Promise<boolean>);
    }>

Generated using TypeDoc