Module Common.Poly

module Stable : sig ... end
type ('fee, 'public_key, 'nonce, 'global_slot, 'memo) t = ( 'fee, 'public_key, 'nonce, 'global_slot, 'memo ) Stable.Latest.t = {
fee : 'fee;
fee_payer_pk : 'public_key;
nonce : 'nonce;
valid_until : 'global_slot;
memo : 'memo;
}
val to_yojson : ( 'fee -> Yojson.Safe.t ) -> ( 'public_key -> Yojson.Safe.t ) -> ( 'nonce -> Yojson.Safe.t ) -> ( 'global_slot -> Yojson.Safe.t ) -> ( 'memo -> Yojson.Safe.t ) -> ( 'fee, 'public_key, 'nonce, 'global_slot, 'memo ) t -> Yojson.Safe.t
val of_yojson : ( Yojson.Safe.t -> 'fee Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'public_key Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'nonce Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'global_slot Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'memo Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> ( 'fee, 'public_key, 'nonce, 'global_slot, 'memo ) t Ppx_deriving_yojson_runtime.error_or
val equal : ( 'fee -> 'fee -> bool ) -> ( 'public_key -> 'public_key -> bool ) -> ( 'nonce -> 'nonce -> bool ) -> ( 'global_slot -> 'global_slot -> bool ) -> ( 'memo -> 'memo -> bool ) -> ( 'fee, 'public_key, 'nonce, 'global_slot, 'memo ) t -> ( 'fee, 'public_key, 'nonce, 'global_slot, 'memo ) t -> bool
val sexp_of_t : ( 'fee -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'public_key -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'nonce -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'global_slot -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'memo -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'fee, 'public_key, 'nonce, 'global_slot, 'memo ) t -> Ppx_sexp_conv_lib.Sexp.t
val t_of_sexp : ( Ppx_sexp_conv_lib.Sexp.t -> 'fee ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'public_key ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'nonce ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'global_slot ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'memo ) -> Ppx_sexp_conv_lib.Sexp.t -> ( 'fee, 'public_key, 'nonce, 'global_slot, 'memo ) t
val hash_fold_t : ( Ppx_hash_lib.Std.Hash.state -> 'fee -> Ppx_hash_lib.Std.Hash.state ) -> ( Ppx_hash_lib.Std.Hash.state -> 'public_key -> Ppx_hash_lib.Std.Hash.state ) -> ( Ppx_hash_lib.Std.Hash.state -> 'nonce -> Ppx_hash_lib.Std.Hash.state ) -> ( Ppx_hash_lib.Std.Hash.state -> 'global_slot -> Ppx_hash_lib.Std.Hash.state ) -> ( Ppx_hash_lib.Std.Hash.state -> 'memo -> Ppx_hash_lib.Std.Hash.state ) -> Ppx_hash_lib.Std.Hash.state -> ( 'fee, 'public_key, 'nonce, 'global_slot, 'memo ) t -> Ppx_hash_lib.Std.Hash.state