feat(modules): manual deepen OTA, CRDTs, economy, trust, spatial index

OTA phases remaining, PN counter reset, map clear, marketplace counts,
auction bid helpers, multisig missing signatures, spatial clearLocal.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-05-21 02:36:05 -04:00
co-authored by Cursor
parent e3007294ff
commit 55339b3536
10 changed files with 68 additions and 4 deletions
@@ -106,6 +106,15 @@ class HyperP2PAuctionGossip extends EventEmitter {
return true
}
bidCount (auctionId) {
const a = this._auctions.get(auctionId)
return a ? a.bids.length : 0
}
hasAuction (auctionId) {
return this._auctions.has(String(auctionId))
}
_gossip (payload) {
if (!this._peerMsgs) return
gossipSend(this, payload)