@aztec/txe 4.1.0-rc.4 → 4.1.1-rc.1
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.
|
@@ -9,9 +9,7 @@ import { Fr } from '@aztec/foundation/curves/bn254';
|
|
|
9
9
|
*/ export class TXEArchiver extends ArchiverDataSourceBase {
|
|
10
10
|
updater = new ArchiverDataStoreUpdater(this.store);
|
|
11
11
|
constructor(db){
|
|
12
|
-
const store = new KVArchiverDataStore(db, 9999
|
|
13
|
-
epochDuration: 32
|
|
14
|
-
});
|
|
12
|
+
const store = new KVArchiverDataStore(db, 9999);
|
|
15
13
|
super(store);
|
|
16
14
|
}
|
|
17
15
|
async addCheckpoints(checkpoints, result) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/txe",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1-rc.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": "./dest/index.js",
|
|
6
6
|
"bin": "./dest/bin/index.js",
|
|
@@ -61,20 +61,20 @@
|
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@aztec/accounts": "4.1.
|
|
65
|
-
"@aztec/archiver": "4.1.
|
|
66
|
-
"@aztec/aztec-node": "4.1.
|
|
67
|
-
"@aztec/aztec.js": "4.1.
|
|
68
|
-
"@aztec/bb-prover": "4.1.
|
|
69
|
-
"@aztec/constants": "4.1.
|
|
70
|
-
"@aztec/foundation": "4.1.
|
|
71
|
-
"@aztec/key-store": "4.1.
|
|
72
|
-
"@aztec/kv-store": "4.1.
|
|
73
|
-
"@aztec/protocol-contracts": "4.1.
|
|
74
|
-
"@aztec/pxe": "4.1.
|
|
75
|
-
"@aztec/simulator": "4.1.
|
|
76
|
-
"@aztec/stdlib": "4.1.
|
|
77
|
-
"@aztec/world-state": "4.1.
|
|
64
|
+
"@aztec/accounts": "4.1.1-rc.1",
|
|
65
|
+
"@aztec/archiver": "4.1.1-rc.1",
|
|
66
|
+
"@aztec/aztec-node": "4.1.1-rc.1",
|
|
67
|
+
"@aztec/aztec.js": "4.1.1-rc.1",
|
|
68
|
+
"@aztec/bb-prover": "4.1.1-rc.1",
|
|
69
|
+
"@aztec/constants": "4.1.1-rc.1",
|
|
70
|
+
"@aztec/foundation": "4.1.1-rc.1",
|
|
71
|
+
"@aztec/key-store": "4.1.1-rc.1",
|
|
72
|
+
"@aztec/kv-store": "4.1.1-rc.1",
|
|
73
|
+
"@aztec/protocol-contracts": "4.1.1-rc.1",
|
|
74
|
+
"@aztec/pxe": "4.1.1-rc.1",
|
|
75
|
+
"@aztec/simulator": "4.1.1-rc.1",
|
|
76
|
+
"@aztec/stdlib": "4.1.1-rc.1",
|
|
77
|
+
"@aztec/world-state": "4.1.1-rc.1",
|
|
78
78
|
"zod": "^3.23.8"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
@@ -17,7 +17,7 @@ export class TXEArchiver extends ArchiverDataSourceBase {
|
|
|
17
17
|
private readonly updater = new ArchiverDataStoreUpdater(this.store);
|
|
18
18
|
|
|
19
19
|
constructor(db: AztecAsyncKVStore) {
|
|
20
|
-
const store = new KVArchiverDataStore(db, 9999
|
|
20
|
+
const store = new KVArchiverDataStore(db, 9999);
|
|
21
21
|
super(store);
|
|
22
22
|
}
|
|
23
23
|
|