Module Processor.Accounts_created

type t = {
block_id : int;
account_identifier_id : int;
creation_fee : string;
}
val to_hlist : t -> ( unit, int -> int -> string -> unit ) H_list.t
val of_hlist : ( unit, int -> int -> string -> unit ) H_list.t -> t
val creation_fee : t -> string
val account_identifier_id : t -> int
val block_id : t -> int
module Fields : sig ... end
val typ : t Caqti_type.t
val table_name : string
val add_if_doesn't_exist : (module Caqti_async.CONNECTION) -> int -> Mina_base.Account_id.t -> Currency.Fee.Stable.Latest.t -> ( int * int, [> Caqti_error.call_or_retrieve ] ) Async_kernel__Deferred_result.t
val add_accounts_created_if_don't_exist : (module Caqti_async.CONNECTION) -> int -> (Mina_base.Account_id.t * Currency.Fee.Stable.Latest.t) list -> ( (int * int) list, [> Caqti_error.call_or_retrieve ] ) Core.Result.t Async_kernel__Deferred.t
val all_from_block : (module Caqti_async.CONNECTION) -> int -> ( t list, [> Caqti_error.call_or_retrieve ] ) Stdlib.result Async_kernel.Deferred.t