@aztec/ethereum 0.87.2 → 0.87.3
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/config.js +3 -3
- package/package.json +4 -4
- package/src/config.ts +3 -3
package/dest/config.js
CHANGED
|
@@ -2,10 +2,10 @@ import { bigintConfigHelper, booleanConfigHelper, getConfigFromMappings, numberC
|
|
|
2
2
|
import { l1TxUtilsConfigMappings } from './l1_tx_utils.js';
|
|
3
3
|
export const DefaultL1ContractsConfig = {
|
|
4
4
|
ethereumSlotDuration: 12,
|
|
5
|
-
aztecSlotDuration:
|
|
6
|
-
aztecEpochDuration:
|
|
5
|
+
aztecSlotDuration: 36,
|
|
6
|
+
aztecEpochDuration: 32,
|
|
7
7
|
aztecTargetCommitteeSize: 48,
|
|
8
|
-
aztecProofSubmissionWindow:
|
|
8
|
+
aztecProofSubmissionWindow: 64,
|
|
9
9
|
minimumStake: BigInt(100e18),
|
|
10
10
|
slashingQuorum: 6,
|
|
11
11
|
slashingRoundSize: 10,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/ethereum",
|
|
3
|
-
"version": "0.87.
|
|
3
|
+
"version": "0.87.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"../package.common.json"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@aztec/blob-lib": "0.87.
|
|
36
|
-
"@aztec/foundation": "0.87.
|
|
37
|
-
"@aztec/l1-artifacts": "0.87.
|
|
35
|
+
"@aztec/blob-lib": "0.87.3",
|
|
36
|
+
"@aztec/foundation": "0.87.3",
|
|
37
|
+
"@aztec/l1-artifacts": "0.87.3",
|
|
38
38
|
"@viem/anvil": "^0.0.10",
|
|
39
39
|
"dotenv": "^16.0.3",
|
|
40
40
|
"tslib": "^2.4.0",
|
package/src/config.ts
CHANGED
|
@@ -44,10 +44,10 @@ export type L1ContractsConfig = {
|
|
|
44
44
|
|
|
45
45
|
export const DefaultL1ContractsConfig = {
|
|
46
46
|
ethereumSlotDuration: 12,
|
|
47
|
-
aztecSlotDuration:
|
|
48
|
-
aztecEpochDuration:
|
|
47
|
+
aztecSlotDuration: 36,
|
|
48
|
+
aztecEpochDuration: 32,
|
|
49
49
|
aztecTargetCommitteeSize: 48,
|
|
50
|
-
aztecProofSubmissionWindow:
|
|
50
|
+
aztecProofSubmissionWindow: 64, // you have a full epoch to submit a proof after the epoch to prove ends
|
|
51
51
|
minimumStake: BigInt(100e18),
|
|
52
52
|
slashingQuorum: 6,
|
|
53
53
|
slashingRoundSize: 10,
|