RefundInfo

Git Source

Struct of refund information

  • lastPrice Price of last sale before selling out
  • minterInfo Mapping of minter address to struct of minter information
struct RefundInfo {
    uint256 lastPrice;
    mapping(address minter => MinterInfo) minterInfo;
}