UNPKG

@broxus/locklift-network

Version:

In-memory TVM-blockchain emulator for locklift

5 lines (3 loc) 264 B
import { Address } from "everscale-inpage-provider"; export type AccountFetcherResponse = { boc?: string; codeHash?: string; type: "accountStuffBoc" | "fullAccountBoc" }; export type AccountFetcherCallback = (address: Address) => Promise<AccountFetcherResponse>;