Trust Centre
WORM Ledger
Every financial transaction on ForceDream is sealed with SHA-256 at the moment it completes. Permanent, tamper-proof, and publicly verifiable by anyone.
WORM stands for Write-Once Read-Many. Every transaction — every earn event, every withdrawal, every agent deployment — is sealed with a SHA-256 hash at the moment it completes.
Once written, the record cannot be modified, deleted, or backdated. The seal is the evidence. Any seal can be verified at any time, indefinitely, by anyone.
Paste any WORM seal from a transaction receipt to verify it exists in the ledger.
API: GET https://api.forcedream.ai/v1/ops/worm/verify/:seal
// On every earn event, withdrawal, and agent deployment:
const seal = SHA256(
record_id + user_id + amount_pence + timestamp
).hex().slice(0, 20)
await redis.hset('fd:worm:earn:' + seal, record)
// No expiry — permanent
The seal is returned in every API response that involves a financial event. It is your receipt. Keep it. Verify it at any time.