TaxInfo

Git Source

Struct of tax information

  • startTime Timestamp of when harberger taxation begins
  • foreclosureTime Timestamp of token foreclosure
  • currentPrice Current listing price of token
  • depositAmount Total amount of taxes deposited
struct TaxInfo {
    uint48 startTime;
    uint48 foreclosureTime;
    uint80 currentPrice;
    uint80 depositAmount;
}