Interface CostModel

Interface representing a cost model with a language version and an array of costs.

interface CostModel {
    costs: number[];
    language: string;
}

Properties

Properties

costs: number[]

An array of costs associated with the cost model. Each cost corresponds to a specific operation or computation in the Plutus language.

language: string

The language version of the cost model.