Replies: 1 comment
-
The way we do this on OpenSea is we set the order's zone to an EOA that is allowed to execute the order. Then we collect bids off chain, and when the auction is due to be closed we'll send a tx from the EOA to match the auction with the highest bid. You could also develop an on chain zone to handle bids automatically accepting the highest one when the time is right but then bids would have to be validated or provided on chain, and someone still has to send a transaction to settle the auction. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am in the process of developing an NFT marketplace using Seaport and a custom conduit. I am currently working on implementing the auction process described below:
However, I'm unsure about the architecture required for this feature. I would greatly appreciate any assistance in planning the development of this functionality. Specifically, I need guidance on which Seaport functions to consider and whether it's necessary to store bids offchain or if I can utilize the conduit/zone for this purpose.
Beta Was this translation helpful? Give feedback.
All reactions