Mina_base.Fee_transfer
module Single : sig ... end
module Stable : sig ... end
type t = Stable.Latest.t
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
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 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 comparator : ( t, comparator_witness ) Base__Comparator.comparator
module Replace_polymorphic_compare : sig ... end
module Map : sig ... end
module Set : sig ... end
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 fee_payer_pk : t -> Mina_base_import.Public_key.Compressed.t
val map : t -> f:( Single.t -> 'b ) -> 'b One_or_two.t