ReserveInfo

Git Source

Struct of reserve information

  • startTime Start timestamp of minter
  • endTime End timestamp of minter
  • allocation Allocation amount for minter
struct ReserveInfo {
    uint64 startTime;
    uint64 endTime;
    uint128 allocation;
}