@aztec/archiver 0.35.1 → 0.37.0

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.
@@ -225,7 +225,7 @@ export function describeArchiverDataStore(testName, getStore) {
225
225
  describe('getUnencryptedLogs', () => {
226
226
  const txsPerBlock = 4;
227
227
  const numPublicFunctionCalls = 3;
228
- const numUnencryptedLogs = 4;
228
+ const numUnencryptedLogs = 2;
229
229
  const numBlocks = 10;
230
230
  let blocks;
231
231
  beforeEach(async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/archiver",
3
- "version": "0.35.1",
3
+ "version": "0.37.0",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "typedocOptions": {
@@ -39,19 +39,26 @@
39
39
  },
40
40
  "extensionsToTreatAsEsm": [
41
41
  ".ts"
42
+ ],
43
+ "reporters": [
44
+ [
45
+ "default",
46
+ {
47
+ "summaryThreshold": 9999
48
+ }
49
+ ]
42
50
  ]
43
51
  },
44
52
  "dependencies": {
45
- "@aztec/circuit-types": "0.35.1",
46
- "@aztec/circuits.js": "0.35.1",
47
- "@aztec/ethereum": "0.35.1",
48
- "@aztec/foundation": "0.35.1",
49
- "@aztec/kv-store": "0.35.1",
50
- "@aztec/l1-artifacts": "0.35.1",
51
- "@aztec/protocol-contracts": "0.35.1",
52
- "@aztec/types": "0.35.1",
53
+ "@aztec/circuit-types": "0.37.0",
54
+ "@aztec/circuits.js": "0.37.0",
55
+ "@aztec/ethereum": "0.37.0",
56
+ "@aztec/foundation": "0.37.0",
57
+ "@aztec/kv-store": "0.37.0",
58
+ "@aztec/l1-artifacts": "0.37.0",
59
+ "@aztec/protocol-contracts": "0.37.0",
60
+ "@aztec/types": "0.37.0",
53
61
  "debug": "^4.3.4",
54
- "lmdb": "^2.9.2",
55
62
  "lodash.groupby": "^4.6.0",
56
63
  "lodash.omit": "^4.5.0",
57
64
  "tsc-watch": "^6.0.0",
@@ -300,7 +300,7 @@ export function describeArchiverDataStore(testName: string, getStore: () => Arch
300
300
  describe('getUnencryptedLogs', () => {
301
301
  const txsPerBlock = 4;
302
302
  const numPublicFunctionCalls = 3;
303
- const numUnencryptedLogs = 4;
303
+ const numUnencryptedLogs = 2;
304
304
  const numBlocks = 10;
305
305
  let blocks: DataRetrieval<L2Block>;
306
306