Module Ledger_proof

module type S = sig ... end
module Prod : S with type t = Transaction_snark.t
include S with type t = Prod.t
type t = Prod.t
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
val compare : t -> t -> int
val equal : t -> t -> bool
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t
val hash_fold_t : Ppx_hash_lib.Std.Hash.state -> t -> Ppx_hash_lib.Std.Hash.state
val hash : t -> Ppx_hash_lib.Std.Hash.hash_value
module Stable : sig ... end
val create : statement:Transaction_snark.Statement.t -> sok_digest:Mina_base.Sok_message.Digest.t -> proof:Mina_base.Proof.t -> t
val statement : t -> Transaction_snark.Statement.t
val sok_digest : t -> Mina_base.Sok_message.Digest.t
val underlying_proof : t -> Mina_base.Proof.t
module For_tests : sig ... end