Docs / Integrations / Adapters

Ethereum Adapter

Normalize chain transactions with chain_id, parties, value/token, and gas risk metadata.

What it does

Normalize chain transactions with chain_id, parties, value/token, and gas risk metadata.

How it works

1. Validate intent

Adapter checks structure only (required fields, types, unknown fields). It does not run policy logic.

2. Normalize action

Intent is mapped to a generic NormalizedAction with action type CHAIN_TX.

3. Evaluate policy

Governor evaluates centrally with fail-closed semantics. Any uncertainty returns deny.

4. Build plan + execute

Execution plan is descriptive. Default path is dry-run and returns planned external calls.

5. Emit evidence

Decision output includes deterministic evidence packet and stable evidence hash.

Why this is useful

Removes adapter-specific policy drift by centralizing decisions.
Creates one audit and evidence model across all integrations.
Supports safe rollout with dry-run first and explicit approval paths.
Improves incident response because every decision has a deterministic hash.

Use it for

EVM transaction approvals and traceability

Tier: Tier 5 · Blockchain
Adapter ID: ethereum
Action family: CHAIN_TX

Example intent

{
  "action": "send_tx",
  "chain_id": 1,
  "from": "0xabc...",
  "to": "0xdef...",
  "value": "0.5 ETH",
  "gas_estimate": 120000,
  "requested_by": "chain-agent"
}

Where to monitor