Dev Update 002 - The Infrastructure Behind the Ecosystem
Hey Unchained Community,
The AI Tool Hub and Vault get most of the attention in these updates. That's fair, they're the most visible parts of what we're building. But there's a layer underneath that doesn't get talked about enough, and this update is about that.
Three protocols form the infrastructure backbone of Solana Unchained: the Commerce Protocol, the Social Recovery Protocol, and the Inheritance Protocol. All three are currently in internal testnet. Here's where each one stands.
Commerce Protocol
The on-chain Voucher Registry and Payment Processor contracts are written and functional in test environments. The architecture works as designed: a user initiates a purchase, tokens move to escrow, a Voucher Purchased event fires on-chain, and the fulfillment layer delivers the code. No KYC. No custody. The protocol operates entirely at the token level as the user's identity is never involved, only their wallet address and token balance.
What we're still validating is relayer network behavior under edge conditions. Specifically: what happens when a relayer misses a fulfillment event, and how the dispute mechanism responds. Relayers must stake tokens to participate, so the incentive structure for honest behavior is already in place. The contracts are solid. The edge case testing continues.
Social Recovery Protocol
The M-of-N guardian model is implemented. The timelock logic is in place. The program-derived account setup for guardian storage is working correctly in testnet. A 3-of-5 configuration, five guardians, any three required to initiate recovery, with a 48-hour cancellation window runs as expected.
Current focus is the cancellation flow. If a legitimate owner needs to interrupt a malicious recovery attempt, that path has to work cleanly every time. The consequences of failure there are severe enough that it gets treated accordingly.
Inheritance Protocol
The heartbeat mechanism, inactivity threshold tracking, and beneficiary claim flow are all functional independently. Current work is making them interact correctly under all conditions, particularly how the delayed distribution window behaves when it overlaps with a heartbeat reset near the inactivity boundary. The design is intentionally conservative. Normal on-chain activity is the heartbeat. The inheritance trigger only fires after a full waiting period with no activity at all. That's a high bar by design.
The Solana Unchained Dev Team