Skip to main content

Network Information

  • Network ID: adi-testnet
  • Portal Status: ✓ Available
  • Real-time Streaming: ✓ Available
  • State Diffs: Not Available
  • Traces: ✓ Available

Endpoints

V2 archives will be sunset soon. Migrate to Portal →

Portal Quickstart

You can take one of the three routes:
  1. Use Squid SDK (opinionated, battle-tested, subgraph-like)
  2. Use Pipes SDK (flexible, composable, in beta)
  3. Directly query the Portal API from your app.
    curl -X POST 'https://portal.sqd.dev/datasets/adi-testnet/stream' \
    -H 'Content-Type: application/json' \
    -d '{
       "type": "evm",
       "fromBlock": 0,
       "toBlock": 1000000,
       "fields": {
          "block": { "number": true, "hash": true },
          "log": { "address": true, "topics": true, "data": true }
       },
       "logs": [{
          "address": ["0x4200000000000000000000000000000000000006"]
       }]
    }'