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

Summary

Functions

I am the Action module of the TRM.

I am the function to check consumed resource logics.

I am the creation interface for the transparent action.

I am the function to check created resource logics.

I am the check for compliance units in a transparent action.

I am the precis function for the compliance units.

I am the delta computation function for the transparent action.

I am the partition check for a transparent action.

I am the action verification function.

Types

@type t() :: %Anoma.RM.Transparent.Action{
  app_data: %{required(integer()) => [{binary(), boolean()}]},
  compliance_units: MapSet.t(Anoma.RM.Transparent.ComplianceUnit.t()),
  consumed: [integer()],
  created: [integer()],
  resource_logic_proofs: %{required(integer()) => {integer(), <<_::0>>}}
}

Functions

Link to this function

%Anoma.RM.Transparent.Action{}

(struct)

I am the Action module of the TRM.

I provide the interfaces for handling transparent actions.

Public API

I provide the following public functionality

Link to this function

consumed_logic_check(t)

@spec consumed_logic_check(t()) :: boolean()

I am the function to check consumed resource logics.

I go through the consumed resources and verify them using the proving system interface.

Link to this function

create(to_nullify, to_commit, app_data)

@spec create(
  [{<<_::256>>, Anoma.RM.Transparent.Resource.t(), integer()}],
  [Anoma.RM.Transparent.Resource.t()],
  %{required(integer()) => [{binary(), boolean()}]}
) :: t()

I am the creation interface for the transparent action.

I compute the appropriate compliance unit for the action by going through a given list of nullified and created resources, then put the rest into appropriate structure slots.

Link to this function

created_logic_check(t)

@spec created_logic_check(t()) :: bool()

I am the function to check created resource logics.

I go through the created resources and verify them using the proving system interface.

@spec cu_check(t()) :: boolean()

I am the check for compliance units in a transparent action.

I simply go through the compliance units and verify each one using the appropriate interface.

@spec cu_precis(t()) ::
  {:ok, %{consumed: MapSet.t(), created: MapSet.t()}} | {:error, String.t()}

I am the precis function for the compliance units.

I gather all commitments and nullifiers from the appropriate compliance units in a provided action. Moreover, I check that they are indeed disjoint across, provind an error in the opposite case.

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

I am the delta computation function for the transparent action.

I simply sum up the unit deltas across the compliance units.

Link to this function

from_noun(list)

@spec from_noun(Noun.t()) :: {:ok, t()} | :error
Link to this function

partition_check(t)

@spec partition_check(t()) :: {:ok, bool()} | {:error, String.t()}

I am the partition check for a transparent action.

Given an action, I check that the compliance units fully cover it.

@spec to_noun(t()) :: Noun.t()
@spec verify(t()) :: boolean()

I am the action verification function.

I first check that there are no repeated resources across nullified and committed hashes. Then check that the compliance units actually partition the action. Finally, I run logic checks for each created and consumed resource.