-
Notifications
You must be signed in to change notification settings - Fork 13
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
Integrate Bid Transactions into actual flow #160
Conversation
Couple of questions on some values: Auction Minimum Bid: What actually is this value / where does it come from? Allow access to DAI: Is this also setting AllowanceAmount: What's this used for / Do I use even this or is it for the wallet popup? |
Good question, I think I forgot to fetch this value. Will open a new PR to add this value to each auction
This is actually not a binary value as initially thought of, but a BigNumber. In the auth store it's called |
So the proposal for this PR is to:
|
Do I keep |
Sorry for the confusion. You can keep the |
Any ideas already on how to mock the wallet popup / depositing stuff in the fake container and storybook? 🙂 |
Clicking it can just add enough DAI to participate, so you can basically skip the popup logic. |
As discussed in today's meeting, the bidding logic is still missing and the button currently just executes the same way as a swap transaction. |
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.
Everything else looks good, the only thing left is to merge #163 and attach it to the button. If you're blocked, you can already do that (git merge bidding-with-dai-logic
into your branch)
…egrate-bid-transaction
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.
- The minimum to deposit amount in
DepositBlock
should update properly with each price drop (currently only after browser refresh) - The finished auction state is not displayed properly. Bid button is still clickable (throwing an error) and the etherscan link is not displayed (see loom 1 below)
1
https://www.loom.com/share/cfaf4ba6abb54986a811015f64ff187d
This should be probably done in #163 |
Makes sense. Fine to remove it then for this flow for now. |
closes #125