From be0af38807d88fc73467d0070d77ee220caec755 Mon Sep 17 00:00:00 2001 From: Karolis Ramanauskas Date: Wed, 25 Sep 2024 15:06:36 +0300 Subject: [PATCH] Update .changeset/silent-hairs-heal.md Co-authored-by: Kevin Ingersoll --- .changeset/silent-hairs-heal.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.changeset/silent-hairs-heal.md b/.changeset/silent-hairs-heal.md index 28224732f5..acb192bd21 100644 --- a/.changeset/silent-hairs-heal.md +++ b/.changeset/silent-hairs-heal.md @@ -1,5 +1,19 @@ --- "@latticexyz/explorer": patch +"create-mud": patch --- -The local store indexer has been integrated into the Explorer package and now runs directly as part of it, without any external setup. +Explorer now automatically starts a local indexer when using Anvil as the target chain. + +If you previously had an `indexer` entry in your `mprocs.yaml` file, it can now be removed. + +```diff +- indexer: +- cwd: packages/contracts +- shell: shx rm -rf $SQLITE_FILENAME && pnpm sqlite-indexer +- env: +- DEBUG: mud:* +- RPC_HTTP_URL: "http://127.0.0.1:8545" +- FOLLOW_BLOCK_TAG: "latest" +- SQLITE_FILENAME: "indexer.db" +```