@aztec/blob-lib 0.0.1-commit.03f7ef2 → 0.0.1-commit.1142ef1

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.
@@ -1,7 +1,9 @@
1
+ var _computedKey;
1
2
  import { BLS12Fr, BLS12Point } from '@aztec/foundation/curves/bls12';
2
3
  import { Fr } from '@aztec/foundation/curves/bn254';
3
4
  import { BufferReader, serializeToBuffer } from '@aztec/foundation/serialize';
4
5
  import { inspect } from 'util';
6
+ _computedKey = inspect.custom;
5
7
  /**
6
8
  * See `noir-projects/noir-protocol-circuits/crates/blob/src/abis/final_blob_accumulator.nr` for documentation.
7
9
  */ export class FinalBlobAccumulator {
@@ -53,7 +55,7 @@ import { inspect } from 'util';
53
55
  static random() {
54
56
  return new FinalBlobAccumulator(Fr.random(), Fr.random(), BLS12Fr.random(), BLS12Point.random());
55
57
  }
56
- [inspect.custom]() {
58
+ [_computedKey]() {
57
59
  return `FinalBlobAccumulator {
58
60
  blobCommitmentsHash: ${inspect(this.blobCommitmentsHash)},
59
61
  z: ${inspect(this.z)},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/blob-lib",
3
- "version": "0.0.1-commit.03f7ef2",
3
+ "version": "0.0.1-commit.1142ef1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -27,8 +27,8 @@
27
27
  "../package.common.json"
28
28
  ],
29
29
  "dependencies": {
30
- "@aztec/constants": "0.0.1-commit.03f7ef2",
31
- "@aztec/foundation": "0.0.1-commit.03f7ef2",
30
+ "@aztec/constants": "0.0.1-commit.1142ef1",
31
+ "@aztec/foundation": "0.0.1-commit.1142ef1",
32
32
  "@crate-crypto/node-eth-kzg": "^0.10.0",
33
33
  "tslib": "^2.4.0"
34
34
  },