Add manual API helpers: media protection/ladder/access/manifest/chunk clear and revoke helpers, enterprise region management, contribution ledger counts, scheduling deadline and cron clear/cancel, peer scheduler cancelAll, attestation clearChain, encrypted topic unregisterAll, multisig pending proposals, capability purge/revoke, dev profile toggleFlag, PN counter isZero, live edge streamIds, chunk scheduler dequeueBatch, auction clearAll, and two-phase set clearAll. Co-authored-by: Cursor <[email protected]>
hyper-p2p-auction-gossip
Distributed auction room over Hyperswarm gossip: open auctions, place bids, close with winner.
Category: Applications (economy)
Composes with: hyper-p2p-decentralized-oracle, hyper-p2p-credit-ledger
Protocol: auction-gossip/v1
When to use
P2P marketplaces that need bid visibility across peers on a shared topic.
When not to use
Centralized auction houses or single-node simulations without topic.
Quick start
const { HyperP2PAuctionGossip } = require('hyper-p2p-auction-gossip')
const auction = new HyperP2PAuctionGossip({ topic: 'my-auction-topic' })
await auction.ready()
auction.openAuction('lot-1', { item: 'vintage-bike' })
auction.placeBid('lot-1', 42)
await auction.close()
Docs
Test
npm install && npm test