@aztec/archiver 0.35.1 → 0.36.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 =
|
|
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.
|
|
3
|
+
"version": "0.36.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.
|
|
46
|
-
"@aztec/circuits.js": "0.
|
|
47
|
-
"@aztec/ethereum": "0.
|
|
48
|
-
"@aztec/foundation": "0.
|
|
49
|
-
"@aztec/kv-store": "0.
|
|
50
|
-
"@aztec/l1-artifacts": "0.
|
|
51
|
-
"@aztec/protocol-contracts": "0.
|
|
52
|
-
"@aztec/types": "0.
|
|
53
|
+
"@aztec/circuit-types": "0.36.0",
|
|
54
|
+
"@aztec/circuits.js": "0.36.0",
|
|
55
|
+
"@aztec/ethereum": "0.36.0",
|
|
56
|
+
"@aztec/foundation": "0.36.0",
|
|
57
|
+
"@aztec/kv-store": "0.36.0",
|
|
58
|
+
"@aztec/l1-artifacts": "0.36.0",
|
|
59
|
+
"@aztec/protocol-contracts": "0.36.0",
|
|
60
|
+
"@aztec/types": "0.36.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 =
|
|
303
|
+
const numUnencryptedLogs = 2;
|
|
304
304
|
const numBlocks = 10;
|
|
305
305
|
let blocks: DataRetrieval<L2Block>;
|
|
306
306
|
|