@aztec/end-to-end 0.0.1-commit.f1df4d2 → 0.0.1-commit.f2ce05ee

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.
Files changed (34) hide show
  1. package/dest/bench/client_flows/config.d.ts +2 -2
  2. package/dest/bench/client_flows/config.d.ts.map +1 -1
  3. package/dest/bench/client_flows/config.js +18 -0
  4. package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.d.ts +1 -1
  5. package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.d.ts.map +1 -1
  6. package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.js +3 -2
  7. package/dest/e2e_epochs/epochs_test.d.ts +1 -1
  8. package/dest/e2e_epochs/epochs_test.d.ts.map +1 -1
  9. package/dest/e2e_epochs/epochs_test.js +2 -1
  10. package/dest/e2e_p2p/shared.d.ts +1 -1
  11. package/dest/e2e_p2p/shared.d.ts.map +1 -1
  12. package/dest/e2e_p2p/shared.js +3 -0
  13. package/dest/e2e_storage_proof/fixtures/storage_proof_fetcher.d.ts +2 -0
  14. package/dest/e2e_storage_proof/fixtures/storage_proof_fetcher.d.ts.map +1 -0
  15. package/dest/e2e_storage_proof/fixtures/storage_proof_fetcher.js +184 -0
  16. package/dest/e2e_storage_proof/fixtures/storage_proof_fixture.d.ts +18 -0
  17. package/dest/e2e_storage_proof/fixtures/storage_proof_fixture.d.ts.map +1 -0
  18. package/dest/e2e_storage_proof/fixtures/storage_proof_fixture.js +120 -0
  19. package/dest/fixtures/setup_p2p_test.d.ts +10 -5
  20. package/dest/fixtures/setup_p2p_test.d.ts.map +1 -1
  21. package/dest/fixtures/setup_p2p_test.js +6 -3
  22. package/dest/shared/uniswap_l1_l2.d.ts +1 -1
  23. package/dest/shared/uniswap_l1_l2.d.ts.map +1 -1
  24. package/dest/shared/uniswap_l1_l2.js +7 -5
  25. package/package.json +39 -39
  26. package/src/bench/client_flows/config.ts +9 -1
  27. package/src/e2e_cross_chain_messaging/cross_chain_messaging_test.ts +3 -4
  28. package/src/e2e_epochs/epochs_test.ts +1 -0
  29. package/src/e2e_p2p/shared.ts +1 -0
  30. package/src/e2e_storage_proof/fixtures/storage_proof.json +915 -0
  31. package/src/e2e_storage_proof/fixtures/storage_proof_fetcher.ts +190 -0
  32. package/src/e2e_storage_proof/fixtures/storage_proof_fixture.ts +173 -0
  33. package/src/fixtures/setup_p2p_test.ts +16 -7
  34. package/src/shared/uniswap_l1_l2.ts +7 -9
@@ -6,7 +6,7 @@ import { Fr } from '@aztec/aztec.js/fields';
6
6
  import { RollupContract } from '@aztec/ethereum/contracts';
7
7
  import { deployL1Contract } from '@aztec/ethereum/deploy-l1-contract';
8
8
  import { extractEvent } from '@aztec/ethereum/utils';
9
- import { CheckpointNumber, EpochNumber } from '@aztec/foundation/branded-types';
9
+ import { EpochNumber } from '@aztec/foundation/branded-types';
10
10
  import { sha256ToField } from '@aztec/foundation/crypto/sha256';
11
11
  import { InboxAbi, UniswapPortalAbi, UniswapPortalBytecode } from '@aztec/l1-artifacts';
12
12
  import { UniswapContract } from '@aztec/noir-contracts.js/Uniswap';
@@ -166,8 +166,8 @@ export const uniswapL1L2TestSuite = (setup, cleanup, expectedForkBlockNumber = 1
166
166
  // ensure that uniswap contract didn't eat the funds.
167
167
  await wethCrossChainHarness.expectPublicBalanceOnL2(uniswapL2Contract.address, 0n);
168
168
  // Since the outbox is only consumable when the epoch is proven, we need to advance to the next epoch.
169
- const checkpointNumber = CheckpointNumber.fromBlockNumber(l2UniswapInteractionReceipt.blockNumber);
170
- const epoch = await rollup.getEpochNumberForCheckpoint(checkpointNumber);
169
+ const block = await aztecNode.getBlock(l2UniswapInteractionReceipt.blockNumber);
170
+ const epoch = await rollup.getEpochNumberForCheckpoint(block.checkpointNumber);
171
171
  await cheatCodes.rollup.advanceToEpoch(EpochNumber(epoch + 1));
172
172
  await waitForProven(aztecNode, l2UniswapInteractionReceipt, {
173
173
  provenTimeout: 300
@@ -574,7 +574,8 @@ export const uniswapL1L2TestSuite = (setup, cleanup, expectedForkBlockNumber = 1
574
574
  rollupVersion: new Fr(version),
575
575
  chainId: new Fr(l1Client.chain.id)
576
576
  });
577
- const epoch = await rollup.getEpochNumberForCheckpoint(CheckpointNumber.fromBlockNumber(withdrawReceipt.blockNumber));
577
+ const block = await aztecNode.getBlock(withdrawReceipt.blockNumber);
578
+ const epoch = await rollup.getEpochNumberForCheckpoint(block.checkpointNumber);
578
579
  const swapResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, swapPrivateLeaf);
579
580
  const withdrawResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, withdrawLeaf);
580
581
  const swapPrivateL2MessageIndex = swapResult.leafIndex;
@@ -664,7 +665,8 @@ export const uniswapL1L2TestSuite = (setup, cleanup, expectedForkBlockNumber = 1
664
665
  rollupVersion: new Fr(version),
665
666
  chainId: new Fr(l1Client.chain.id)
666
667
  });
667
- const epoch = await rollup.getEpochNumberForCheckpoint(CheckpointNumber.fromBlockNumber(withdrawReceipt.blockNumber));
668
+ const block = await aztecNode.getBlock(withdrawReceipt.blockNumber);
669
+ const epoch = await rollup.getEpochNumberForCheckpoint(block.checkpointNumber);
668
670
  const swapResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, swapPublicLeaf);
669
671
  const withdrawResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, withdrawLeaf);
670
672
  const swapPublicL2MessageIndex = swapResult.leafIndex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/end-to-end",
3
- "version": "0.0.1-commit.f1df4d2",
3
+ "version": "0.0.1-commit.f2ce05ee",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "inherits": [
@@ -26,44 +26,44 @@
26
26
  "formatting": "run -T prettier --check ./src && run -T eslint ./src"
27
27
  },
28
28
  "dependencies": {
29
- "@aztec/accounts": "0.0.1-commit.f1df4d2",
30
- "@aztec/archiver": "0.0.1-commit.f1df4d2",
31
- "@aztec/aztec": "0.0.1-commit.f1df4d2",
32
- "@aztec/aztec-node": "0.0.1-commit.f1df4d2",
33
- "@aztec/aztec.js": "0.0.1-commit.f1df4d2",
34
- "@aztec/bb-prover": "0.0.1-commit.f1df4d2",
35
- "@aztec/bb.js": "0.0.1-commit.f1df4d2",
36
- "@aztec/blob-client": "0.0.1-commit.f1df4d2",
37
- "@aztec/blob-lib": "0.0.1-commit.f1df4d2",
38
- "@aztec/bot": "0.0.1-commit.f1df4d2",
39
- "@aztec/cli": "0.0.1-commit.f1df4d2",
40
- "@aztec/constants": "0.0.1-commit.f1df4d2",
41
- "@aztec/entrypoints": "0.0.1-commit.f1df4d2",
42
- "@aztec/epoch-cache": "0.0.1-commit.f1df4d2",
43
- "@aztec/ethereum": "0.0.1-commit.f1df4d2",
44
- "@aztec/foundation": "0.0.1-commit.f1df4d2",
45
- "@aztec/kv-store": "0.0.1-commit.f1df4d2",
46
- "@aztec/l1-artifacts": "0.0.1-commit.f1df4d2",
47
- "@aztec/merkle-tree": "0.0.1-commit.f1df4d2",
48
- "@aztec/node-keystore": "0.0.1-commit.f1df4d2",
49
- "@aztec/noir-contracts.js": "0.0.1-commit.f1df4d2",
50
- "@aztec/noir-noirc_abi": "0.0.1-commit.f1df4d2",
51
- "@aztec/noir-protocol-circuits-types": "0.0.1-commit.f1df4d2",
52
- "@aztec/noir-test-contracts.js": "0.0.1-commit.f1df4d2",
53
- "@aztec/p2p": "0.0.1-commit.f1df4d2",
54
- "@aztec/protocol-contracts": "0.0.1-commit.f1df4d2",
55
- "@aztec/prover-client": "0.0.1-commit.f1df4d2",
56
- "@aztec/prover-node": "0.0.1-commit.f1df4d2",
57
- "@aztec/pxe": "0.0.1-commit.f1df4d2",
58
- "@aztec/sequencer-client": "0.0.1-commit.f1df4d2",
59
- "@aztec/simulator": "0.0.1-commit.f1df4d2",
60
- "@aztec/slasher": "0.0.1-commit.f1df4d2",
61
- "@aztec/stdlib": "0.0.1-commit.f1df4d2",
62
- "@aztec/telemetry-client": "0.0.1-commit.f1df4d2",
63
- "@aztec/test-wallet": "0.0.1-commit.f1df4d2",
64
- "@aztec/validator-client": "0.0.1-commit.f1df4d2",
65
- "@aztec/validator-ha-signer": "0.0.1-commit.f1df4d2",
66
- "@aztec/world-state": "0.0.1-commit.f1df4d2",
29
+ "@aztec/accounts": "0.0.1-commit.f2ce05ee",
30
+ "@aztec/archiver": "0.0.1-commit.f2ce05ee",
31
+ "@aztec/aztec": "0.0.1-commit.f2ce05ee",
32
+ "@aztec/aztec-node": "0.0.1-commit.f2ce05ee",
33
+ "@aztec/aztec.js": "0.0.1-commit.f2ce05ee",
34
+ "@aztec/bb-prover": "0.0.1-commit.f2ce05ee",
35
+ "@aztec/bb.js": "0.0.1-commit.f2ce05ee",
36
+ "@aztec/blob-client": "0.0.1-commit.f2ce05ee",
37
+ "@aztec/blob-lib": "0.0.1-commit.f2ce05ee",
38
+ "@aztec/bot": "0.0.1-commit.f2ce05ee",
39
+ "@aztec/cli": "0.0.1-commit.f2ce05ee",
40
+ "@aztec/constants": "0.0.1-commit.f2ce05ee",
41
+ "@aztec/entrypoints": "0.0.1-commit.f2ce05ee",
42
+ "@aztec/epoch-cache": "0.0.1-commit.f2ce05ee",
43
+ "@aztec/ethereum": "0.0.1-commit.f2ce05ee",
44
+ "@aztec/foundation": "0.0.1-commit.f2ce05ee",
45
+ "@aztec/kv-store": "0.0.1-commit.f2ce05ee",
46
+ "@aztec/l1-artifacts": "0.0.1-commit.f2ce05ee",
47
+ "@aztec/merkle-tree": "0.0.1-commit.f2ce05ee",
48
+ "@aztec/node-keystore": "0.0.1-commit.f2ce05ee",
49
+ "@aztec/noir-contracts.js": "0.0.1-commit.f2ce05ee",
50
+ "@aztec/noir-noirc_abi": "0.0.1-commit.f2ce05ee",
51
+ "@aztec/noir-protocol-circuits-types": "0.0.1-commit.f2ce05ee",
52
+ "@aztec/noir-test-contracts.js": "0.0.1-commit.f2ce05ee",
53
+ "@aztec/p2p": "0.0.1-commit.f2ce05ee",
54
+ "@aztec/protocol-contracts": "0.0.1-commit.f2ce05ee",
55
+ "@aztec/prover-client": "0.0.1-commit.f2ce05ee",
56
+ "@aztec/prover-node": "0.0.1-commit.f2ce05ee",
57
+ "@aztec/pxe": "0.0.1-commit.f2ce05ee",
58
+ "@aztec/sequencer-client": "0.0.1-commit.f2ce05ee",
59
+ "@aztec/simulator": "0.0.1-commit.f2ce05ee",
60
+ "@aztec/slasher": "0.0.1-commit.f2ce05ee",
61
+ "@aztec/stdlib": "0.0.1-commit.f2ce05ee",
62
+ "@aztec/telemetry-client": "0.0.1-commit.f2ce05ee",
63
+ "@aztec/test-wallet": "0.0.1-commit.f2ce05ee",
64
+ "@aztec/validator-client": "0.0.1-commit.f2ce05ee",
65
+ "@aztec/validator-ha-signer": "0.0.1-commit.f2ce05ee",
66
+ "@aztec/world-state": "0.0.1-commit.f2ce05ee",
67
67
  "@iarna/toml": "^2.2.5",
68
68
  "@jest/globals": "^30.0.0",
69
69
  "@noble/curves": "=1.0.0",
@@ -6,7 +6,7 @@ export type ClientFlowConfig = {
6
6
  recursions?: number[];
7
7
  };
8
8
 
9
- type ClientFlows = 'accountDeployments' | 'deployments' | 'transfers' | 'bridging' | 'amm';
9
+ type ClientFlows = 'accountDeployments' | 'deployments' | 'transfers' | 'bridging' | 'amm' | 'storageProof';
10
10
 
11
11
  export type ClientFlowsConfig = {
12
12
  [key in ClientFlows]: ClientFlowConfig;
@@ -34,6 +34,10 @@ export const KEY_FLOWS_CONFIG: ClientFlowsConfig = {
34
34
  feePaymentMethods: ['sponsored_fpc', 'private_fpc'],
35
35
  recursions: [0, 1],
36
36
  },
37
+ storageProof: {
38
+ accounts: ['ecdsar1'],
39
+ feePaymentMethods: ['sponsored_fpc'],
40
+ },
37
41
  };
38
42
 
39
43
  export const FULL_FLOWS_CONFIG: ClientFlowsConfig = {
@@ -58,4 +62,8 @@ export const FULL_FLOWS_CONFIG: ClientFlowsConfig = {
58
62
  feePaymentMethods: ['sponsored_fpc', 'private_fpc'],
59
63
  recursions: [0, 1, 2],
60
64
  },
65
+ storageProof: {
66
+ accounts: ['ecdsar1', 'schnorr'],
67
+ feePaymentMethods: ['sponsored_fpc', 'private_fpc'],
68
+ },
61
69
  };
@@ -13,7 +13,7 @@ import type {
13
13
  } from '@aztec/ethereum/deploy-aztec-l1-contracts';
14
14
  import { deployL1Contract } from '@aztec/ethereum/deploy-l1-contract';
15
15
  import type { ExtendedViemWalletClient } from '@aztec/ethereum/types';
16
- import { CheckpointNumber, EpochNumber } from '@aztec/foundation/branded-types';
16
+ import { EpochNumber } from '@aztec/foundation/branded-types';
17
17
  import { sleep } from '@aztec/foundation/sleep';
18
18
  import { TestERC20Abi, TestERC20Bytecode } from '@aztec/l1-artifacts';
19
19
  import { TokenContract } from '@aztec/noir-contracts.js/Token';
@@ -86,9 +86,8 @@ export class CrossChainMessagingTest {
86
86
  }
87
87
 
88
88
  async advanceToEpochProven(l2TxReceipt: TxReceipt): Promise<EpochNumber> {
89
- const epoch = await this.rollup.getEpochNumberForCheckpoint(
90
- CheckpointNumber.fromBlockNumber(l2TxReceipt.blockNumber!),
91
- );
89
+ const block = await this.aztecNode.getBlock(l2TxReceipt.blockNumber!);
90
+ const epoch = await this.rollup.getEpochNumberForCheckpoint(block!.checkpointNumber);
92
91
  // Warp to the next epoch.
93
92
  await this.cheatCodes.rollup.advanceToEpoch(EpochNumber(epoch + 1));
94
93
  // Wait for the tx to be proven.
@@ -194,6 +194,7 @@ export class EpochsTestContext {
194
194
  l1GenesisTime: await this.rollup.getL1GenesisTime(),
195
195
  ethereumSlotDuration,
196
196
  proofSubmissionEpochs: Number(await this.rollup.getProofSubmissionEpochs()),
197
+ targetCommitteeSize: await this.rollup.getTargetCommitteeSize(),
197
198
  };
198
199
 
199
200
  this.logger.info(
@@ -145,6 +145,7 @@ export async function awaitCommitteeExists({
145
145
  'non-empty committee',
146
146
  60,
147
147
  );
148
+ logger.warn(`Committee has been formed`, { committee: committee!.map(c => c.toString()) });
148
149
  return committee!.map(c => c.toString() as `0x${string}`);
149
150
  }
150
151