Module Single.Timed

type t = {
initial_minimum_balance : Currency.Balance.t;
cliff_time : Mina_numbers.Global_slot.t;
cliff_amount : Currency.Amount.t;
vesting_period : Mina_numbers.Global_slot.t;
vesting_increment : Currency.Amount.t;
}
val to_yojson : t -> Yojson.Safe.t
val _ : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
val vesting_increment : t -> Currency.Amount.t
val vesting_period : t -> Mina_numbers.Global_slot.t
val cliff_amount : t -> Currency.Amount.t
val cliff_time : t -> Mina_numbers.Global_slot.t
val initial_minimum_balance : t -> Currency.Balance.t
module Fields : sig ... end
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val fields : string Core_kernel.Array.t
val of_yojson : Yojson.Safe.t -> ( t, string ) Core_kernel.Result.t