UNPKG

@tangany/waas

Version:

node.js SDK for Tangany Wallet as a Service API

14 lines (13 loc) 431 B
import { ITezosOperationStatusOutput } from "./interfaces/tezos"; import { Waas } from "./waas"; import { IWaasMethod } from "./waas-method"; export declare class TezosOperation implements IWaasMethod { waas: Waas; private readonly _hash; get hash(): string; constructor(waas: Waas, _hash: string); /** * Requests details for given operation hash */ get(): Promise<ITezosOperationStatusOutput>; }