Module Mina_base.Fee_transfer

module Single : sig ... end
module Stable : sig ... end
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
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
val compare : t -> t -> int
val hash_fold_t : Ppx_hash_lib.Std.Hash.state -> t -> Ppx_hash_lib.Std.Hash.state
val hash : t -> Ppx_hash_lib.Std.Hash.hash_value
type single = private Single.t = {
receiver_pk : Mina_base_import.Public_key.Compressed.t;
fee : Currency.Fee.t;
fee_token : Token_id.t;
}
val single_to_yojson : single -> Yojson.Safe.t
val single_of_yojson : Yojson.Safe.t -> single Ppx_deriving_yojson_runtime.error_or
val sexp_of_single : single -> Ppx_sexp_conv_lib.Sexp.t
val single_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> single
val compare_single : single -> single -> int
val hash_fold_single : Ppx_hash_lib.Std.Hash.state -> single -> Ppx_hash_lib.Std.Hash.state
val hash_single : single -> Ppx_hash_lib.Std.Hash.hash_value
include Core_kernel.Comparable.S with type t := t
val (>=) : t -> t -> bool
val (<=) : t -> t -> bool
val (=) : t -> t -> bool
val (>) : t -> t -> bool
val (<) : t -> t -> bool
val (<>) : t -> t -> bool
val equal : t -> t -> bool
val compare : t -> t -> int
val min : t -> t -> t
val max : t -> t -> t
val ascending : t -> t -> int
val descending : t -> t -> int
val between : t -> low:t -> high:t -> bool
val clamp_exn : t -> min:t -> max:t -> t
val clamp : t -> min:t -> max:t -> t Base__.Or_error.t
type comparator_witness
val comparator : ( t, comparator_witness ) Base__Comparator.comparator
val validate_lbound : min:t Base__.Maybe_bound.t -> t Base__.Validate.check
val validate_ubound : max:t Base__.Maybe_bound.t -> t Base__.Validate.check
val validate_bound : min:t Base__.Maybe_bound.t -> max:t Base__.Maybe_bound.t -> t Base__.Validate.check
module Replace_polymorphic_compare : sig ... end
module Map : sig ... end
module Set : sig ... end
val create : Single.t -> Single.t option -> t Core_kernel.Or_error.t
val create_single : receiver_pk:Mina_base_import.Public_key.Compressed.t -> fee:Currency.Fee.t -> fee_token:Token_id.t -> t
val to_singles : t -> Single.t One_or_two.t
val of_singles : Single.t One_or_two.t -> t Core_kernel.Or_error.t
val fee_excess : t -> Fee_excess.t Core_kernel.Or_error.t
val fee_token : single -> Token_id.t
val fee_tokens : t -> Token_id.t One_or_two.t
val receiver_pks : t -> Mina_base_import.Public_key.Compressed.t list
val receivers : t -> Account_id.t list
val map : t -> f:( Single.t -> 'b ) -> 'b One_or_two.t
val fold : t -> init:'acc -> f:( 'acc -> Single.t -> 'acc ) -> 'acc
val to_list : t -> Single.t list
val to_numbered_list : t -> (int * Single.t) list