UNPKG

@broxus/locklift-network

Version:

In-memory TVM-blockchain emulator for locklift

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