@latticexyz/store-indexer 2.0.0-next.10 → 2.0.0-next.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +10 -12
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@latticexyz/store-indexer",
|
3
|
-
"version": "2.0.0-next.
|
3
|
+
"version": "2.0.0-next.11",
|
4
4
|
"description": "Minimal Typescript indexer for Store",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -30,12 +30,12 @@
|
|
30
30
|
"postgres": "^3.3.5",
|
31
31
|
"rxjs": "7.5.5",
|
32
32
|
"superjson": "^1.12.4",
|
33
|
-
"viem": "1.
|
33
|
+
"viem": "1.14.0",
|
34
34
|
"zod": "^3.21.4",
|
35
|
-
"@latticexyz/block-logs-stream": "2.0.0-next.
|
36
|
-
"@latticexyz/common": "2.0.0-next.
|
37
|
-
"@latticexyz/store": "2.0.0-next.
|
38
|
-
"@latticexyz/store-sync": "2.0.0-next.
|
35
|
+
"@latticexyz/block-logs-stream": "2.0.0-next.11",
|
36
|
+
"@latticexyz/common": "2.0.0-next.11",
|
37
|
+
"@latticexyz/store": "2.0.0-next.11",
|
38
|
+
"@latticexyz/store-sync": "2.0.0-next.11"
|
39
39
|
},
|
40
40
|
"devDependencies": {
|
41
41
|
"@types/better-sqlite3": "^7.6.4",
|
@@ -57,13 +57,11 @@
|
|
57
57
|
"dev": "tsup --watch",
|
58
58
|
"lint": "eslint .",
|
59
59
|
"start:postgres": "tsx bin/postgres-indexer",
|
60
|
-
"start:postgres:local": "DATABASE_URL=postgres://127.0.0.1/postgres
|
61
|
-
"start:postgres:testnet": "DATABASE_URL=postgres://127.0.0.1/postgres
|
62
|
-
"start:postgres:testnet2": "DATABASE_URL=postgres://127.0.0.1/postgres CHAIN_ID=4243 pnpm start:postgres",
|
60
|
+
"start:postgres:local": "DEBUG=mud:store-sync:createStoreSync DATABASE_URL=postgres://127.0.0.1/postgres RPC_HTTP_URL=http://127.0.0.1:8545 pnpm start:postgres",
|
61
|
+
"start:postgres:testnet": "DEBUG=mud:store-sync:createStoreSync DATABASE_URL=postgres://127.0.0.1/postgres RPC_HTTP_URL=https://follower.testnet-chain.linfra.xyz pnpm start:postgres",
|
63
62
|
"start:sqlite": "tsx bin/sqlite-indexer",
|
64
|
-
"start:sqlite:local": "SQLITE_FILENAME=anvil.db
|
65
|
-
"start:sqlite:testnet": "SQLITE_FILENAME=testnet.db
|
66
|
-
"start:sqlite:testnet2": "SQLITE_FILENAME=testnet2.db CHAIN_ID=4243 pnpm start:sqlite",
|
63
|
+
"start:sqlite:local": "DEBUG=mud:store-sync:createStoreSync SQLITE_FILENAME=anvil.db RPC_HTTP_URL=http://127.0.0.1:8545 pnpm start:sqlite",
|
64
|
+
"start:sqlite:testnet": "DEBUG=mud:store-sync:createStoreSync SQLITE_FILENAME=testnet.db RPC_HTTP_URL=https://follower.testnet-chain.linfra.xyz pnpm start:sqlite",
|
67
65
|
"test": "tsc --noEmit --skipLibCheck",
|
68
66
|
"test:ci": "pnpm run test"
|
69
67
|
}
|