-
Referring to: ogmios/clients/TypeScript/packages/schema/src/index.ts Lines 1250 to 1252 in 0acf18e
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
This map refers to the name of the Plutus-core primitives and their associate cost in abstract execution units. (see the genesis file for a list of currently existing values and their cost: https://github.com/input-output-hk/cardano-configurations/blob/master/network/mainnet/genesis/alonzo.json#L28-L193). The abstract execution units is then converted to Ada / Lovelace according to the execution prices, also in the protocol parameters (https://github.com/input-output-hk/cardano-configurations/blob/master/network/mainnet/genesis/alonzo.json#L3-L13).
The CDDL syntax
n*m type
refers to a number of occurrences in the structure.n
(resp.m
) being the lower (resp. upper) limit. So here, it …