@aztec/archiver 0.20.0 → 0.21.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.
- package/dest/archiver/archiver.d.ts +12 -1
- package/dest/archiver/archiver.d.ts.map +1 -1
- package/dest/archiver/archiver.js +42 -2
- package/dest/archiver/archiver_store.d.ts +25 -0
- package/dest/archiver/archiver_store.d.ts.map +1 -1
- package/dest/archiver/archiver_store_test_suite.d.ts.map +1 -1
- package/dest/archiver/archiver_store_test_suite.js +30 -1
- package/dest/archiver/data_retrieval.js +1 -1
- package/dest/archiver/eth_log_handlers.d.ts +5 -5
- package/dest/archiver/eth_log_handlers.js +3 -3
- package/dest/archiver/kv_archiver_store/block_store.d.ts.map +1 -1
- package/dest/archiver/kv_archiver_store/block_store.js +4 -5
- package/dest/archiver/kv_archiver_store/contract_class_store.d.ts +13 -0
- package/dest/archiver/kv_archiver_store/contract_class_store.d.ts.map +1 -0
- package/dest/archiver/kv_archiver_store/contract_class_store.js +21 -0
- package/dest/archiver/kv_archiver_store/contract_instance_store.d.ts +13 -0
- package/dest/archiver/kv_archiver_store/contract_instance_store.d.ts.map +1 -0
- package/dest/archiver/kv_archiver_store/contract_instance_store.js +21 -0
- package/dest/archiver/kv_archiver_store/contract_store.js +2 -2
- package/dest/archiver/kv_archiver_store/kv_archiver_store.d.ts +5 -0
- package/dest/archiver/kv_archiver_store/kv_archiver_store.d.ts.map +1 -1
- package/dest/archiver/kv_archiver_store/kv_archiver_store.js +21 -3
- package/dest/archiver/kv_archiver_store/log_store.js +3 -3
- package/dest/archiver/kv_archiver_store/message_store.js +5 -5
- package/dest/archiver/memory_archiver_store/l1_to_l2_message_store.js +1 -1
- package/dest/archiver/memory_archiver_store/memory_archiver_store.d.ts +7 -0
- package/dest/archiver/memory_archiver_store/memory_archiver_store.d.ts.map +1 -1
- package/dest/archiver/memory_archiver_store/memory_archiver_store.js +21 -1
- package/dest/index.d.ts +1 -0
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +2 -1
- package/dest/rpc/archiver_client.d.ts +3 -0
- package/dest/rpc/archiver_client.d.ts.map +1 -0
- package/dest/rpc/archiver_client.js +15 -0
- package/dest/rpc/archiver_server.d.ts +9 -0
- package/dest/rpc/archiver_server.d.ts.map +1 -0
- package/dest/rpc/archiver_server.js +22 -0
- package/dest/rpc/index.d.ts +3 -0
- package/dest/rpc/index.d.ts.map +1 -0
- package/dest/rpc/index.js +3 -0
- package/package.json +10 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/archiver",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": "./dest/index.js",
|
|
6
6
|
"typedocOptions": {
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
"workerThreads": true
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@aztec/circuit-types": "0.
|
|
39
|
-
"@aztec/circuits.js": "0.
|
|
40
|
-
"@aztec/ethereum": "0.
|
|
41
|
-
"@aztec/foundation": "0.
|
|
42
|
-
"@aztec/kv-store": "0.
|
|
43
|
-
"@aztec/l1-artifacts": "0.
|
|
44
|
-
"@types
|
|
38
|
+
"@aztec/circuit-types": "0.21.0",
|
|
39
|
+
"@aztec/circuits.js": "0.21.0",
|
|
40
|
+
"@aztec/ethereum": "0.21.0",
|
|
41
|
+
"@aztec/foundation": "0.21.0",
|
|
42
|
+
"@aztec/kv-store": "0.21.0",
|
|
43
|
+
"@aztec/l1-artifacts": "0.21.0",
|
|
44
|
+
"@aztec/types": "0.21.0",
|
|
45
45
|
"debug": "^4.3.4",
|
|
46
|
-
"lmdb": "^2.9.
|
|
46
|
+
"lmdb": "^2.9.2",
|
|
47
47
|
"lodash.omit": "^4.5.0",
|
|
48
48
|
"tsc-watch": "^6.0.0",
|
|
49
49
|
"tslib": "^2.5.0",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"@jest/globals": "^29.5.0",
|
|
55
55
|
"@types/debug": "^4.1.7",
|
|
56
56
|
"@types/jest": "^29.5.0",
|
|
57
|
+
"@types/lodash.omit": "^4.5.7",
|
|
57
58
|
"@types/node": "^18.15.11",
|
|
58
59
|
"@types/ws": "^8.5.4",
|
|
59
60
|
"concurrently": "^8.0.1",
|