Anoma.RM.Transparent.ProvingSystem.CPS (Anoma v0.31.0)

I am the compliance proving system module for the TRM.

I provide the main interface for everything that has to do with the TRM compliance.

Public API

I provide the following public functionality

Summary

Functions

A am the root verification function for the TRM compliance prooving system.

I am the TRM compliance proving system verifying and proving key.

I am the TRM compliance proving system prove interface.

I am the verification function for the TRM compliance proving system.

I am the commitment verification function for the TRM.

I am the delta verification function of the TRM implementation of the compliance proof system.

I am the verify jet. I am to be used as the jet of the verification gate in the Nockma standard library.

I am the nullifier verification function of the TRM

Types

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

Functions

Link to this function

check_nullified_has_been_created(res, rt)

@spec check_nullified_has_been_created(Anoma.RM.Transparent.Resource.t(), integer()) ::
  true | {:error, String.t()}

A am the root verification function for the TRM compliance prooving system.

Given a resource and a root of the accumulator, if the resource is not ephemeral, I decode the root to provide access to the underlying set and verify that the resource is indeed contained in it.

Link to this function

from_noun(list)

@spec from_noun(Noun.t()) :: {:ok, t()} | :error
@spec key() :: binary()

I am the TRM compliance proving system verifying and proving key.

Namely, I am the identifier of the verification gate encoded into the Nockma standard library. In particular, I am the jam of the logic of the verify gate.

Developer warning: this means that if the layer in which the gate is located changes, this value may change as well.

@spec prove(<<_::0>>, Anoma.RM.Transparent.ProvingSystem.CPS.Instance.t(), <<_::0>>) ::
  <<_::0>>

I am the TRM compliance proving system prove interface.

As we are in the transparent case, this is always trivial.

@spec to_noun(t()) :: Noun.t()
Link to this function

verify(jammed_predicate, instance, arg)

I am the verification function for the TRM compliance proving system.

I cue the jammed predicate given, then evaluate it giving the instance as an argument.

Link to this function

verify_cms_compliance(consumed)

@spec verify_cms_compliance([{integer(), integer()}]) ::
  {:ok, MapSet.t(Anoma.RM.Transparent.Resource.t())} | {:error, String.t()}

I am the commitment verification function for the TRM.

I check that the commitments provided are indeed commitments of some resources.

Link to this function

verify_delta(consumed, created, unitdelta)

I am the delta verification function of the TRM implementation of the compliance proof system.

I check that the delta of the unit is computed correctly.

Link to this function

verify_jet(consumed, created, unitdelta)

@spec verify_jet(
  [{integer(), integer(), integer()}],
  [{integer(), integer()}],
  integer()
) :: boolean()

I am the verify jet. I am to be used as the jet of the verification gate in the Nockma standard library.

I check the constraints as specified by the RM specification.

Link to this function

verify_nulfs_compliance(consumed)

@spec verify_nulfs_compliance([{integer(), integer()}]) ::
  {:ok, MapSet.t(Anoma.RM.Transparent.Resource.t())} | {:error, String.t()}

I am the nullifier verification function of the TRM

I check that the nullifiers provided are indeed nullifiers of some resources and that, moreover, these are in specified accumulators.

See check_nullified_has_been_created/2 for more info.