@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
19 lines (16 loc) • 429 B
JavaScript
import { DatumRedeemerEntryPoint } from "./DatumRedeemerEntryPoint.js"
import { ModuleCollection } from "./ModuleCollection.js"
/**
* @typedef {import("./EntryPoint.js").EntryPoint} EntryPoint
*/
/**
* @implements {EntryPoint}
*/
export class SpendingEntryPoint extends DatumRedeemerEntryPoint {
/**
* @param {ModuleCollection} modules
*/
constructor(modules) {
super("spending", modules)
}
}