UNPKG

locklift

Version:

Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.

11 lines (10 loc) 523 B
import { Address, ProviderRpcClient } from "everscale-inpage-provider"; import { AccountData, TracingTransportConnection } from "../types"; export declare class TracingGqlConnection implements TracingTransportConnection { readonly provider: ProviderRpcClient; readonly gqlEndpoint: string; constructor(provider: ProviderRpcClient, gqlEndpoint: string); getAccountData(account: Address): Promise<AccountData>; private _getAccountsData; getAccountsData(accounts: Address[]): Promise<AccountData[]>; }