Rivellum

Rivellum Portal

Download Wallet (Chrome)
Checking...
testnet

Production Operations Reference

Operational controls and incident interfaces for live Rivellum dapps.

Runtime Checklist

ControlVerification
RPC healthGET /health, GET /v1/chain
Submit pathPOST /v1/submit acceptance + reason metrics
Contract pathreceipt + replay artifacts available
Event pathstream connected + query backfill healthy
Alertinglag/rejection/failure thresholds wired

Deployment Gate

  1. deterministic replay pass for critical flows
  2. fee envelope policy enforced in submit path
  3. indexer checkpoint recovery test passed
  4. rollback image/tag and runbook prepared

Incident Artifact Set

ArtifactWhere
receipt/v1/mist/receipts/:id
pvi/v1/mist/pvi/:id
replay input/v1/mist/replay_inputs/:id
event window/v1/events/query

SLO/SLI Suggestions

SLITarget
submit success ratio>= 99.9%
receipt availability latency<= 2s p95
stream lag<= 1 batch
replay reproducibility100% for sampled incidents

Runbook Snippets

# node chain status
curl https://rpc.rivellum.network/v1/chain

# recent events
curl https://rpc.rivellum.network/v1/events/recent

# mist receipt
curl https://rpc.rivellum.network/v1/mist/receipts/RECEIPT_ID

Rollback Pattern

  1. freeze writes at app ingress
  2. pin prior portal/backend image tag
  3. validate chain/read surfaces
  4. replay failed receipts against prior release assumptions
  5. reopen writes after invariant checks

Related References

  • /docs/dev/debugging-replay
  • /docs/dev/indexer-frontend-patterns
  • /docs/ops/disaster-recovery