@aztec/cli 1.0.0-nightly.20250608 → 1.0.0-nightly.20250611

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.
@@ -48,11 +48,11 @@ export async function sequencers(opts) {
48
48
  await Promise.all([
49
49
  await stakingAsset.write.mint([
50
50
  walletClient.account.address,
51
- config.minimumStake
51
+ config.depositAmount
52
52
  ], {}),
53
53
  await stakingAsset.write.approve([
54
54
  rollup.address,
55
- config.minimumStake
55
+ config.depositAmount
56
56
  ], {})
57
57
  ].map((txHash)=>publicClient.waitForTransactionReceipt({
58
58
  hash: txHash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/cli",
3
- "version": "1.0.0-nightly.20250608",
3
+ "version": "1.0.0-nightly.20250611",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./contracts": "./dest/cmds/contracts/index.js",
@@ -62,18 +62,19 @@
62
62
  "testTimeout": 120000,
63
63
  "setupFiles": [
64
64
  "../../foundation/src/jest/setup.mjs"
65
- ]
65
+ ],
66
+ "testEnvironment": "../../foundation/src/jest/env.mjs"
66
67
  },
67
68
  "dependencies": {
68
- "@aztec/archiver": "1.0.0-nightly.20250608",
69
- "@aztec/aztec.js": "1.0.0-nightly.20250608",
70
- "@aztec/constants": "1.0.0-nightly.20250608",
71
- "@aztec/entrypoints": "1.0.0-nightly.20250608",
72
- "@aztec/foundation": "1.0.0-nightly.20250608",
73
- "@aztec/l1-artifacts": "1.0.0-nightly.20250608",
74
- "@aztec/p2p": "1.0.0-nightly.20250608",
75
- "@aztec/stdlib": "1.0.0-nightly.20250608",
76
- "@aztec/world-state": "1.0.0-nightly.20250608",
69
+ "@aztec/archiver": "1.0.0-nightly.20250611",
70
+ "@aztec/aztec.js": "1.0.0-nightly.20250611",
71
+ "@aztec/constants": "1.0.0-nightly.20250611",
72
+ "@aztec/entrypoints": "1.0.0-nightly.20250611",
73
+ "@aztec/foundation": "1.0.0-nightly.20250611",
74
+ "@aztec/l1-artifacts": "1.0.0-nightly.20250611",
75
+ "@aztec/p2p": "1.0.0-nightly.20250611",
76
+ "@aztec/stdlib": "1.0.0-nightly.20250611",
77
+ "@aztec/world-state": "1.0.0-nightly.20250611",
77
78
  "@iarna/toml": "^2.2.5",
78
79
  "@libp2p/peer-id-factory": "^3.0.4",
79
80
  "commander": "^12.1.0",
@@ -85,9 +86,9 @@
85
86
  "viem": "2.23.7"
86
87
  },
87
88
  "devDependencies": {
88
- "@aztec/accounts": "1.0.0-nightly.20250608",
89
- "@aztec/ethereum": "1.0.0-nightly.20250608",
90
- "@aztec/protocol-contracts": "1.0.0-nightly.20250608",
89
+ "@aztec/accounts": "1.0.0-nightly.20250611",
90
+ "@aztec/ethereum": "1.0.0-nightly.20250611",
91
+ "@aztec/protocol-contracts": "1.0.0-nightly.20250611",
91
92
  "@jest/globals": "^29.5.0",
92
93
  "@types/jest": "^29.5.0",
93
94
  "@types/lodash.chunk": "^4.2.9",
@@ -103,15 +104,15 @@
103
104
  "typescript": "^5.3.3"
104
105
  },
105
106
  "peerDependencies": {
106
- "@aztec/accounts": "1.0.0-nightly.20250608",
107
- "@aztec/bb-prover": "1.0.0-nightly.20250608",
108
- "@aztec/ethereum": "1.0.0-nightly.20250608",
109
- "@aztec/l1-artifacts": "1.0.0-nightly.20250608",
110
- "@aztec/noir-contracts.js": "1.0.0-nightly.20250608",
111
- "@aztec/noir-protocol-circuits-types": "1.0.0-nightly.20250608",
112
- "@aztec/noir-test-contracts.js": "1.0.0-nightly.20250608",
113
- "@aztec/protocol-contracts": "1.0.0-nightly.20250608",
114
- "@aztec/stdlib": "1.0.0-nightly.20250608"
107
+ "@aztec/accounts": "1.0.0-nightly.20250611",
108
+ "@aztec/bb-prover": "1.0.0-nightly.20250611",
109
+ "@aztec/ethereum": "1.0.0-nightly.20250611",
110
+ "@aztec/l1-artifacts": "1.0.0-nightly.20250611",
111
+ "@aztec/noir-contracts.js": "1.0.0-nightly.20250611",
112
+ "@aztec/noir-protocol-circuits-types": "1.0.0-nightly.20250611",
113
+ "@aztec/noir-test-contracts.js": "1.0.0-nightly.20250611",
114
+ "@aztec/protocol-contracts": "1.0.0-nightly.20250611",
115
+ "@aztec/stdlib": "1.0.0-nightly.20250611"
115
116
  },
116
117
  "files": [
117
118
  "dest",
@@ -74,8 +74,8 @@ export async function sequencers(opts: {
74
74
 
75
75
  await Promise.all(
76
76
  [
77
- await stakingAsset.write.mint([walletClient.account.address, config.minimumStake], {} as any),
78
- await stakingAsset.write.approve([rollup.address, config.minimumStake], {} as any),
77
+ await stakingAsset.write.mint([walletClient.account.address, config.depositAmount], {} as any),
78
+ await stakingAsset.write.approve([rollup.address, config.depositAmount], {} as any),
79
79
  ].map(txHash => publicClient.waitForTransactionReceipt({ hash: txHash })),
80
80
  );
81
81