# The Graph v1 Model Verification
-----
The following is the process taken in verifying The Graph cadCAD model with actual events pulled from The Graph.
## Pulling data
We start off by pulling The Graph network events from the following subgraph: [https://thegraph.com/legacy-explorer/subgraph/fordn/graph-network-events](https://thegraph.com/legacy-explorer/subgraph/fordn/graph-network-events).
We take data from the StakeDelegated, StakeDelegatedLocked, StakeDelegatedWithdawn, AllocationCollected, and AllocationClosed fields to verify with the cadCAD model.
## Time alignment
In order to align the lock time for withdrawing delegations with cadCAD timesteps, we convert blockNumber to epochs using the following formula:
$$ \frac{blockNumber - 11474307}{6500} + 1$$
## Single Action Verification
We verify single actions using a single event from the data we pulled. This is verified for each of the different events we pulled above.
## Verification using all events of a Single Indexer
Next, as our model currently only supports a single indexer, we filter the event data we pulled to only include a single indexer. We chose indexer 0xfb5b40098cdfec1564ae5b94d4deed116b887d08 as they include all actions and there aren't too many events to process.