Module Db.TRANSACTIONS

type t = {
tr_lt : int64;
tr_id : string;
block_id : string;
json : string option;
}
val add : tr_lt:int64 -> tr_id:string -> block_id:string -> json:string -> unit Lwt.t
val list : ?before_lt:int64 -> ?json:bool -> unit -> t list Lwt.t