Interface PlutusScript

Plutus scripts are pieces of code that implement pure functions with True or False outputs. These functions take several inputs such as Datum, Redeemer and the transaction context to decide whether an output can be spent or not.

interface PlutusScript {
    bytes: string;
    type: Plutus;
    version: PlutusLanguageVersion;
}

Properties

Properties

bytes: string
type: Plutus