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.
9 lines (8 loc) • 440 B
TypeScript
import { Address, ProviderRpcClient } from "everscale-inpage-provider";
import { AccountData, TracingTransportConnection } from "../types";
export declare class TracingProxyConnection implements TracingTransportConnection {
readonly provider: ProviderRpcClient;
constructor(provider: ProviderRpcClient);
getAccountData(account: Address): Promise<AccountData>;
getAccountsData(accounts: Address[]): Promise<AccountData[]>;
}