octez-libs.epoxy-tx
V.T
aggregation
bare_functor_outputs
bare_sigs
bare_structs
communication
distribution
octez-libs.aplonk
octez-libs.base
octez-libs.base-test-helpers
octez-libs.bls12-381-hash
octez-libs.bls12-381-polynomial
octez-libs.bls12-381-signature
octez-libs.clic
octez-libs.context
octez-libs.crypto
octez-libs.crypto-dal
octez-libs.distributed-plonk
octez-libs.error-monad
octez-libs.error-monad-legacy
octez-libs.event-logging
octez-libs.event-logging-test-helpers
octez-libs.expect-helper
octez-libs.hacl
octez-libs.kzg
octez-libs.lazy-containers
octez-libs.lwt-result-stdlib
octez-libs.mec
octez-libs.micheline
octez-libs.plompiler
octez-libs.plonk
octez-libs.polynomial
octez-libs.requester
octez-libs.rpc
octez-libs.rpc-http
octez-libs.rpc-http-client
octez-libs.rpc-http-client-unix
octez-libs.rpc-http-server
octez-libs.srs-extraction
octez-libs.stdlib
octez-libs.stdlib-unix
octez-libs.test-helpers
octez-libs.tezos-context
octez-libs.tezos-gossipsub
octez-libs.tezos-p2p-services
octez-libs.tezos-sapling
octez-libs.tezos-workers
octez-libs.tezt-wrapper
octez-libs.tree-encoding
octez-libs.version
plonk_test
tezos_base_p2p_identity_file
tezos_base_unix
tezos_clic_unix
tezos_context_disk
tezos_context_dump
tezos_context_encoding
tezos_context_helpers
tezos_context_memory
tezos_context_merkle_proof_encoding
tezos_context_sigs
tezos_crypto_dal_octez_dal_config
tezos_version_parser
traced_functor_outputs
traced_sigs
traced_structs
traces
module Schnorr : sig ... end
module Merkle : sig ... end
module Bounded_u : sig ... end
type curve_t_u = (L.scalar * L.scalar) L.repr
type curve_base_t_u = L.scalar L.repr
type curve_scalar_t_u = L.scalar L.repr
type !'a ticket_u = {
id : L.scalar L.repr;
amount : 'a Bounded_u.t;
}
type tezos_pkh_u = L.scalar L.repr
type tezos_zkru_u = L.scalar L.repr
type account_u = {
pk : Schnorr.pk L.repr;
tez_balance : Constants.balance Bounded_u.t;
cnt : Constants.counter Bounded_u.t;
tickets_root : L.scalar L.repr;
type leaf_u = {
pos : Constants.position Bounded_u.t;
ticket : Constants.balance ticket_u;
type proof_u = {
path : Merkle.path;
root : L.scalar L.repr;
type account_tree_el_u = {
before : account_u;
after : account_u;
proof : proof_u;
type leaf_tree_el_u = {
before : leaf_u;
after : leaf_u;
type tree_el_u = {
account : account_tree_el_u;
leaf : leaf_tree_el_u;
type header_u = {
op_code : Constants.op_code Bounded_u.t;
price : Constants.balance ticket_u;
l1_dst : tezos_pkh_u;
rollup_id : tezos_zkru_u;
type unsigned_transfer_payload_u = {
src : Constants.position Bounded_u.t;
dst : Constants.position Bounded_u.t;
amount : Constants.amount ticket_u;
fee : Constants.fee Bounded_u.t;
type transfer_payload_u = {
msg : unsigned_transfer_payload_u;
signature : Schnorr.signature;
type transfer_u = {
header : header_u;
payload : transfer_payload_u;
type transfer_storage_u = {
src : tree_el_u;
dst : tree_el_u;
valid : bool L.repr;
type unsigned_create_payload_u = {
type create_payload_u = {
msg : unsigned_create_payload_u;
type create_u = {
payload : create_payload_u;
type create_storage_u = {
next_empty : tree_el_u;
type credit_payload_u = {
type credit_u = {
payload : credit_payload_u;
type credit_storage_u = {
type unsigned_debit_payload_u = {
type debit_payload_u = {
msg : unsigned_debit_payload_u;
type debit_u = {
payload : debit_payload_u;
type debit_storage_u = {