-
Notifications
You must be signed in to change notification settings - Fork 1
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
Match orders #12
Match orders #12
Conversation
Co-authored-by: Zied Guesmi <[email protected]> Co-authored-by: gfournieriExec <[email protected]>
contracts/beacon/IVoucher.sol
Outdated
@@ -6,6 +6,7 @@ pragma solidity ^0.8.20; | |||
interface IVoucher { | |||
event AccountAuthorized(address indexed account); | |||
event AccountUnauthorized(address indexed account); | |||
event VoucherMatchOrders(bytes32 dealId); |
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.
event VoucherMatchOrders(bytes32 dealId); | |
event VoucherOrdersMatched(bytes32 dealId); |
?
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.
Honestl, I am not sure about this suggestion. I don't know if "VoucherOrders" makes sense.
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.
Yes thanks, here is Rename match event which sounds the most meaningful option so far 😄 ..!
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.
Co-authored-by: Zied Guesmi <[email protected]>
Co-authored-by: Zied Guesmi <[email protected]>
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.
Great 👾
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.
Just some minor comments but it looks good to me ✔️
Thanks!
Co-authored-by: Zied Guesmi <[email protected]>
No description provided.