UNPKG

@tangany/waas

Version:

node.js SDK for Tangany Wallet as a Service API

10 lines (9 loc) 407 B
import { EthTransactionAsync } from "./eth-transaction-async"; import { IAsyncRequestStatus } from "./interfaces/common"; import { Request } from "./request"; /** * Provides the ability to query the status of asynchronously executed Ethereum transactions. */ export declare class EthTransactionRequest extends Request<EthTransactionAsync> { get(): Promise<IAsyncRequestStatus<EthTransactionAsync>>; }