@aztec/bb-prover 5.0.0-rc.1 → 5.0.0-rc.2

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.
@@ -207,7 +207,7 @@ export class AvmProvingTester extends PublicTxSimulationTester {
207
207
  return await this.simProveVerify(sender, setupCalls ?? [], appCalls ?? [], teardownCall, undefined, feePayer, privateInsertions, txLabel, true, gasLimits);
208
208
  }
209
209
  async simProveVerifyAppLogic(appCall, expectRevert, txLabel = 'unlabeledTx', gasLimits) {
210
- await this.simProveVerify(/*sender=*/ AztecAddress.fromNumber(42), /*setupCalls=*/ [], [
210
+ await this.simProveVerify(/*sender=*/ AztecAddress.fromNumberUnsafe(42), /*setupCalls=*/ [], [
211
211
  appCall
212
212
  ], undefined, expectRevert, /*feePayer=*/ undefined, /*privateInsertions=*/ undefined, txLabel, /*disableRevertCheck=*/ false, gasLimits);
213
213
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/bb-prover",
3
- "version": "5.0.0-rc.1",
3
+ "version": "5.0.0-rc.2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -70,16 +70,16 @@
70
70
  ]
71
71
  },
72
72
  "dependencies": {
73
- "@aztec/bb.js": "5.0.0-rc.1",
74
- "@aztec/constants": "5.0.0-rc.1",
75
- "@aztec/foundation": "5.0.0-rc.1",
76
- "@aztec/noir-noirc_abi": "5.0.0-rc.1",
77
- "@aztec/noir-protocol-circuits-types": "5.0.0-rc.1",
78
- "@aztec/noir-types": "5.0.0-rc.1",
79
- "@aztec/simulator": "5.0.0-rc.1",
80
- "@aztec/stdlib": "5.0.0-rc.1",
81
- "@aztec/telemetry-client": "5.0.0-rc.1",
82
- "@aztec/world-state": "5.0.0-rc.1",
73
+ "@aztec/bb.js": "5.0.0-rc.2",
74
+ "@aztec/constants": "5.0.0-rc.2",
75
+ "@aztec/foundation": "5.0.0-rc.2",
76
+ "@aztec/noir-noirc_abi": "5.0.0-rc.2",
77
+ "@aztec/noir-protocol-circuits-types": "5.0.0-rc.2",
78
+ "@aztec/noir-types": "5.0.0-rc.2",
79
+ "@aztec/simulator": "5.0.0-rc.2",
80
+ "@aztec/stdlib": "5.0.0-rc.2",
81
+ "@aztec/telemetry-client": "5.0.0-rc.2",
82
+ "@aztec/world-state": "5.0.0-rc.2",
83
83
  "commander": "^12.1.0",
84
84
  "msgpackr": "^1.11.2",
85
85
  "pako": "^2.1.0",
@@ -87,11 +87,11 @@
87
87
  "tslib": "^2.4.0"
88
88
  },
89
89
  "devDependencies": {
90
- "@aztec/ethereum": "5.0.0-rc.1",
91
- "@aztec/kv-store": "5.0.0-rc.1",
92
- "@aztec/noir-contracts.js": "5.0.0-rc.1",
93
- "@aztec/noir-test-contracts.js": "5.0.0-rc.1",
94
- "@aztec/protocol-contracts": "5.0.0-rc.1",
90
+ "@aztec/ethereum": "5.0.0-rc.2",
91
+ "@aztec/kv-store": "5.0.0-rc.2",
92
+ "@aztec/noir-contracts.js": "5.0.0-rc.2",
93
+ "@aztec/noir-test-contracts.js": "5.0.0-rc.2",
94
+ "@aztec/protocol-contracts": "5.0.0-rc.2",
95
95
  "@jest/globals": "^30.0.0",
96
96
  "@types/jest": "^30.0.0",
97
97
  "@types/node": "^22.15.17",
@@ -192,7 +192,7 @@ export class AvmProvingTester extends PublicTxSimulationTester {
192
192
  gasLimits?: Gas,
193
193
  ) {
194
194
  await this.simProveVerify(
195
- /*sender=*/ AztecAddress.fromNumber(42),
195
+ /*sender=*/ AztecAddress.fromNumberUnsafe(42),
196
196
  /*setupCalls=*/ [],
197
197
  [appCall],
198
198
  undefined,