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
Functions
I am the Action module of the TRM.
I provide the interfaces for handling transparent actions.
Public API
I provide the following public functionality
delta/1
verify/1
cu_check/1
cu_precis/1
partition_check/1
created_logic_check/2
consumed_logic_check/2
create/3
consumed_logic_check(t)
I am the function to check consumed resource logics.
I go through the consumed resources and verify them using the proving system interface.
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.
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.
cu_check(t)
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.
cu_precis(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.
delta(t)
I am the delta computation function for the transparent action.
I simply sum up the unit deltas across the compliance units.
from_noun(list)
partition_check(t)
I am the partition check for a transparent action.
Given an action, I check that the compliance units fully cover it.
to_noun(t)
verify(t)
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.