@aztec/end-to-end 1.0.0-nightly.20250721 → 1.0.0-nightly.20250722
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/e2e_p2p/shared.js +4 -4
- package/package.json +35 -35
- package/src/e2e_p2p/shared.ts +4 -4
package/dest/e2e_p2p/shared.js
CHANGED
|
@@ -70,15 +70,15 @@ export async function createPXEServiceAndPrepareTransactions(logger, node, numTx
|
|
|
70
70
|
}
|
|
71
71
|
export async function awaitProposalExecution(slashingProposer, timeoutSeconds) {
|
|
72
72
|
await retryUntil(async ()=>{
|
|
73
|
-
const events = await slashingProposer.getEvents.
|
|
73
|
+
const events = await slashingProposer.getEvents.PayloadSubmitted();
|
|
74
74
|
if (events.length === 0) {
|
|
75
75
|
return false;
|
|
76
76
|
}
|
|
77
77
|
const event = events[0];
|
|
78
78
|
const roundNumber = event.args.round;
|
|
79
|
-
const
|
|
80
|
-
return roundNumber &&
|
|
81
|
-
}, '
|
|
79
|
+
const payload = event.args.payload;
|
|
80
|
+
return roundNumber && payload;
|
|
81
|
+
}, 'payload submitted', timeoutSeconds, 1);
|
|
82
82
|
}
|
|
83
83
|
export async function awaitCommitteeExists({ rollup, logger }) {
|
|
84
84
|
logger.info(`Waiting for committee to be set`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/end-to-end",
|
|
3
|
-
"version": "1.0.0-nightly.
|
|
3
|
+
"version": "1.0.0-nightly.20250722",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": "./dest/index.js",
|
|
6
6
|
"inherits": [
|
|
@@ -25,40 +25,40 @@
|
|
|
25
25
|
"formatting": "run -T prettier --check ./src && run -T eslint ./src"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@aztec/accounts": "1.0.0-nightly.
|
|
29
|
-
"@aztec/archiver": "1.0.0-nightly.
|
|
30
|
-
"@aztec/aztec": "1.0.0-nightly.
|
|
31
|
-
"@aztec/aztec-node": "1.0.0-nightly.
|
|
32
|
-
"@aztec/aztec.js": "1.0.0-nightly.
|
|
33
|
-
"@aztec/bb-prover": "1.0.0-nightly.
|
|
34
|
-
"@aztec/blob-lib": "1.0.0-nightly.
|
|
35
|
-
"@aztec/blob-sink": "1.0.0-nightly.
|
|
36
|
-
"@aztec/bot": "1.0.0-nightly.
|
|
37
|
-
"@aztec/cli": "1.0.0-nightly.
|
|
38
|
-
"@aztec/constants": "1.0.0-nightly.
|
|
39
|
-
"@aztec/entrypoints": "1.0.0-nightly.
|
|
40
|
-
"@aztec/epoch-cache": "1.0.0-nightly.
|
|
41
|
-
"@aztec/ethereum": "1.0.0-nightly.
|
|
42
|
-
"@aztec/foundation": "1.0.0-nightly.
|
|
43
|
-
"@aztec/kv-store": "1.0.0-nightly.
|
|
44
|
-
"@aztec/l1-artifacts": "1.0.0-nightly.
|
|
45
|
-
"@aztec/merkle-tree": "1.0.0-nightly.
|
|
46
|
-
"@aztec/noir-contracts.js": "1.0.0-nightly.
|
|
47
|
-
"@aztec/noir-noirc_abi": "1.0.0-nightly.
|
|
48
|
-
"@aztec/noir-protocol-circuits-types": "1.0.0-nightly.
|
|
49
|
-
"@aztec/noir-test-contracts.js": "1.0.0-nightly.
|
|
50
|
-
"@aztec/p2p": "1.0.0-nightly.
|
|
51
|
-
"@aztec/protocol-contracts": "1.0.0-nightly.
|
|
52
|
-
"@aztec/prover-client": "1.0.0-nightly.
|
|
53
|
-
"@aztec/prover-node": "1.0.0-nightly.
|
|
54
|
-
"@aztec/pxe": "1.0.0-nightly.
|
|
55
|
-
"@aztec/sequencer-client": "1.0.0-nightly.
|
|
56
|
-
"@aztec/simulator": "1.0.0-nightly.
|
|
57
|
-
"@aztec/slasher": "1.0.0-nightly.
|
|
58
|
-
"@aztec/stdlib": "1.0.0-nightly.
|
|
59
|
-
"@aztec/telemetry-client": "1.0.0-nightly.
|
|
60
|
-
"@aztec/validator-client": "1.0.0-nightly.
|
|
61
|
-
"@aztec/world-state": "1.0.0-nightly.
|
|
28
|
+
"@aztec/accounts": "1.0.0-nightly.20250722",
|
|
29
|
+
"@aztec/archiver": "1.0.0-nightly.20250722",
|
|
30
|
+
"@aztec/aztec": "1.0.0-nightly.20250722",
|
|
31
|
+
"@aztec/aztec-node": "1.0.0-nightly.20250722",
|
|
32
|
+
"@aztec/aztec.js": "1.0.0-nightly.20250722",
|
|
33
|
+
"@aztec/bb-prover": "1.0.0-nightly.20250722",
|
|
34
|
+
"@aztec/blob-lib": "1.0.0-nightly.20250722",
|
|
35
|
+
"@aztec/blob-sink": "1.0.0-nightly.20250722",
|
|
36
|
+
"@aztec/bot": "1.0.0-nightly.20250722",
|
|
37
|
+
"@aztec/cli": "1.0.0-nightly.20250722",
|
|
38
|
+
"@aztec/constants": "1.0.0-nightly.20250722",
|
|
39
|
+
"@aztec/entrypoints": "1.0.0-nightly.20250722",
|
|
40
|
+
"@aztec/epoch-cache": "1.0.0-nightly.20250722",
|
|
41
|
+
"@aztec/ethereum": "1.0.0-nightly.20250722",
|
|
42
|
+
"@aztec/foundation": "1.0.0-nightly.20250722",
|
|
43
|
+
"@aztec/kv-store": "1.0.0-nightly.20250722",
|
|
44
|
+
"@aztec/l1-artifacts": "1.0.0-nightly.20250722",
|
|
45
|
+
"@aztec/merkle-tree": "1.0.0-nightly.20250722",
|
|
46
|
+
"@aztec/noir-contracts.js": "1.0.0-nightly.20250722",
|
|
47
|
+
"@aztec/noir-noirc_abi": "1.0.0-nightly.20250722",
|
|
48
|
+
"@aztec/noir-protocol-circuits-types": "1.0.0-nightly.20250722",
|
|
49
|
+
"@aztec/noir-test-contracts.js": "1.0.0-nightly.20250722",
|
|
50
|
+
"@aztec/p2p": "1.0.0-nightly.20250722",
|
|
51
|
+
"@aztec/protocol-contracts": "1.0.0-nightly.20250722",
|
|
52
|
+
"@aztec/prover-client": "1.0.0-nightly.20250722",
|
|
53
|
+
"@aztec/prover-node": "1.0.0-nightly.20250722",
|
|
54
|
+
"@aztec/pxe": "1.0.0-nightly.20250722",
|
|
55
|
+
"@aztec/sequencer-client": "1.0.0-nightly.20250722",
|
|
56
|
+
"@aztec/simulator": "1.0.0-nightly.20250722",
|
|
57
|
+
"@aztec/slasher": "1.0.0-nightly.20250722",
|
|
58
|
+
"@aztec/stdlib": "1.0.0-nightly.20250722",
|
|
59
|
+
"@aztec/telemetry-client": "1.0.0-nightly.20250722",
|
|
60
|
+
"@aztec/validator-client": "1.0.0-nightly.20250722",
|
|
61
|
+
"@aztec/world-state": "1.0.0-nightly.20250722",
|
|
62
62
|
"@iarna/toml": "^2.2.5",
|
|
63
63
|
"@jest/globals": "^30.0.0",
|
|
64
64
|
"@noble/curves": "^1.0.0",
|
package/src/e2e_p2p/shared.ts
CHANGED
|
@@ -112,16 +112,16 @@ export async function awaitProposalExecution(
|
|
|
112
112
|
) {
|
|
113
113
|
await retryUntil(
|
|
114
114
|
async () => {
|
|
115
|
-
const events = await slashingProposer.getEvents.
|
|
115
|
+
const events = await slashingProposer.getEvents.PayloadSubmitted();
|
|
116
116
|
if (events.length === 0) {
|
|
117
117
|
return false;
|
|
118
118
|
}
|
|
119
119
|
const event = events[0];
|
|
120
120
|
const roundNumber = event.args.round;
|
|
121
|
-
const
|
|
122
|
-
return roundNumber &&
|
|
121
|
+
const payload = event.args.payload;
|
|
122
|
+
return roundNumber && payload;
|
|
123
123
|
},
|
|
124
|
-
'
|
|
124
|
+
'payload submitted',
|
|
125
125
|
timeoutSeconds,
|
|
126
126
|
1,
|
|
127
127
|
);
|