eslint-config-ponder 0.0.91 → 0.0.92

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/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # eslint-config-ponder
2
2
 
3
+ ## 0.0.92
4
+
3
5
  ## 0.0.91
4
6
 
5
7
  ## 0.0.90
package/README.md CHANGED
@@ -61,13 +61,14 @@ Ponder fetches event logs for the contracts added to `ponder.config.ts`, and pas
61
61
 
62
62
  ```ts
63
63
  // ponder.config.ts
64
+ import { http } from "viem";
64
65
 
65
66
  export const config = {
66
67
  networks: [
67
68
  {
68
69
  name: "mainnet",
69
70
  chainId: 1,
70
- rpcUrl: "https://eth-mainnet.g.alchemy.com/v2/...",
71
+ transport: http("https://eth-mainnet.g.alchemy.com/v2/..."),
71
72
  },
72
73
  ],
73
74
  contracts: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-ponder",
3
- "version": "0.0.91",
3
+ "version": "0.0.92",
4
4
  "description": "ESLint config for Ponder apps",
5
5
  "license": "MIT",
6
6
  "main": "./index.js",