@mavrykdynamics/taquito
Version:
High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.
13 lines (12 loc) • 639 B
TypeScript
import { BlockResponse, OperationContentsAndResultReveal } from '@mavrykdynamics/taquito-rpc';
import { Observable } from 'rxjs';
import { Context } from '../context';
import { WalletOperation, OperationStatus } from './operation';
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>;
}