@aztec/cli 0.86.0-nightly.20250428 → 0.86.0-nightly.20250429
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.
|
@@ -162,7 +162,7 @@ async function deployFPC(wallet, tokenAddress, admin) {
|
|
|
162
162
|
async function deployCounter(wallet) {
|
|
163
163
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
164
164
|
// @ts-ignore - Importing noir-contracts.js even in devDeps results in a circular dependency error. Need to ignore because this line doesn't cause an error in a dev environment
|
|
165
|
-
const { CounterContract } = await import('@aztec/noir-contracts.js/Counter');
|
|
165
|
+
const { CounterContract } = await import('@aztec/noir-test-contracts.js/Counter');
|
|
166
166
|
const counter = await CounterContract.deploy(wallet, 1, wallet.getAddress()).send({
|
|
167
167
|
universalDeploy: true
|
|
168
168
|
}).deployed(waitOpts);
|
|
@@ -180,7 +180,7 @@ async function fundFPC(pxe, counterAddress, wallet, l1Client, fpcAddress, debugL
|
|
|
180
180
|
const { FeeJuiceContract } = await import('@aztec/noir-contracts.js/FeeJuice');
|
|
181
181
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
182
182
|
// @ts-ignore - Importing noir-contracts.js even in devDeps results in a circular dependency error. Need to ignore because this line doesn't cause an error in a dev environment
|
|
183
|
-
const { CounterContract } = await import('@aztec/noir-contracts.js/Counter');
|
|
183
|
+
const { CounterContract } = await import('@aztec/noir-test-contracts.js/Counter');
|
|
184
184
|
const { protocolContractAddresses: { feeJuice } } = await wallet.getPXEInfo();
|
|
185
185
|
const feeJuiceContract = await FeeJuiceContract.at(feeJuice, wallet);
|
|
186
186
|
const feeJuicePortal = await L1FeeJuicePortalManager.new(wallet, l1Client, debugLog);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/cli",
|
|
3
|
-
"version": "0.86.0-nightly.
|
|
3
|
+
"version": "0.86.0-nightly.20250429",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./contracts": "./dest/cmds/contracts/index.js",
|
|
@@ -65,15 +65,15 @@
|
|
|
65
65
|
]
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@aztec/archiver": "0.86.0-nightly.
|
|
69
|
-
"@aztec/aztec.js": "0.86.0-nightly.
|
|
70
|
-
"@aztec/constants": "0.86.0-nightly.
|
|
71
|
-
"@aztec/entrypoints": "0.86.0-nightly.
|
|
72
|
-
"@aztec/foundation": "0.86.0-nightly.
|
|
73
|
-
"@aztec/l1-artifacts": "0.86.0-nightly.
|
|
74
|
-
"@aztec/p2p": "0.86.0-nightly.
|
|
75
|
-
"@aztec/stdlib": "0.86.0-nightly.
|
|
76
|
-
"@aztec/world-state": "0.86.0-nightly.
|
|
68
|
+
"@aztec/archiver": "0.86.0-nightly.20250429",
|
|
69
|
+
"@aztec/aztec.js": "0.86.0-nightly.20250429",
|
|
70
|
+
"@aztec/constants": "0.86.0-nightly.20250429",
|
|
71
|
+
"@aztec/entrypoints": "0.86.0-nightly.20250429",
|
|
72
|
+
"@aztec/foundation": "0.86.0-nightly.20250429",
|
|
73
|
+
"@aztec/l1-artifacts": "0.86.0-nightly.20250429",
|
|
74
|
+
"@aztec/p2p": "0.86.0-nightly.20250429",
|
|
75
|
+
"@aztec/stdlib": "0.86.0-nightly.20250429",
|
|
76
|
+
"@aztec/world-state": "0.86.0-nightly.20250429",
|
|
77
77
|
"@iarna/toml": "^2.2.5",
|
|
78
78
|
"@libp2p/peer-id-factory": "^3.0.4",
|
|
79
79
|
"commander": "^12.1.0",
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
"viem": "2.23.7"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@aztec/accounts": "0.86.0-nightly.
|
|
89
|
-
"@aztec/ethereum": "0.86.0-nightly.
|
|
90
|
-
"@aztec/protocol-contracts": "0.86.0-nightly.
|
|
88
|
+
"@aztec/accounts": "0.86.0-nightly.20250429",
|
|
89
|
+
"@aztec/ethereum": "0.86.0-nightly.20250429",
|
|
90
|
+
"@aztec/protocol-contracts": "0.86.0-nightly.20250429",
|
|
91
91
|
"@jest/globals": "^29.5.0",
|
|
92
92
|
"@types/jest": "^29.5.0",
|
|
93
93
|
"@types/lodash.chunk": "^4.2.9",
|
|
@@ -103,14 +103,15 @@
|
|
|
103
103
|
"typescript": "^5.0.4"
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|
|
106
|
-
"@aztec/accounts": "0.86.0-nightly.
|
|
107
|
-
"@aztec/bb-prover": "0.86.0-nightly.
|
|
108
|
-
"@aztec/ethereum": "0.86.0-nightly.
|
|
109
|
-
"@aztec/l1-artifacts": "0.86.0-nightly.
|
|
110
|
-
"@aztec/noir-contracts.js": "0.86.0-nightly.
|
|
111
|
-
"@aztec/noir-protocol-circuits-types": "0.86.0-nightly.
|
|
112
|
-
"@aztec/
|
|
113
|
-
"@aztec/
|
|
106
|
+
"@aztec/accounts": "0.86.0-nightly.20250429",
|
|
107
|
+
"@aztec/bb-prover": "0.86.0-nightly.20250429",
|
|
108
|
+
"@aztec/ethereum": "0.86.0-nightly.20250429",
|
|
109
|
+
"@aztec/l1-artifacts": "0.86.0-nightly.20250429",
|
|
110
|
+
"@aztec/noir-contracts.js": "0.86.0-nightly.20250429",
|
|
111
|
+
"@aztec/noir-protocol-circuits-types": "0.86.0-nightly.20250429",
|
|
112
|
+
"@aztec/noir-test-contracts.js": "0.86.0-nightly.20250429",
|
|
113
|
+
"@aztec/protocol-contracts": "0.86.0-nightly.20250429",
|
|
114
|
+
"@aztec/stdlib": "0.86.0-nightly.20250429"
|
|
114
115
|
},
|
|
115
116
|
"files": [
|
|
116
117
|
"dest",
|
|
@@ -248,7 +248,7 @@ async function deployFPC(
|
|
|
248
248
|
async function deployCounter(wallet: Wallet): Promise<ContractDeploymentInfo> {
|
|
249
249
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
250
250
|
// @ts-ignore - Importing noir-contracts.js even in devDeps results in a circular dependency error. Need to ignore because this line doesn't cause an error in a dev environment
|
|
251
|
-
const { CounterContract } = await import('@aztec/noir-contracts.js/Counter');
|
|
251
|
+
const { CounterContract } = await import('@aztec/noir-test-contracts.js/Counter');
|
|
252
252
|
const counter = await CounterContract.deploy(wallet, 1, wallet.getAddress())
|
|
253
253
|
.send({ universalDeploy: true })
|
|
254
254
|
.deployed(waitOpts);
|
|
@@ -274,7 +274,7 @@ async function fundFPC(
|
|
|
274
274
|
const { FeeJuiceContract } = await import('@aztec/noir-contracts.js/FeeJuice');
|
|
275
275
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
276
276
|
// @ts-ignore - Importing noir-contracts.js even in devDeps results in a circular dependency error. Need to ignore because this line doesn't cause an error in a dev environment
|
|
277
|
-
const { CounterContract } = await import('@aztec/noir-contracts.js/Counter');
|
|
277
|
+
const { CounterContract } = await import('@aztec/noir-test-contracts.js/Counter');
|
|
278
278
|
const {
|
|
279
279
|
protocolContractAddresses: { feeJuice },
|
|
280
280
|
} = await wallet.getPXEInfo();
|