Problem Statement: Auctioning Atoms, Settling on Chain
Frames the product as a hybrid system: an off-chain signed bid order book, an on-chain settlement and escrow core, and a physical custody leg bridged by oracles.
Problem statement
Design a platform that auctions physical assets - watches, art, sneakers, graded cards, machinery, wine - where bidding and final payment happen with on-chain tokens, the winner and the payment are recorded in a smart contract, and the physical item's release, shipping, and delivery are bridged back into that contract through oracles and an escrow release game.
The defining difficulty is that settlement is not atomic. In a pure digital marketplace, transferring the asset and transferring the payment can happen in one transaction. Here the asset is a physical object in a vault or a seller's hands. The chain can move money and a digital deed, but it cannot observe a courier van. Every design decision in this answer flows from that gap: the on-chain layer must hold funds in escrow, release them only against attested physical events, and provide a dispute path when attestation and reality disagree.
The four planes
- Commerce plane: catalog, lot provenance documents, media, KYC eligibility, watchlists, live bid feed, customer promises.
- Order-book plane: off-chain signed bid orders (EIP-712), fair sequencing, proxy bidding, anti-sniping extension, deduplication, rate limits.
- Settlement plane: EVM contracts for auction close, winner commitment, token escrow, batch settlement with Merkle proofs, fee distribution, deed (ERC-721) transfer.
- Physical plane: vault custody, carrier pickup, shipping attestations from oracles, delivery confirmation, inspection window, dispute and arbitration, return logistics.
Why a hybrid order book
Putting every bid on-chain as a transaction costs 60-90k gas per bid and exposes the hot path to MEV and timestamp manipulation. Public practice validates the hybrid: OpenSea's Seaport protocol keeps orders off-chain as signed messages and fulfills them on-chain only at settlement, which is how it absorbed peak monthly volume reported around $4.9B in January 2022 on public analytics dashboards. We adopt the same shape: bids are free, signed, and instantly acked; only close, settlement, escrow transitions, and deed transfers touch the chain.
Public anchors versus assumptions
Christie's sold Beeple's digital work for $69.2M in March 2021, proving high-value on-chain settlement; Sotheby's and Christie's subsequently ran on-chain auction platforms; Aura Blockchain Consortium (founded 2021 by LVMH, Prada and Cartier's parent) registers phygital product tokens on an Ethereum-based consortium chain; Boson Protocol published a redeemable-voucher design for physical goods with a game-theoretic dispute loop; Roth and Ockenfels (American Economic Review, 2002) documented last-minute sniping on eBay, motivating anti-sniping extensions. Those are cited context. Every throughput, storage, and latency number later in this answer is an explicitly labeled design assumption unless cited.
The invariant to state in minute one
Money moves only on-chain; physical truth enters only through attested, bonded, challengeable oracle events; and no escrow release happens without either a clean delivery attestation plus inspection window, or an arbitration outcome. Say that sentence early and the rest of the interview is detail.
Key Highlights
- •Settlement is non-atomic: the chain moves tokens and a deed, never the physical object.
- •Bids are off-chain EIP-712 signed orders; only close, settle, escrow, and deed transfer hit the chain.
- •Four planes: commerce, order book, settlement, physical custody with oracles.
- •Escrow releases only on attested delivery plus inspection window, or arbitration outcome.
- •Public anchors: Seaport hybrid order book, Christie's $69.2M settlement, Aura phygital tokens, Boson dispute game.
Section Rescue Kit
Buzzwords to use:
Safe statements:
- "Let me separate what the chain can prove from what only the physical world can attest, then bridge them with bonded oracles."
- "I will treat bids as free signed messages and reserve chain writes for state that money depends on."