-
Notifications
You must be signed in to change notification settings - Fork 35
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
fix: show cli events correctly #645
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.
Thanks Nico! just a few comments
log += `with id ${args.id}` | ||
break | ||
case events.publicationSuccessful: | ||
case eventNames.AuctionSuccessful: | ||
case eventNames.OrderSuccessful: | ||
log += `with id ${args.id} and winner ${args.winner}` |
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.
Remember for OrderSuccessful
has the winner
as buyer
log += `with id ${args.id} and buyer ${event.args.winner || event.args.buyer}`
log += `with data ${args.data}` | ||
break | ||
case events.parcelTransfer: | ||
case eventNames.Transfer: | ||
log += `to ${args.to}` |
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.
IDK if it worth but FYI, for Estates
the _to
arg it _to
This reverts commit f78cd4a.
No description provided.