import BN from "bn.js"; import { ActionLib } from "."; export type BNIsh = string | number | BN; export interface ActionPIDToActionUID { [actionPID: string]: string; } export type BuildActionMap = { [actionTypeUID: string]: ActionLib; }; export type ContractType = "Malloc Core" | "Malloc Action" | "Other"