Devnet Deployments
All four programs are live on Solana devnet. Program IDs, explorer links, and upgrade authority below. Mainnet deployment is pending — see the roadmap at the bottom.
Programs
| Layer | Program | Program ID | Explorer |
|---|---|---|---|
| L4 | writ_gate | 3tpfhT2m1vF7FCLsGazbEPFRiRnjgwk2CnC3yeonas7M | open |
| L3 | reputation | F8yFcvoXpupNahzJ2wSKDBErqKgmE7ws1gVVtdAq33FC | open |
| L2 | delegation | EnoPMLDuLo33PUvYBekpaTzyembPuZD82PAcv3qvRFxK | open |
| L1 | writ_registry | FrEcFzPx9zqooVp1GmkMdiNXkpgcx3UJRN97YUR9MFTk | open |
Upgrade authority
Upgrade authority
5dVpzr3cU3nCFypi5RGBshq429dDF1AvSXrFKqZxzYnkAuthority type
devnet deploy wallet (ephemeral)
Upgrade policy
freely upgradable on devnet; mainnet will transition to DAO multisig
Devnet is not productionDevnet deployments are resettable and may be upgraded without notice. Do not build production flows against these IDs. When mainnet ships, the IDs will change; a migration guide will be published on this page.
RPC
$ solana config set --url https://api.devnet.solana.com
$ solana config getPublic devnet rate limits airdrops; for sustained testing use a paid provider:
- Helius —
https://devnet.helius-rpc.com - Triton One —
https://api.devnet.rpcpool.com - QuickNode —
https://api.quicknode.com/solana-devnet/<id>
Test writs
The team publishes a set of pre-registered devnet writs with known reputation levels for integration testing. Load them via the SDK:
import { loadTestWrit } from "@writnetwork/sdk/test";
const fresh = await loadTestWrit("WRIT_TEST_FRESH");
const trusted = await loadTestWrit("WRIT_TEST_TRUSTED");Health endpoint
The canonical machine-readable deployment manifest is served at writ.network/api/health:
{
"status": "ok",
"name": "writ-protocol",
"network": "solana-devnet",
"stage": "devnet",
"version": "0.4.1",
"programs": {
"writ_gate": "3tpfhT2m1vF7FCLsGazbEPFRiRnjgwk2CnC3yeonas7M",
"reputation": "F8yFcvoXpupNahzJ2wSKDBErqKgmE7ws1gVVtdAq33FC",
"delegation": "EnoPMLDuLo33PUvYBekpaTzyembPuZD82PAcv3qvRFxK",
"writ_registry": "FrEcFzPx9zqooVp1GmkMdiNXkpgcx3UJRN97YUR9MFTk"
}
}Roadmap
| Milestone | Status |
|---|---|
| Four programs deployed to devnet | ✓ shipped |
| TypeScript SDK v0.4 | in progress |
| Trusted setup ceremony | scheduled |
| Audit (halborn or equivalent) | scheduled post-ceremony |
| Mainnet beta deploy | target Q3 2026 |
| Reputation council v0.5 | design only |
| Upgrade authority → DAO multisig | at mainnet |