Skip to content

@latticexyz/[email protected]

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 25 Sep 18:43
· 1133 commits to main since this release
bdf2882

Minor Changes

  • #1526 498d05e3 Thanks @holic! - You can now install and run @latticexyz/store-indexer from the npm package itself, without having to clone/build the MUD repo:

    npm install @latticexyz/store-indexer
    
    npm sqlite-indexer
    # or
    npm postgres-indexer

    or

    npx -p @latticexyz/store-indexer sqlite-indexer
    # or
    npx -p @latticexyz/store-indexer postgres-indexer

    The binary will also load the nearby .env file for easier local configuration.

    We've removed the CHAIN_ID requirement and instead require just a RPC_HTTP_URL or RPC_WS_URL or both. You can now also adjust the polling interval with POLLING_INTERVAL (defaults to 1000ms, which corresponds to MUD's default block time).

Patch Changes