Module 1-Inputs.MT

type t
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
type path
val depth : t -> int
val num_accounts : t -> int
val merkle_path_at_addr_exn : t -> Addr.t -> path
val get_inner_hash_at_addr_exn : t -> Addr.t -> Hash.t
val set_inner_hash_at_addr_exn : t -> Addr.t -> Hash.t -> unit
val set_all_accounts_rooted_at_exn : t -> Addr.t -> Account.t list -> unit
val set_batch_accounts : t -> (Addr.t * Account.t) list -> unit
val get_all_accounts_rooted_at_exn : t -> Addr.t -> (Addr.t * Account.t) list

Get all of the accounts that are in a subtree of the underlying Merkle tree rooted at `address`. The accounts are ordered by their addresses.

val merkle_root : t -> Root_hash.t
val make_space_for : t -> int -> unit