Anoma.RM.Transparent.Transaction (Anoma v0.31.0)
I am the Transaction module for the TRM.
I provide access to the interfaces needed to interact with the transparent transaction structure.
Public API
I provide the following public functionality
Summary
Functions
I am the action precis function for the transparent transaction.
I am the actions check for the transparent transaction.
I am the compose interface for transparent transaction.
I am the transparent transaction creation interface.
I am the transparent transaction delta.
I am the disjointness verification function for the transparent transaction.
I am the transparent transaction verification function.
Types
@type t() :: %Anoma.RM.Transparent.Transaction{ actions: MapSet.t(Anoma.RM.Transparent.Action.t()), delta_proof: <<_::0>>, roots: MapSet.t(integer()) }
Functions
action_precis(t)
@spec action_precis(t()) :: {:ok, %{created: MapSet.t(integer()), consumed: MapSet.t(integer())}} | {:error, String.t()}
I am the action precis function for the transparent transaction.
Given a transaction, I go through the actions contained therein gathering all consumed and created resource hashes. If any action has an intersection, I error.
actions_check(t)
@spec actions_check(t()) :: bool()
I am the actions check for the transparent transaction.
I verify each action in the approprite field using the provided interface.
compose(t1, t2)
I am the compose interface for transparent transaction.
I take unions of the provided roots and actions.
create(roots, actions)
@spec create(MapSet.t(integer()), MapSet.t(Anoma.RM.Transparent.Action.t())) :: t()
I am the transparent transaction creation interface.
Given roots and actions, I create an appropriate transaction.
delta(t)
I am the transparent transaction delta.
Given a transaction, I simply sum over the contained actions.
disjointness_verification(t)
@spec disjointness_verification(t()) :: bool()
I am the disjointness verification function for the transparent transaction.
I check whether all actions are disjoint in terms of created and consumed resources.
from_noun(list)
to_noun(t)
verify(t)
@spec verify(t()) :: bool()
I am the transparent transaction verification function.
I provide all the specified checks for the transaction to be considered valid.