@aztec/txe 3.0.0-nightly.20251026 → 3.0.0-nightly.20251030-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.
@@ -15,7 +15,7 @@ import { computePartialAddress } from '@aztec/stdlib/contract';
15
15
  import { Gas, GasFees, GasSettings } from '@aztec/stdlib/gas';
16
16
  import { computeCalldataHash, siloNullifier } from '@aztec/stdlib/hash';
17
17
  import { PartialPrivateTailPublicInputsForPublic, PrivateKernelTailCircuitPublicInputs, PrivateToPublicAccumulatedData, PublicCallRequest } from '@aztec/stdlib/kernel';
18
- import { ClientIvcProof } from '@aztec/stdlib/proofs';
18
+ import { ChonkProof } from '@aztec/stdlib/proofs';
19
19
  import { makeAppendOnlyTreeSnapshot, makeGlobalVariables } from '@aztec/stdlib/testing';
20
20
  import { MerkleTreeId } from '@aztec/stdlib/trees';
21
21
  import { CallContext, HashedValues, PrivateExecutionResult, Tx, TxConstantData, TxContext, TxEffect, TxHash, collectNested } from '@aztec/stdlib/tx';
@@ -235,7 +235,7 @@ export class TXEOracleTopLevelContext {
235
235
  }), new TestDateProvider());
236
236
  const tx = await Tx.create({
237
237
  data: publicInputs,
238
- clientIvcProof: ClientIvcProof.empty(),
238
+ chonkProof: ChonkProof.empty(),
239
239
  contractClassLogFields: [],
240
240
  publicFunctionCalldata: result.publicFunctionCalldata
241
241
  });
@@ -324,7 +324,7 @@ export class TXEOracleTopLevelContext {
324
324
  const txData = new PrivateKernelTailCircuitPublicInputs(constantData, /*gasUsed=*/ new Gas(0, 0), /*feePayer=*/ AztecAddress.zero(), /*includeByTimestamp=*/ 0n, inputsForPublic, undefined);
325
325
  const tx = await Tx.create({
326
326
  data: txData,
327
- clientIvcProof: ClientIvcProof.empty(),
327
+ chonkProof: ChonkProof.empty(),
328
328
  contractClassLogFields: [],
329
329
  publicFunctionCalldata: [
330
330
  calldataHashedValues
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/txe",
3
- "version": "3.0.0-nightly.20251026",
3
+ "version": "3.0.0-nightly.20251030-2",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "bin": "./dest/bin/index.js",
@@ -61,20 +61,20 @@
61
61
  ]
62
62
  },
63
63
  "dependencies": {
64
- "@aztec/accounts": "3.0.0-nightly.20251026",
65
- "@aztec/archiver": "3.0.0-nightly.20251026",
66
- "@aztec/aztec-node": "3.0.0-nightly.20251026",
67
- "@aztec/aztec.js": "3.0.0-nightly.20251026",
68
- "@aztec/bb-prover": "3.0.0-nightly.20251026",
69
- "@aztec/constants": "3.0.0-nightly.20251026",
70
- "@aztec/foundation": "3.0.0-nightly.20251026",
71
- "@aztec/key-store": "3.0.0-nightly.20251026",
72
- "@aztec/kv-store": "3.0.0-nightly.20251026",
73
- "@aztec/protocol-contracts": "3.0.0-nightly.20251026",
74
- "@aztec/pxe": "3.0.0-nightly.20251026",
75
- "@aztec/simulator": "3.0.0-nightly.20251026",
76
- "@aztec/stdlib": "3.0.0-nightly.20251026",
77
- "@aztec/world-state": "3.0.0-nightly.20251026",
64
+ "@aztec/accounts": "3.0.0-nightly.20251030-2",
65
+ "@aztec/archiver": "3.0.0-nightly.20251030-2",
66
+ "@aztec/aztec-node": "3.0.0-nightly.20251030-2",
67
+ "@aztec/aztec.js": "3.0.0-nightly.20251030-2",
68
+ "@aztec/bb-prover": "3.0.0-nightly.20251030-2",
69
+ "@aztec/constants": "3.0.0-nightly.20251030-2",
70
+ "@aztec/foundation": "3.0.0-nightly.20251030-2",
71
+ "@aztec/key-store": "3.0.0-nightly.20251030-2",
72
+ "@aztec/kv-store": "3.0.0-nightly.20251030-2",
73
+ "@aztec/protocol-contracts": "3.0.0-nightly.20251030-2",
74
+ "@aztec/pxe": "3.0.0-nightly.20251030-2",
75
+ "@aztec/simulator": "3.0.0-nightly.20251030-2",
76
+ "@aztec/stdlib": "3.0.0-nightly.20251030-2",
77
+ "@aztec/world-state": "3.0.0-nightly.20251030-2",
78
78
  "zod": "^3.23.8"
79
79
  },
80
80
  "devDependencies": {
@@ -56,7 +56,7 @@ import {
56
56
  PrivateToPublicAccumulatedData,
57
57
  PublicCallRequest,
58
58
  } from '@aztec/stdlib/kernel';
59
- import { ClientIvcProof } from '@aztec/stdlib/proofs';
59
+ import { ChonkProof } from '@aztec/stdlib/proofs';
60
60
  import { makeAppendOnlyTreeSnapshot, makeGlobalVariables } from '@aztec/stdlib/testing';
61
61
  import { MerkleTreeId } from '@aztec/stdlib/trees';
62
62
  import {
@@ -386,7 +386,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
386
386
 
387
387
  const tx = await Tx.create({
388
388
  data: publicInputs,
389
- clientIvcProof: ClientIvcProof.empty(),
389
+ chonkProof: ChonkProof.empty(),
390
390
  contractClassLogFields: [],
391
391
  publicFunctionCalldata: result.publicFunctionCalldata,
392
392
  });
@@ -530,7 +530,7 @@ export class TXEOracleTopLevelContext implements IMiscOracle, ITxeExecutionOracl
530
530
 
531
531
  const tx = await Tx.create({
532
532
  data: txData,
533
- clientIvcProof: ClientIvcProof.empty(),
533
+ chonkProof: ChonkProof.empty(),
534
534
  contractClassLogFields: [],
535
535
  publicFunctionCalldata: [calldataHashedValues],
536
536
  });