PlutusDataKind

class cometa.plutus_data.plutus_data_kind.PlutusDataKind(value)[source]

Bases: IntEnum

The Plutus data type kind.

Plutus data can be one of five types: constructor, map, list, integer, or bytes.

CONSTR = 0

Represents a specific constructor of a ‘Sum Type’ along with its arguments.

MAP = 1

A map of PlutusData as both key and values.

LIST = 2

A list of PlutusData.

INTEGER = 3

An integer (BigInt).

BYTES = 4

Bounded bytes.