UNPKG

@taquito/taquito

Version:

High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

14 lines (13 loc) 683 B
import { BlockResponse, OperationContentsAndResultReveal, OpKind } from '@taquito/rpc'; import { Observable } from 'rxjs'; import { Context } from '../context'; import { WalletOperation, OperationStatus } from './operation'; export declare const WALLET_BATCH_KINDS: OpKind[]; export declare class BatchWalletOperation extends WalletOperation { readonly opHash: string; protected readonly context: Context; constructor(opHash: string, context: Context, newHead$: Observable<BlockResponse>); revealOperation(): Promise<OperationContentsAndResultReveal | undefined>; getOriginatedContractAddresses: () => Promise<string[]>; status(): Promise<OperationStatus>; }