Interface ExUnitsPrices

Interface representing the prices of execution units (ExUnits) in a Plutus script. It includes the cost of memory and steps, represented as unit intervals.

interface ExUnitsPrices {
    memory: UnitInterval;
    steps: UnitInterval;
}

Properties

Properties

memory: UnitInterval

The price of memory usage, represented as a unit interval.

The price of CPU steps, represented as a unit interval.