memoscan
← all memos

Memo 0x1d8629ca…8af9a4 on Ethereum

upgrade(address,address)# AuctionHouse.sol Upgrade: BidWithComment **tl;dr:** This upgrade gives bidders the option to leave a comment alongside their bid - preferably reasons for why they'd like to become lil nouner, what they'd add to the community, or why and how a particular lil noun caught their eye. **How it works** Currently, the AuctionHouse contract takes note of key information: bid amount, bidder, time of bid, whether the bid increased auction time (a last-minute bid), and for every bid, emits them as an `AuctionBid` contract event. This gives off-chain services (like frontends or analytic tools) the ability to provide relevant auction information to their users. This upgrade adds an additional string field to the `AuctionBid` contract event so that comments associated with a given bid can be surfaced alongside other key auction information. **example of lilnouns.wtf running BidWithComment upgrade** ![auction starts](https://i.postimg.cc/4djFgMkf/lil22.png) ![post auction](https://i.postimg.cc/wTD6Kjky/Screenshot-2023-06-16-at-03-00-20.png) ![post auction bids](https://i.postimg.cc/pVw21FKM/Screenshot-2023-06-16-at-03-01-11.png) h/t to Zora for their `MintWithComment` update. Thanks to to Elad for looking over the upgrade, and mikegood.⌐◨-◨ for helping test. ### **Proposal Transactions for Humans** 1. `upgrade`: tells the AuctionHouse proxy contract to point to a new AuctionHouse.sol contract.