Taquito TypeDocs
    Preparing search index...

    Class DelegationWalletOperation

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

    Hierarchy (View Summary)

    Index

    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

      • Optionalconfirmations: number

        [0] Number of confirmation to wait for

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

    • Parameters

      • Optionalconfirmations: number

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