Skip to main content

CommonUplcProgramProps

export type CommonUplcProgramProps = {
  ir??: string
  root: UplcTerm
  eval(
    args: undefined | UplcValue[],
    options?: {
      costModelParams??: number[]
      logOptions??: UplcLogger
    }
  ): CekResult
  hash(): number[]
  toCbor(): number[]
  toFlat(): number[]
  toString(): string
}