Skip to main content
Automated operators monitor vault state 24/7, define rule-based strategies via the Strategy Canvas, pause services on anomaly detection, and execute operations without human latency. SuperVaults supports full programmatic control via the Erebor management API and the Strategy Engine.

Authentication for Automation

Generate a JWT without the browser:
  1. Sign an EIP-712 auth message with your wallet’s private key
  2. Submit the signature to Dynamic.xyz to receive a JWT
  3. Pass the JWT as Authorization: Bearer <jwt> on all requests
Verify against Erebor:

Safety Principles

Automated scripts have full manager-level access. A bug can modify live vault configuration. Apply these safeguards before deploying.

Test on Base First

Base (chain ID: 8453) has lower gas costs and faster confirmation times. Validate all automation against Base vaults before Ethereum mainnet.

Rate Limit Polling

DataRecommended Interval
Vault state15s
Analytics overview60s
Service health30s

Circuit Breakers

Stop automation on consecutive API failures:

Validate Before Writing

Before pushing strategy or configuration changes:
  1. Fetch current state
  2. Validate the proposed change is meaningful
  3. Confirm yield sources are all still whitelisted
  4. Apply change
  5. Re-fetch and verify the change was applied

Example: Strategy-Driven Vault Monitoring

Fetches vault state from Erebor and checks key health indicators:

Next Steps

Monitoring

Poll vault state and build alert conditions.

Webhooks

Audit logs as interim event stream.