@aztec/txe 0.45.0 → 0.45.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/txe",
3
- "version": "0.45.0",
3
+ "version": "0.45.1",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "bin": "./dest/bin/index.js",
@@ -57,18 +57,18 @@
57
57
  ]
58
58
  },
59
59
  "dependencies": {
60
- "@aztec/archiver": "0.45.0",
61
- "@aztec/aztec.js": "0.45.0",
62
- "@aztec/circuit-types": "0.45.0",
63
- "@aztec/circuits.js": "0.45.0",
64
- "@aztec/foundation": "0.45.0",
65
- "@aztec/key-store": "0.45.0",
66
- "@aztec/kv-store": "0.45.0",
67
- "@aztec/noir-contracts.js": "0.45.0",
68
- "@aztec/pxe": "0.45.0",
69
- "@aztec/simulator": "0.45.0",
70
- "@aztec/types": "0.45.0",
71
- "@aztec/world-state": "0.45.0"
60
+ "@aztec/archiver": "0.45.1",
61
+ "@aztec/aztec.js": "0.45.1",
62
+ "@aztec/circuit-types": "0.45.1",
63
+ "@aztec/circuits.js": "0.45.1",
64
+ "@aztec/foundation": "0.45.1",
65
+ "@aztec/key-store": "0.45.1",
66
+ "@aztec/kv-store": "0.45.1",
67
+ "@aztec/noir-contracts.js": "0.45.1",
68
+ "@aztec/pxe": "0.45.1",
69
+ "@aztec/simulator": "0.45.1",
70
+ "@aztec/types": "0.45.1",
71
+ "@aztec/world-state": "0.45.1"
72
72
  },
73
73
  "devDependencies": {
74
74
  "@jest/globals": "^29.5.0",
@@ -617,12 +617,12 @@ export class TXE implements TypedOracle {
617
617
 
618
618
  await this.addNullifiers(
619
619
  targetContractAddress,
620
- publicInputs.newNullifiers.filter(nullifier => !nullifier.isEmpty()).map(nullifier => nullifier.value),
620
+ publicInputs.nullifiers.filter(nullifier => !nullifier.isEmpty()).map(nullifier => nullifier.value),
621
621
  );
622
622
 
623
623
  await this.addNoteHashes(
624
624
  targetContractAddress,
625
- publicInputs.newNoteHashes.filter(noteHash => !noteHash.isEmpty()).map(noteHash => noteHash.value),
625
+ publicInputs.noteHashes.filter(noteHash => !noteHash.isEmpty()).map(noteHash => noteHash.value),
626
626
  );
627
627
 
628
628
  return callStackItem;