@helios-lang/compiler
Version:
Helios is a Domain Specific Language that compiles to Plutus-Core (i.e. Cardano on-chain validator scripts). Helios is a non-Haskell alternative to Plutus. With this library you can compile Helios scripts and build Cardano transactions, all you need to bu
10 lines • 560 B
TypeScript
export { newEntryPoint } from "./newEntryPoint.js";
export { Program } from "./Program.js";
export { extractName } from "../parse/parseHeader.js";
export { VERSION } from "./version.js";
export type CompileOptions = import("./Program.js").CompileOptions;
export type ProgramProps = import("./Program.js").ProgramProps;
export type DataType = import("../typecheck/common.js").DataType;
export type EnumMemberType = import("../typecheck/common.js").EnumMemberType;
export { analyzeMulti, getScriptHashType } from "./multi.js";
//# sourceMappingURL=index.d.ts.map