@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
9 lines • 392 B
TypeScript
/**
* Initializes the db containing all the builtin functions
* @param {boolean} simplify
* @param {boolean} isTestnet // needed for Address.to_bytes() and Address.to_hex()
* @returns {Map<string, RawFunc>}
*/
export function makeRawFunctions(simplify: boolean, isTestnet: boolean): Map<string, RawFunc>;
import { RawFunc } from "./RawFunc.js";
//# sourceMappingURL=makeRawFuncs.d.ts.map