- This is a generated Substreams-powered-Subgraph
To try the Substreams directly, you need to install the substreams CLI
(v1.7.2 or above).
You have many options as explained in this installation guide.
Check if substreams
was installed successfully, you can run the following command:
substreams --version
> substreams version ...
To try the Substreams directly or to run a local graph-node instance, you will need to get a Substreams API token.
Follow the instructions on the authentification section in the StreamingFast
documentation.
To run a local graph-node
instance, you will need to install Docker. You can do it by following the instructions on the official Docker website.
To run the proto assembly script bindings, you will need to install the buf
cli.
You can run the entire stack (docker
, npm
installations and graph
creation with deployment) by running the below script
./run-local.sh
However, if you want to run each commen individually, follow the instructions below:
Run the following command in the root
of the repository:
npm install
npm run generate
npm run codegen
To deploy your subgraph locally, you need to run a local graph-node instance. To do so, export your SUBSTREAMS_API_TOKEN
and
use the launch-graph-node
script :
docker compose -f dev-environment/docker-compose.yml up -d --wait
This script is running docker compose
to create all necessary instances to launch properly the node locally, connecting to Streamingfast Substreams API.
Then, from another terminal:
export SUBSTREAMS_API_TOKEN = "YOUR_TOKEN"
npm run create-local
npm run deploy-local
npm run remove-local
Once you subgraph is deployed, you can query it! To do so, you can directly write your query locally on http://localhost:8000/subgraphs/name/{name_of_your_subgraph}/