Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/auction/Auction.sol
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ contract Auction is IAuction, VersionedContract, UUPS, Ownable, ReentrancyGuard,
/// @param _treasury The treasury address where ETH will be sent
/// @param _duration The duration of each auction
/// @param _reservePrice The reserve price of each auction
/// @param _founderRewardRecipient The address to recieve founders rewards
/// @param _founderRewardRecipient The address to receive founders rewards
/// @param _founderRewardBps The percent of rewards a founder receives in BPS for each auction
function initialize(
address _token,
Expand Down
2 changes: 1 addition & 1 deletion src/token/Token.sol
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ contract Token is IToken, VersionedContract, UUPS, Ownable, ReentrancyGuard, ERC
// Compute the vesting schedule
uint256 schedule = 100 / founderPct;

// Used to store the base token id the founder will recieve
// Used to store the base token id the founder will receive
uint256 baseTokenId = 0;

// For each token to vest:
Expand Down