All packages
xarb

xarb

rladyd818
v0.1.0/1 downloads/Repository

Package ref

xarb@v0.1.0

Run package

CLI

Run map_events_calls from the command line.

substreams run xarb@v0.1.0 map_events_calls -e base-sepolia --start-block -1
Authenticate by running substreams auth or directly on thegraph.market (see docs).

README

xarb-substreams-hub

Substreams package for xArb hub-side events on Base Sepolia (84532).

Directory

xarb-substreams-hub/
  substreams.yaml
  .env.example
  src/
  build.rs

Build

cd /Users/kd/substreams/xarb-substreams/xarb-substreams-hub
cp -n .env.example .env
substreams build

Run (Events Only)

map_events_only is the default output module used by current propagator flow.

cd /Users/kd/substreams/xarb-substreams/xarb-substreams-hub
substreams run substreams.yaml map_events_only

Optional Run (Events + Calls)

Use map_events_calls only when you need call-level output.

cd /Users/kd/substreams/xarb-substreams/xarb-substreams-hub
set -a
source .env
set +a

substreams run substreams.yaml map_events_calls \
  -p "map_calls=${XARB_HUB_TRACKED_CONTRACTS}"

Tracked Address Sync

When contracts are re-deployed, run the monorepo sync script:

cd /Users/kd/substreams/xarb-substreams
./scripts/redeploy_and_sync_contracts.sh

It updates .env, deployment JSONs, and substreams.yaml filters to latest addresses.

Notes

  • substreams.yaml has static blockFilter values for call indexing modules.
  • If manual edits are made to tracked addresses, rebuild with substreams build.

Modules

Execution graph

8 modules
Show 3 dependencies
map

ethcommon:all_calls

`all_calls` gives you all the calls in a block (including internal calls), with basic block hash/number/timestamp and transaction hash

Output

sf.substreams.ethereum.v1.Calls

map

ethcommon:all_events

`all_events` gives you all the events in a block (from successful transactions), with basic block hash/number/timestamp and transaction hash

Output

sf.substreams.ethereum.v1.Events

blockIndex

ethcommon:index_calls

`index_calls` sets the following keys on the block: * Call contract call_to:0x0123456789abcdef0123456789abcdef01234567 (contract address in hex, prefixed by 0x) * Caller call_from:0x0123456789abcdef0123456789abcdef01234567 (caller address in hex, prefixed by 0x) * Call method call_method:0x01234567 (4 bytes of method signature in hex, prefixed by 0x)

Output

sf.substreams.index.v1.Keys