ponder 0.15.13 → 0.15.15
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 +12 -0
- package/dist/esm/rpc/actions.js +351 -349
- package/dist/esm/rpc/actions.js.map +1 -1
- package/dist/esm/sync-historical/index.js +23 -9
- package/dist/esm/sync-historical/index.js.map +1 -1
- package/dist/types/rpc/actions.d.ts +6 -6
- package/dist/types/rpc/actions.d.ts.map +1 -1
- package/dist/types/sync-historical/index.d.ts.map +1 -1
- package/package.json +7 -7
- package/src/rpc/actions.ts +420 -419
- package/src/sync-historical/index.ts +30 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# ponder
|
|
2
2
|
|
|
3
|
+
## 0.15.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2217](https://github.com/ponder-sh/ponder/pull/2217) [`8f2e557`](https://github.com/ponder-sh/ponder/commit/8f2e557cd08d3573bd5b0cfcd1e813dc55f5f9a5) Thanks [@kyscott18](https://github.com/kyscott18)! - Fixed a bug in JSON-RPC response validation logic that caused `RpcProviderError: Inconsistent RPC response data. The logs array contains two objects with 'logIndex' 0x39d (925)`.
|
|
8
|
+
|
|
9
|
+
## 0.15.14
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#2212](https://github.com/ponder-sh/ponder/pull/2212) [`ef7b50b`](https://github.com/ponder-sh/ponder/commit/ef7b50be335fb0f2b4519a8dcbe1c130acc31dbd) Thanks [@typedarray](https://github.com/typedarray)! - Updated `vite`, `glob`, `graphql`, and `graphql-yoga` dependencies for security patches.
|
|
14
|
+
|
|
3
15
|
## 0.15.13
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|