@silvana-one/abi
Version:
Silvana ABI Experimental Library
17 lines (16 loc) • 344 B
TypeScript
import { Cache, Field } from "o1js";
export type Compilable = {
compile(options?: {
cache: Cache;
}): Promise<{
verificationKey: {
data: string;
hash: Field;
};
}>;
};
export type CompileDependencies = Record<
/** Transaction type */
string,
/** List of contract names */
string[]>;