@aztec/txe 0.0.1-commit.8227e42 → 0.0.1-commit.85d7d01

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.
@@ -6,7 +6,7 @@ import { EventSelector, FunctionSelector, NoteSelector } from '@aztec/stdlib/abi
6
6
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
7
7
  import { BlockHash } from '@aztec/stdlib/block';
8
8
  import { addressFromSingle, arrayOfArraysToBoundedVecOfArrays, arrayToBoundedVec, bufferToU8Array, fromArray, fromSingle, fromUintArray, fromUintBoundedVec, toArray, toForeignCallResult, toSingle } from './util/encoding.js';
9
- const MAX_EVENT_LEN = 12; // This is MAX_MESSAGE_CONTENT_LEN - PRIVATE_EVENT_RESERVED_FIELDS
9
+ const MAX_EVENT_LEN = 10; // This is MAX_MESSAGE_CONTENT_LEN - PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN
10
10
  const MAX_PRIVATE_EVENTS_PER_TXE_QUERY = 5;
11
11
  export class UnavailableOracleError extends Error {
12
12
  constructor(oracleName){
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/txe",
3
- "version": "0.0.1-commit.8227e42",
3
+ "version": "0.0.1-commit.85d7d01",
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": "0.0.1-commit.8227e42",
65
- "@aztec/archiver": "0.0.1-commit.8227e42",
66
- "@aztec/aztec-node": "0.0.1-commit.8227e42",
67
- "@aztec/aztec.js": "0.0.1-commit.8227e42",
68
- "@aztec/bb-prover": "0.0.1-commit.8227e42",
69
- "@aztec/constants": "0.0.1-commit.8227e42",
70
- "@aztec/foundation": "0.0.1-commit.8227e42",
71
- "@aztec/key-store": "0.0.1-commit.8227e42",
72
- "@aztec/kv-store": "0.0.1-commit.8227e42",
73
- "@aztec/protocol-contracts": "0.0.1-commit.8227e42",
74
- "@aztec/pxe": "0.0.1-commit.8227e42",
75
- "@aztec/simulator": "0.0.1-commit.8227e42",
76
- "@aztec/stdlib": "0.0.1-commit.8227e42",
77
- "@aztec/world-state": "0.0.1-commit.8227e42",
64
+ "@aztec/accounts": "0.0.1-commit.85d7d01",
65
+ "@aztec/archiver": "0.0.1-commit.85d7d01",
66
+ "@aztec/aztec-node": "0.0.1-commit.85d7d01",
67
+ "@aztec/aztec.js": "0.0.1-commit.85d7d01",
68
+ "@aztec/bb-prover": "0.0.1-commit.85d7d01",
69
+ "@aztec/constants": "0.0.1-commit.85d7d01",
70
+ "@aztec/foundation": "0.0.1-commit.85d7d01",
71
+ "@aztec/key-store": "0.0.1-commit.85d7d01",
72
+ "@aztec/kv-store": "0.0.1-commit.85d7d01",
73
+ "@aztec/protocol-contracts": "0.0.1-commit.85d7d01",
74
+ "@aztec/pxe": "0.0.1-commit.85d7d01",
75
+ "@aztec/simulator": "0.0.1-commit.85d7d01",
76
+ "@aztec/stdlib": "0.0.1-commit.85d7d01",
77
+ "@aztec/world-state": "0.0.1-commit.85d7d01",
78
78
  "zod": "^3.23.8"
79
79
  },
80
80
  "devDependencies": {
@@ -30,7 +30,7 @@ import {
30
30
  toSingle,
31
31
  } from './util/encoding.js';
32
32
 
33
- const MAX_EVENT_LEN = 12; // This is MAX_MESSAGE_CONTENT_LEN - PRIVATE_EVENT_RESERVED_FIELDS
33
+ const MAX_EVENT_LEN = 10; // This is MAX_MESSAGE_CONTENT_LEN - PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN
34
34
  const MAX_PRIVATE_EVENTS_PER_TXE_QUERY = 5;
35
35
 
36
36
  export class UnavailableOracleError extends Error {