UNPKG

@minatokens/abi

Version:

MinaTokens ABI Experimental Library

18 lines (17 loc) 409 B
import { Cache, Field } from "o1js"; export type Compilable = { compile({ cache }?: { cache: Cache; }): Promise<{ verificationKey: { data: string; hash: Field; }; }>; }; export type CompileDependencies = Record< /** Transaction type */ string, /** List of contract names */ string[]>; export declare const contractList: Record<string, Compilable>;