Anoma.RM.Transparent.ComplianceUnit (Anoma v0.31.0)

I am the Compliance Unit module for the TRM.

I provide the interface to interact with the compliance units in the resource machine.

Public API

Summary

Functions

I am the consumed function for the compliance unit in TRM.

I am the creation API for the compliance unit of the TRM.

I am the created function for a compliance unit in TRM.

I am the delta function for a compliance unit in the TRM.

I am the compliance unit verification function.

Types

@type t() :: %Anoma.RM.Transparent.ComplianceUnit{
  instance: Anoma.RM.Transparent.ProvingSystem.CPS.Instance.t(),
  proof: <<_::0>>,
  vk: binary()
}

Functions

@spec consumed(t()) :: MapSet.t(integer())

I am the consumed function for the compliance unit in TRM.

I access the consumed field in a given instance of the unit and collect the result in a set.

Link to this function

create(key, instance, proof)

I am the creation API for the compliance unit of the TRM.

Given a key, instance, and proof for the unit, I put them as appropriate arguments to the unit.

@spec created(t()) :: MapSet.t(integer())

I am the created function for a compliance unit in TRM.

I access the created field in a given instance of the unit and collect the result in a set.

@spec delta(t()) :: integer()

I am the delta function for a compliance unit in the TRM.

I simply access the unit delta field in the compliance unit.

Link to this function

from_noun(list)

@spec from_noun(Noun.t()) :: {:ok, t()} | :error
@spec to_noun(t()) :: Noun.t()
@spec verify(t()) :: boolean()

I am the compliance unit verification function.

I simply call the compliance proving system verification function.