-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Nearly done] - Fractional integration with PartyBid #52
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lots of work still to do to clean up console.logs etc, couple of edge cases in the market wrapper to consider
/** | ||
* @notice Submit bid to Market contract | ||
*/ | ||
function bid(uint256 auctionId, uint256 bidAmount) external override { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing edge case of placing first bid
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought about that - bids might be stuck indefinitely if not enough people join the party to hit the reserve price. Do we want to enable users to optimistically try for a reserve price at the risk of locking up funds indefinitely?
All the core pieces are in place, just need to resolve one remaining bug with WETH contract addresses existing.