Module Processor.Token

type t = {
value : string;
owner_public_key_id : int option;
owner_token_id : int option;
}
val to_hlist : t -> ( unit, string -> int option -> int option -> unit ) H_list.t
val of_hlist : ( unit, string -> int option -> int option -> unit ) H_list.t -> t
val owner_token_id : t -> int option
val owner_public_key_id : t -> int option
val value : t -> string
module Fields : sig ... end
val typ : t Caqti_type.t
val table_name : string
val find_by_id : (module Caqti_async.CONNECTION) -> int -> ( t, [> Caqti_error.call_or_retrieve ] ) Stdlib.result Async_kernel.Deferred.t
val make_finder : ( 'a -> string -> 'b ) -> ( string Caqti_type.t -> int Caqti_type.t -> string -> 'c ) -> Mina_base.Account_id.Digest.t -> 'd
val find : (module Caqti_async.CONNECTION) -> Mina_base.Account_id.Digest.t -> ( int, [> Caqti_error.call_or_retrieve ] ) Stdlib.result Async_kernel.Deferred.t
val find_opt : (module Caqti_async.CONNECTION) -> Mina_base.Account_id.Digest.t -> ( int option, [> Caqti_error.call_or_retrieve ] ) Stdlib.result Async_kernel.Deferred.t
val add_if_doesn't_exist : (module Caqti_async.CONNECTION) -> Mina_base.Account_id.Digest.t -> ( int, [> Caqti_error.call_or_retrieve ] ) Async_kernel__Deferred_result.t