@aztec/prover-node 5.0.0-nightly.20260428 → 5.0.0-nightly.20260430

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.
@@ -239,7 +239,7 @@ export class ProverNodePublisher {
239
239
  end: argsArray[1],
240
240
  args: argsArray[2],
241
241
  fees: argsArray[3],
242
- attestations: new CommitteeAttestationsAndSigners(args.attestations.map((a)=>CommitteeAttestation.fromViem(a))).getPackedAttestations(),
242
+ attestations: CommitteeAttestationsAndSigners.packAttestations(args.attestations.map((a)=>CommitteeAttestation.fromViem(a))),
243
243
  blobInputs: argsArray[4],
244
244
  proof: proofHex
245
245
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-node",
3
- "version": "5.0.0-nightly.20260428",
3
+ "version": "5.0.0-nightly.20260430",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -56,28 +56,28 @@
56
56
  ]
57
57
  },
58
58
  "dependencies": {
59
- "@aztec/archiver": "5.0.0-nightly.20260428",
60
- "@aztec/bb-prover": "5.0.0-nightly.20260428",
61
- "@aztec/blob-client": "5.0.0-nightly.20260428",
62
- "@aztec/blob-lib": "5.0.0-nightly.20260428",
63
- "@aztec/constants": "5.0.0-nightly.20260428",
64
- "@aztec/epoch-cache": "5.0.0-nightly.20260428",
65
- "@aztec/ethereum": "5.0.0-nightly.20260428",
66
- "@aztec/foundation": "5.0.0-nightly.20260428",
67
- "@aztec/kv-store": "5.0.0-nightly.20260428",
68
- "@aztec/l1-artifacts": "5.0.0-nightly.20260428",
69
- "@aztec/native": "5.0.0-nightly.20260428",
70
- "@aztec/node-keystore": "5.0.0-nightly.20260428",
71
- "@aztec/node-lib": "5.0.0-nightly.20260428",
72
- "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260428",
73
- "@aztec/p2p": "5.0.0-nightly.20260428",
74
- "@aztec/protocol-contracts": "5.0.0-nightly.20260428",
75
- "@aztec/prover-client": "5.0.0-nightly.20260428",
76
- "@aztec/sequencer-client": "5.0.0-nightly.20260428",
77
- "@aztec/simulator": "5.0.0-nightly.20260428",
78
- "@aztec/stdlib": "5.0.0-nightly.20260428",
79
- "@aztec/telemetry-client": "5.0.0-nightly.20260428",
80
- "@aztec/world-state": "5.0.0-nightly.20260428",
59
+ "@aztec/archiver": "5.0.0-nightly.20260430",
60
+ "@aztec/bb-prover": "5.0.0-nightly.20260430",
61
+ "@aztec/blob-client": "5.0.0-nightly.20260430",
62
+ "@aztec/blob-lib": "5.0.0-nightly.20260430",
63
+ "@aztec/constants": "5.0.0-nightly.20260430",
64
+ "@aztec/epoch-cache": "5.0.0-nightly.20260430",
65
+ "@aztec/ethereum": "5.0.0-nightly.20260430",
66
+ "@aztec/foundation": "5.0.0-nightly.20260430",
67
+ "@aztec/kv-store": "5.0.0-nightly.20260430",
68
+ "@aztec/l1-artifacts": "5.0.0-nightly.20260430",
69
+ "@aztec/native": "5.0.0-nightly.20260430",
70
+ "@aztec/node-keystore": "5.0.0-nightly.20260430",
71
+ "@aztec/node-lib": "5.0.0-nightly.20260430",
72
+ "@aztec/noir-protocol-circuits-types": "5.0.0-nightly.20260430",
73
+ "@aztec/p2p": "5.0.0-nightly.20260430",
74
+ "@aztec/protocol-contracts": "5.0.0-nightly.20260430",
75
+ "@aztec/prover-client": "5.0.0-nightly.20260430",
76
+ "@aztec/sequencer-client": "5.0.0-nightly.20260430",
77
+ "@aztec/simulator": "5.0.0-nightly.20260430",
78
+ "@aztec/stdlib": "5.0.0-nightly.20260430",
79
+ "@aztec/telemetry-client": "5.0.0-nightly.20260430",
80
+ "@aztec/world-state": "5.0.0-nightly.20260430",
81
81
  "source-map-support": "^0.5.21",
82
82
  "tslib": "^2.4.0",
83
83
  "viem": "npm:@aztec/viem@2.38.2"
@@ -364,9 +364,9 @@ export class ProverNodePublisher {
364
364
  end: argsArray[1],
365
365
  args: argsArray[2],
366
366
  fees: argsArray[3],
367
- attestations: new CommitteeAttestationsAndSigners(
367
+ attestations: CommitteeAttestationsAndSigners.packAttestations(
368
368
  args.attestations.map(a => CommitteeAttestation.fromViem(a)),
369
- ).getPackedAttestations(),
369
+ ),
370
370
  blobInputs: argsArray[4],
371
371
  proof: proofHex,
372
372
  };