-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .changeset/silent-hairs-heal.md
Co-authored-by: Kevin Ingersoll <[email protected]>
- Loading branch information
Showing
1 changed file
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
``` |