Create Subgraph Project

Create a new folder and project to host the subgraph and install the required dependencies:

mkdir vbd-tokens
cd vbd-tokens
npm init -y
npm install --save @openzeppelin/subgraphs
  1. @openzeppelin/subgraphs provides subgraph scripts and schemas to manage indexing.

Last updated