Auction
Type
struct Depositor {
uint256 deposit;
bool isWhitelisted;
bool hasWithdrawn;
}Event
event LiquidityPercentageUpdate(uint256 newValue);
event WhitelistedAddress(address indexed account);
event Deposit(address indexed account, uint256 amount);
event Withdrawal(address indexed account, uint256 amount);Error
error AlreadyWithdrawn();
error AlreadyWhitelisted();
error Ended();
error InvalidInput();
error InvalidPercentage();
error InvalidWhitelisting();
error NotEnded();
error NotStarted();
error NotWhitelisted();
error Started();
error Unauthorized();Function
Last updated