Module type Syncable_intf.S

type root_hash
type hash
type account
type addr
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 -> path
val get_inner_hash_at_addr_exn : t -> addr -> hash
val set_inner_hash_at_addr_exn : t -> addr -> hash -> unit
val set_all_accounts_rooted_at_exn : t -> addr -> account list -> unit
val set_batch_accounts : t -> (addr * account) list -> unit
val get_all_accounts_rooted_at_exn : t -> addr -> (addr * account) 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
val make_space_for : t -> int -> unit