From 12706af6ae59bbe9a0bcd16553e648d966cb8326 Mon Sep 17 00:00:00 2001 From: Brad Bayliss Date: Fri, 15 Aug 2025 09:25:54 +0100 Subject: [PATCH 1/2] [ENJ-234] Update Canary Indexer Archive Endpoints --- docs/02-guides/02-blockchain/03-running-enjin-indexer.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/02-guides/02-blockchain/03-running-enjin-indexer.md b/docs/02-guides/02-blockchain/03-running-enjin-indexer.md index cb784b3..ab61f2a 100644 --- a/docs/02-guides/02-blockchain/03-running-enjin-indexer.md +++ b/docs/02-guides/02-blockchain/03-running-enjin-indexer.md @@ -144,7 +144,7 @@ REDIS_URL=redis://indexer_redis:6379/1 ```dotenv # .env (for Canary Relaychain) -ARCHIVE_ENDPOINT=https://v2.archive.subsquid.io/network/canary-relay +ARCHIVE_ENDPOINT=# no archive endpoint available for Canary Relaychain CHAIN_ENDPOINT=wss://archive.relay.canary.enjin.io CHAIN_PREFIX=69 DB_HOST=indexer_db @@ -158,7 +158,7 @@ REDIS_URL=redis://indexer_redis:6379/2 ```dotenv # .env (for Canary Matrixchain) -ARCHIVE_ENDPOINT=https://v2.archive.subsquid.io/network/canary-matrix +ARCHIVE_ENDPOINT=https://v2.archive.subsquid.io/network/enjin-canary-matrix CHAIN_ENDPOINT=wss://archive.matrix.canary.enjin.io CHAIN_PREFIX=9030 DB_HOST=indexer_db @@ -192,7 +192,7 @@ NODE_ENV: Node.js environment (supported values: development, production) CHAIN_ENDPOINT: [Required] WebSocket endpoint to connect to. It is recommended to be set to your own Enjin archive node. CHAIN_PREFIX: [Required] The chain prefix (SS58) of the chain you are connecting to. -ARCHIVE_ENDPOINT: [Required] Subsquid archive endpoint for historical blockchain data. +ARCHIVE_ENDPOINT: [Optional] Subsquid archive endpoint for historical blockchain data. See: https://docs.sqd.ai/subsquid-network/reference/networks/https://docs.sqd.ai/subsquid-network/reference/networks/ DB_NAME: [Required] Postgres database name. DB_HOST: [Required] Postgres host. From e1d41396be6edbae8e2e30c39d2a4c4a0a479d30 Mon Sep 17 00:00:00 2001 From: Brad Bayliss Date: Fri, 15 Aug 2025 09:27:23 +0100 Subject: [PATCH 2/2] Remove stale reference to "Enjin Matrixchain Indexer" --- docs/02-guides/02-blockchain/03-running-enjin-indexer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-guides/02-blockchain/03-running-enjin-indexer.md b/docs/02-guides/02-blockchain/03-running-enjin-indexer.md index ab61f2a..319c11a 100644 --- a/docs/02-guides/02-blockchain/03-running-enjin-indexer.md +++ b/docs/02-guides/02-blockchain/03-running-enjin-indexer.md @@ -184,7 +184,7 @@ You can read the [GraphQL Documentation](https://graphql.org/learn/) for more in cd indexer ``` 2. Configure Environment Variables - In the repository, you will find a `.env.example` file that outlines the necessary environment variables for running the Enjin Matrixchain Indexer. Copy this file to create your own `.env` file: `cp .env.example .env` + In the repository, you will find a `.env.example` file that outlines the necessary environment variables for running the Enjin Indexer. Copy this file to create your own `.env` file: `cp .env.example .env` Then, open the .env file in a text editor and fill in the missing values. Below is an example of the environment variables and their purpose: ```text