project screenshot 1
project screenshot 2
project screenshot 3

Lens Collect Auctions

Run Dutch (decreasing) & English (increasing bids) auctions for collecting Lens posts

Lens Collect Auctions

Created At

LFGrow

Winner of

trophy

🥇 Lens Protocol — Best use of Collect Module

trophy

🏆 LFGrow Finalist

Project Description

After posting something, other users can collect those posts as NFTs.

This hack implements a Dutch auction for those collects (the price starts at certain level and keeps decreasing over time. The first user to collect wins the auction and pays the price at that point for the collect NFT), as well as an English auction (users can make increasing bids during the time of the auction, and at the end the highest bidder wins the collect NFT).

How it's Made

I built two solidity Lens collect modules: Dutch & English auction with basic tests. To showcase how it works I also built a Vue frontend in Polygon Finity style that shows some example posts and interacts with the contracts locally to show the bidding and collecting in action.

The Dutch auction is a relatively straightforward modification of existing fixed-fee modules. Instead of the fixed fee, the contract calculatse the current price according to the auction logic and then charge that price instead.

The English auction is more complicated. First, the bidding calls itself need to be done outside the Lens API. At the end of the auction time period an actual collect() should be allowed. If only the winner can call collect() then funds can be locked up for very long if he never gets back and both the post creator and treasury can't get the funds.

I therefore implemented it so that collect() can only be called by the English auction module itself. It will then temporarily become the owner of the collect NFT and then passes it on to the actual auction winner. This means that any user can trigger the auction result to be processed and that as a post creator you don't have to wait for the highest bidder to collect if you want to get the funds.

background image mobile

Join the mailing list

Get the latest news and updates