Module Account_timing.Poly

module Stable : sig ... end
type ('slot, 'balance, 'amount) t = ( 'slot, 'balance, 'amount ) Stable.Latest.t =
| Untimed
| Timed of {
initial_minimum_balance : 'balance;
cliff_time : 'slot;
cliff_amount : 'amount;
vesting_period : 'slot;
vesting_increment : 'amount;
}
val to_yojson : 'slot 'balance 'amount. ( 'slot -> Yojson.Safe.t ) -> ( 'balance -> Yojson.Safe.t ) -> ( 'amount -> Yojson.Safe.t ) -> ( 'slot, 'balance, 'amount ) t -> Yojson.Safe.t
val of_yojson : 'slot 'balance 'amount. ( Yojson.Safe.t -> 'slot Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'balance Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'amount Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> ( 'slot, 'balance, 'amount ) t Ppx_deriving_yojson_runtime.error_or
val _ : ( Yojson.Safe.t -> 'a Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'b Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'c Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> ( 'a, 'b, 'c ) t Ppx_deriving_yojson_runtime.error_or
val t_of_sexp : 'slot 'balance 'amount. ( Ppx_sexp_conv_lib.Sexp.t -> 'slot ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'balance ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'amount ) -> Ppx_sexp_conv_lib.Sexp.t -> ( 'slot, 'balance, 'amount ) t
val sexp_of_t : 'slot 'balance 'amount. ( 'slot -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'balance -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'amount -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'slot, 'balance, 'amount ) t -> Ppx_sexp_conv_lib.Sexp.t
val equal : 'slot 'balance 'amount. ( 'slot -> 'slot -> bool ) -> ( 'balance -> 'balance -> bool ) -> ( 'amount -> 'amount -> bool ) -> ( 'slot, 'balance, 'amount ) t -> ( 'slot, 'balance, 'amount ) t -> bool
val hash_fold_t : 'slot 'balance 'amount. ( Ppx_hash_lib.Std.Hash.state -> 'slot -> Ppx_hash_lib.Std.Hash.state ) -> ( Ppx_hash_lib.Std.Hash.state -> 'balance -> Ppx_hash_lib.Std.Hash.state ) -> ( Ppx_hash_lib.Std.Hash.state -> 'amount -> Ppx_hash_lib.Std.Hash.state ) -> Ppx_hash_lib.Std.Hash.state -> ( 'slot, 'balance, 'amount ) t -> Ppx_hash_lib.Std.Hash.state
val compare : 'slot 'balance 'amount. ( 'slot -> 'slot -> int ) -> ( 'balance -> 'balance -> int ) -> ( 'amount -> 'amount -> int ) -> ( 'slot, 'balance, 'amount ) t -> ( 'slot, 'balance, 'amount ) t -> int