2022-06-08 09:23:52 +00:00
# erc721-watcher
2023-01-09 18:57:40 +00:00
First try the [stack orchestrator ](https://github.com/cerc-io/stack-orchestrator ) to quickly get started. Advanced users can see [here ](/docs/README.md ) for instructions on setting up a local environment by hand.
2023-01-04 19:55:23 +00:00
2022-06-08 09:23:52 +00:00
## Setup
2023-01-04 16:53:50 +00:00
Run the following command to install required packages:
2022-06-08 09:23:52 +00:00
2023-01-04 16:53:50 +00:00
```bash
yarn & & yarn build
```
2022-06-08 09:23:52 +00:00
2023-01-04 16:53:50 +00:00
If the watcher is "active", first run the job-runner:
2022-06-15 05:10:40 +00:00
2023-01-04 16:53:50 +00:00
```bash
yarn job-runner
```
2022-06-08 09:23:52 +00:00
2023-01-04 16:53:50 +00:00
then run the watcher:
2022-11-25 06:01:20 +00:00
2023-01-04 16:53:50 +00:00
```bash
yarn server
```
2022-11-25 06:01:20 +00:00
2023-01-04 16:53:50 +00:00
For "lazy" watchers, you only need to run the above command.
2022-06-08 09:23:52 +00:00
2023-01-04 16:53:50 +00:00
Deploy an ERC721 token:
2022-06-08 09:23:52 +00:00
2023-01-04 16:53:50 +00:00
```bash
yarn nft:deploy
```
```
# NFT deployed to: 0xNFTAddress
```
Export the address of the deployed token to a shell variable for later use:
2022-11-25 06:01:20 +00:00
2023-01-04 16:53:50 +00:00
```bash
export NFT_ADDRESS="0xNFTAddress"
```
2022-06-08 09:23:52 +00:00
2023-01-04 16:53:50 +00:00
Run the following GQL mutation in generated watcher GraphQL endpoint http://127.0.0.1:3006/graphql
```graphql
mutation {
watchContract(
address: "0xNFTAddress"
kind: "ERC721"
checkpoint: true
)
}
```
TODO: settle on WC (signer/primary/main...across the docs)
Get the signer (primary/main) account address and export to a shell variable:
```bash
yarn account
```
```bash
export SIGNER_ADDRESS="0xSignerAddress"
```
Connect MetaMask to `http://localhost:8545` (with chain ID `99` )
Add a an account to Metamask and export the account address to a shell variable for later use:
```bash
export RECIPIENT_ADDRESS="0xRecipientAddress"
```
To get the current block hash at any time, run:
```bash
yarn block:latest
```
Run the following GQL query (`eth_call`) in the GraphQL playground at http://127.0.0.1:3006/graphql
```graphql
query {
name(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
) {
value
proof {
data
}
}
symbol(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
) {
value
proof {
data
}
}
balanceOf(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
owner: "0xSignerAddress"
) {
value
proof {
data
}
}
}
```
Run the following GQL query (`storage`) in generated watcher GraphQL endpoint http://127.0.0.1:3006/graphql
```graphql
query {
_name(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
) {
value
proof {
data
}
}
_symbol(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
) {
value
proof {
data
}
}
_balances(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
key0: "0xSignerAddress"
) {
value
proof {
data
}
}
}
```
Run the following GQL subscription in the playground:
```graphql
subscription {
onEvent {
event {
__typename
... on TransferEvent {
from
to
tokenId
},
... on ApprovalEvent {
owner
approved
tokenId
}
},
block {
number
hash
}
}
}
```
Mint token
```bash
yarn nft:mint --nft $NFT_ADDRESS --to $SIGNER_ADDRESS --token-id 1
```
- A Transfer event to 0xSignerAddress should be visible in the subscription.
- An auto-generated `diff_staged` `State` should be added with parent CID pointing to the initial `checkpoint` `State` .
- Custom property `transferCount` should be 1 initially.
- Run the `getState` query at the endpoint to get the latest `State` for 0xNFTAddress:
```graphql
query {
getState (
blockHash: "EVENT_BLOCK_HASH"
contractAddress: "0xNFTAddress"
# kind: "checkpoint"
# kind: "diff"
kind: "diff_staged"
) {
cid
block {
cid
hash
number
timestamp
parentHash
}
contractAddress
data
}
}
```
- `diff` States get created corresponding to the `diff_staged` blocks when their respective eth_blocks reach the pruned region.
- `data` contains the default state and also the custom state property `transferCount` that is indexed in [hooks.ts ](./src/hooks.ts ) file.
- Get the latest blockHash and run the following query for `transferCount` entity:
```graphql
query {
transferCount(
block: {
hash: "LATEST_BLOCK_HASH"
}
id: "0xNFTAddress"
) {
id
count
}
}
```
*Note: Contract address is assigned to the Entity ID.*
With the latest blockHash, run the following query for `balanceOf` and `ownerOf` (`eth_call`):
```graphql
query {
fromBalanceOf: balanceOf(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
owner: "0xSignerAddress"
) {
value
proof {
data
}
}
toBalanceOf: balanceOf(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
owner: "0xRecipientAddress"
) {
value
proof {
data
}
}
ownerOf(
blockHash: "LATEST_BLOCK_HASH"
contractAddress: "0xNFTAddress"
tokenId: 1
) {
value
proof {
data
}
}
}
```
Transfer token
```bash
yarn nft:transfer --nft $NFT_ADDRESS --from $SIGNER_ADDRESS --to $RECIPIENT_ADDRESS --token-id 1
```
- An Approval event for SIGNER_ADDRESS shall be visible in the subscription at endpoint.
- A Transfer event to $RECIPIENT_ADDRESS shall be visible in the subscription at endpoint.
- An auto-generated `diff_staged` State should be added with parent CID pointing to the previous State.
- Custom property `transferCount` should be incremented after transfer. This can be checked in the `getState` query.
- Get the latest blockHash and replace the blockHash in the above `eth_call` query. The result should be different and the token should be transferred to the recipient.
- Run the `getState` query again at the endpoint with the event blockHash.
- Run the `transferCount` entity query again with the latest blockHash. The updated count should be returned.
- After the `diff` block has been created (can check if event block number pruned in yarn server log), create a checkpoint using CLI in `packages/erc721-watcher` :
```bash
yarn checkpoint create --address $NFT_ADDRESS
```
- Run the `getState` query again with the output blockHash and kind `checkpoint` at the endpoint.
- The latest checkpoint should have the aggregate of state diffs since the last checkpoint.
- The `State` entries can be seen in pg-admin in table `state` .
- The state should have auto indexed data and also custom property `transferCount` according to code in [hooks ](./src/hooks.ts ) file `handleEvent` method.
## Watch
To watch a contract:
```bash
yarn watch:contract --address < contract-address > --kind < contract-kind > --checkpoint < true | false > --starting-block [block-number]
```
2022-06-08 09:23:52 +00:00
* `address` : Address or identifier of the contract to be watched.
* `kind` : Kind of the contract.
* `checkpoint` : Turn checkpointing on (`true` | `false` ).
* `starting-block` : Starting block for the contract (default: `1` ).
Examples:
Watch a contract with its address and checkpointing on:
```bash
2022-06-08 10:38:09 +00:00
yarn watch:contract --address 0x1F78641644feB8b64642e833cE4AFE93DD6e7833 --kind ERC721 --checkpoint true
2022-06-08 09:23:52 +00:00
```
Watch a contract with its identifier and checkpointing on:
```bash
yarn watch:contract --address MyProtocol --kind protocol --checkpoint true
```
* To fill a block range:
```bash
yarn fill --start-block < from-block > --end-block < to-block >
```
* `start-block` : Block number to start filling from.
* `end-block` : Block number till which to fill.
* To create a checkpoint for a contract:
```bash
2022-09-23 10:05:15 +00:00
yarn checkpoint create --address < contract-address > --block-hash [block-hash]
2022-06-08 09:23:52 +00:00
```
* `address` : Address or identifier of the contract for which to create a checkpoint.
* `block-hash` : Hash of a block (in the pruned region) at which to create the checkpoint (default: latest canonical block hash).
* To reset the watcher to a previous block number:
2022-10-19 09:54:14 +00:00
* Reset watcher:
2022-06-08 09:23:52 +00:00
```bash
2022-10-19 09:54:14 +00:00
yarn reset watcher --block-number < previous-block-number >
2022-06-08 09:23:52 +00:00
```
* Reset job-queue:
```bash
2022-11-28 08:44:02 +00:00
yarn reset job-queue
2022-06-08 09:23:52 +00:00
```
2022-11-23 12:12:25 +00:00
* Reset state:
```bash
yarn reset state --block-number < previous-block-number >
```
2022-06-08 09:23:52 +00:00
* `block-number` : Block number to which to reset the watcher.
* To export and import the watcher state:
* In source watcher, export watcher state:
```bash
2022-09-23 10:05:15 +00:00
yarn export-state --export-file [export-file-path] --block-number [snapshot-block-height]
2022-06-08 09:23:52 +00:00
```
2022-09-22 09:56:06 +00:00
* `export-file` : Path of file to which to export the watcher data.
2022-09-23 10:05:15 +00:00
* `block-number` : Block height at which to take snapshot for export.
2022-06-08 09:23:52 +00:00
* In target watcher, run job-runner:
```bash
yarn job-runner
```
* Import watcher state:
```bash
yarn import-state --import-file < import-file-path >
```
2022-09-22 09:56:06 +00:00
* `import-file` : Path of file from which to import the watcher data.
2022-06-08 09:23:52 +00:00
* Run server:
```bash
yarn server
```
* To inspect a CID:
```bash
yarn inspect-cid --cid < cid >
```
* `cid` : CID to be inspected.
2023-01-04 16:53:50 +00:00
## Customize
* Indexing on an event:
* Edit the custom hook function `handleEvent` (triggered on an event) in [hooks.ts ](./src/hooks.ts ) to perform corresponding indexing using the `Indexer` object.
* While using the indexer storage methods for indexing, pass `diff` as true if default state is desired to be generated using the state variables being indexed.
* Generating state:
* Edit the custom hook function `createInitialState` (triggered if the watcher passes the start block, checkpoint: `true` ) in [hooks.ts ](./src/hooks.ts ) to save an initial `State` using the `Indexer` object.
* Edit the custom hook function `createStateDiff` (triggered on a block) in [hooks.ts ](./src/hooks.ts ) to save the state in a `diff` `State` using the `Indexer` object. The default state (if exists) is updated.
* Edit the custom hook function `createStateCheckpoint` (triggered just before default and CLI checkpoint) in [hooks.ts ](./src/hooks.ts ) to save the state in a `checkpoint` `State` using the `Indexer` object.