@aztec/stdlib 0.0.1-commit.08c5969dc → 0.0.1-commit.0c875d939

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.
Files changed (42) hide show
  1. package/dest/checkpoint/checkpoint.d.ts +16 -7
  2. package/dest/checkpoint/checkpoint.d.ts.map +1 -1
  3. package/dest/checkpoint/checkpoint.js +19 -9
  4. package/dest/checkpoint/published_checkpoint.d.ts +7 -1
  5. package/dest/checkpoint/published_checkpoint.d.ts.map +1 -1
  6. package/dest/contract/contract_class_id.d.ts +1 -1
  7. package/dest/contract/contract_class_id.d.ts.map +1 -1
  8. package/dest/contract/contract_class_id.js +3 -2
  9. package/dest/interfaces/block-builder.d.ts +2 -2
  10. package/dest/interfaces/block-builder.d.ts.map +1 -1
  11. package/dest/interfaces/proving-job.d.ts +2 -2
  12. package/dest/interfaces/validator.d.ts +2 -2
  13. package/dest/interfaces/validator.d.ts.map +1 -1
  14. package/dest/note/index.d.ts +1 -2
  15. package/dest/note/index.d.ts.map +1 -1
  16. package/dest/note/index.js +0 -1
  17. package/dest/p2p/checkpoint_attestation.d.ts +2 -1
  18. package/dest/p2p/checkpoint_attestation.d.ts.map +1 -1
  19. package/dest/p2p/checkpoint_attestation.js +1 -1
  20. package/dest/p2p/checkpoint_proposal.d.ts +10 -5
  21. package/dest/p2p/checkpoint_proposal.d.ts.map +1 -1
  22. package/dest/p2p/checkpoint_proposal.js +20 -15
  23. package/dest/p2p/consensus_payload.d.ts +12 -3
  24. package/dest/p2p/consensus_payload.d.ts.map +1 -1
  25. package/dest/p2p/consensus_payload.js +22 -15
  26. package/dest/tests/mocks.d.ts +4 -1
  27. package/dest/tests/mocks.d.ts.map +1 -1
  28. package/dest/tests/mocks.js +11 -6
  29. package/package.json +9 -9
  30. package/src/checkpoint/checkpoint.ts +27 -11
  31. package/src/contract/contract_class_id.ts +3 -2
  32. package/src/interfaces/block-builder.ts +1 -0
  33. package/src/interfaces/validator.ts +1 -0
  34. package/src/note/index.ts +0 -1
  35. package/src/p2p/checkpoint_attestation.ts +6 -1
  36. package/src/p2p/checkpoint_proposal.ts +35 -13
  37. package/src/p2p/consensus_payload.ts +25 -12
  38. package/src/tests/mocks.ts +18 -7
  39. package/dest/note/notes_filter.d.ts +0 -30
  40. package/dest/note/notes_filter.d.ts.map +0 -1
  41. package/dest/note/notes_filter.js +0 -11
  42. package/src/note/notes_filter.ts +0 -41
@@ -5,7 +5,7 @@ import { tryRecoverAddress } from '@aztec/foundation/crypto/secp256k1-signer';
5
5
  import { Fr } from '@aztec/foundation/curves/bn254';
6
6
  import type { EthAddress } from '@aztec/foundation/eth-address';
7
7
  import { Signature } from '@aztec/foundation/eth-signature';
8
- import { BufferReader, serializeToBuffer } from '@aztec/foundation/serialize';
8
+ import { BufferReader, serializeSignedBigInt, serializeToBuffer } from '@aztec/foundation/serialize';
9
9
  import { DutyType, type SigningContext } from '@aztec/validator-ha-signer/types';
10
10
 
11
11
  import type { L2BlockInfo } from '../block/l2_block_info.js';
@@ -81,7 +81,10 @@ export class CheckpointProposal extends Gossipable {
81
81
  /** Archive root after this checkpoint is applied */
82
82
  public readonly archive: Fr,
83
83
 
84
- /** The proposer's signature over the checkpoint payload (checkpointHeader + archive) */
84
+ /** The fee asset price modifier in basis points (from oracle) */
85
+ public readonly feeAssetPriceModifier: bigint,
86
+
87
+ /** The proposer's signature over the checkpoint payload (checkpointHeader + archive + feeAssetPriceModifier) */
85
88
  public readonly signature: Signature,
86
89
 
87
90
  /** Optional last block info, including its own signature for BlockProposal extraction */
@@ -160,20 +163,31 @@ export class CheckpointProposal extends Gossipable {
160
163
 
161
164
  /**
162
165
  * Get the payload to sign for this checkpoint proposal.
163
- * The signature is over the checkpoint header + archive root (for consensus).
166
+ * The signature is over the checkpoint header + archive root + feeAssetPriceModifier (for consensus).
164
167
  */
165
168
  getPayloadToSign(domainSeparator: SignatureDomainSeparator): Buffer {
166
- return serializeToBuffer([domainSeparator, this.checkpointHeader, this.archive]);
169
+ return serializeToBuffer([
170
+ domainSeparator,
171
+ this.checkpointHeader,
172
+ this.archive,
173
+ serializeSignedBigInt(this.feeAssetPriceModifier),
174
+ ]);
167
175
  }
168
176
 
169
177
  static async createProposalFromSigner(
170
178
  checkpointHeader: CheckpointHeader,
171
179
  archiveRoot: Fr,
180
+ feeAssetPriceModifier: bigint,
172
181
  lastBlockInfo: CheckpointLastBlockData | undefined,
173
182
  payloadSigner: (payload: Buffer32, context: SigningContext) => Promise<Signature>,
174
183
  ): Promise<CheckpointProposal> {
175
184
  // Sign the checkpoint payload with CHECKPOINT_PROPOSAL duty type
176
- const tempProposal = new CheckpointProposal(checkpointHeader, archiveRoot, Signature.empty(), undefined);
185
+ const tempProposal = new CheckpointProposal(
186
+ checkpointHeader,
187
+ archiveRoot,
188
+ feeAssetPriceModifier,
189
+ Signature.empty(),
190
+ );
177
191
  const checkpointHash = getHashedSignaturePayload(tempProposal, SignatureDomainSeparator.checkpointProposal);
178
192
 
179
193
  const checkpointContext: SigningContext = {
@@ -184,7 +198,7 @@ export class CheckpointProposal extends Gossipable {
184
198
  const checkpointSignature = await payloadSigner(checkpointHash, checkpointContext);
185
199
 
186
200
  if (!lastBlockInfo) {
187
- return new CheckpointProposal(checkpointHeader, archiveRoot, checkpointSignature);
201
+ return new CheckpointProposal(checkpointHeader, archiveRoot, feeAssetPriceModifier, checkpointSignature);
188
202
  }
189
203
 
190
204
  const lastBlockProposal = await BlockProposal.createProposalFromSigner(
@@ -197,7 +211,7 @@ export class CheckpointProposal extends Gossipable {
197
211
  payloadSigner,
198
212
  );
199
213
 
200
- return new CheckpointProposal(checkpointHeader, archiveRoot, checkpointSignature, {
214
+ return new CheckpointProposal(checkpointHeader, archiveRoot, feeAssetPriceModifier, checkpointSignature, {
201
215
  blockHeader: lastBlockInfo.blockHeader,
202
216
  indexWithinCheckpoint: lastBlockInfo.indexWithinCheckpoint,
203
217
  txHashes: lastBlockInfo.txHashes,
@@ -237,7 +251,12 @@ export class CheckpointProposal extends Gossipable {
237
251
  }
238
252
 
239
253
  toBuffer(): Buffer {
240
- const buffer: any[] = [this.checkpointHeader, this.archive, this.signature];
254
+ const buffer: any[] = [
255
+ this.checkpointHeader,
256
+ this.archive,
257
+ serializeSignedBigInt(this.feeAssetPriceModifier),
258
+ this.signature,
259
+ ];
241
260
 
242
261
  if (this.lastBlock) {
243
262
  buffer.push(1); // hasLastBlock = true
@@ -264,6 +283,7 @@ export class CheckpointProposal extends Gossipable {
264
283
 
265
284
  const checkpointHeader = reader.readObject(CheckpointHeader);
266
285
  const archive = reader.readObject(Fr);
286
+ const feeAssetPriceModifier = reader.readInt256();
267
287
  const signature = reader.readObject(Signature);
268
288
 
269
289
  const hasLastBlock = reader.readNumber();
@@ -286,7 +306,7 @@ export class CheckpointProposal extends Gossipable {
286
306
  }
287
307
  }
288
308
 
289
- return new CheckpointProposal(checkpointHeader, archive, signature, {
309
+ return new CheckpointProposal(checkpointHeader, archive, feeAssetPriceModifier, signature, {
290
310
  blockHeader,
291
311
  indexWithinCheckpoint,
292
312
  txHashes,
@@ -295,7 +315,7 @@ export class CheckpointProposal extends Gossipable {
295
315
  });
296
316
  }
297
317
 
298
- return new CheckpointProposal(checkpointHeader, archive, signature);
318
+ return new CheckpointProposal(checkpointHeader, archive, feeAssetPriceModifier, signature);
299
319
  }
300
320
 
301
321
  getSize(): number {
@@ -303,6 +323,7 @@ export class CheckpointProposal extends Gossipable {
303
323
  this.checkpointHeader.toBuffer().length +
304
324
  this.archive.size +
305
325
  this.signature.getSize() +
326
+ 8 /* feeAssetPriceModifier */ +
306
327
  4; /* hasLastBlock flag */
307
328
 
308
329
  if (this.lastBlock) {
@@ -320,11 +341,11 @@ export class CheckpointProposal extends Gossipable {
320
341
  }
321
342
 
322
343
  static empty(): CheckpointProposal {
323
- return new CheckpointProposal(CheckpointHeader.empty(), Fr.ZERO, Signature.empty());
344
+ return new CheckpointProposal(CheckpointHeader.empty(), Fr.ZERO, 0n, Signature.empty());
324
345
  }
325
346
 
326
347
  static random(): CheckpointProposal {
327
- return new CheckpointProposal(CheckpointHeader.random(), Fr.random(), Signature.random(), {
348
+ return new CheckpointProposal(CheckpointHeader.random(), Fr.random(), 0n, Signature.random(), {
328
349
  blockHeader: BlockHeader.random(),
329
350
  indexWithinCheckpoint: IndexWithinCheckpoint(Math.floor(Math.random() * 5)),
330
351
  txHashes: [TxHash.random(), TxHash.random()],
@@ -337,6 +358,7 @@ export class CheckpointProposal extends Gossipable {
337
358
  checkpointHeader: this.checkpointHeader.toInspect(),
338
359
  archive: this.archive.toString(),
339
360
  signature: this.signature.toString(),
361
+ feeAssetPriceModifier: this.feeAssetPriceModifier.toString(),
340
362
  lastBlock: this.lastBlock
341
363
  ? {
342
364
  blockHeader: this.lastBlock.blockHeader.toInspect(),
@@ -353,7 +375,7 @@ export class CheckpointProposal extends Gossipable {
353
375
  * Used when the lastBlock has been extracted and stored separately.
354
376
  */
355
377
  toCore(): CheckpointProposalCore {
356
- return new CheckpointProposal(this.checkpointHeader, this.archive, this.signature);
378
+ return new CheckpointProposal(this.checkpointHeader, this.archive, this.feeAssetPriceModifier, this.signature);
357
379
  }
358
380
  }
359
381
 
@@ -1,6 +1,6 @@
1
1
  import { Fr } from '@aztec/foundation/curves/bn254';
2
2
  import { schemas } from '@aztec/foundation/schemas';
3
- import { BufferReader, serializeToBuffer } from '@aztec/foundation/serialize';
3
+ import { BufferReader, serializeSignedBigInt, serializeToBuffer } from '@aztec/foundation/serialize';
4
4
  import { hexToBuffer } from '@aztec/foundation/string';
5
5
  import type { FieldsOf } from '@aztec/foundation/types';
6
6
 
@@ -21,6 +21,8 @@ export class ConsensusPayload implements Signable {
21
21
  public readonly header: CheckpointHeader,
22
22
  /** The archive root after the block is added */
23
23
  public readonly archive: Fr,
24
+ /** The fee asset price modifier in basis points (from oracle) */
25
+ public readonly feeAssetPriceModifier: bigint = 0n,
24
26
  ) {}
25
27
 
26
28
  static get schema() {
@@ -28,12 +30,13 @@ export class ConsensusPayload implements Signable {
28
30
  .object({
29
31
  header: CheckpointHeader.schema,
30
32
  archive: schemas.Fr,
33
+ feeAssetPriceModifier: schemas.BigInt,
31
34
  })
32
- .transform(obj => new ConsensusPayload(obj.header, obj.archive));
35
+ .transform(obj => new ConsensusPayload(obj.header, obj.archive, obj.feeAssetPriceModifier));
33
36
  }
34
37
 
35
38
  static getFields(fields: FieldsOf<ConsensusPayload>) {
36
- return [fields.header, fields.archive] as const;
39
+ return [fields.header, fields.archive, fields.feeAssetPriceModifier] as const;
37
40
  }
38
41
 
39
42
  getPayloadToSign(domainSeparator: SignatureDomainSeparator): Buffer {
@@ -50,41 +53,50 @@ export class ConsensusPayload implements Signable {
50
53
  const headerHash = this.header.hash().toString();
51
54
  const encodedData = encodeAbiParameters(abi, [
52
55
  domainSeparator,
53
- [archiveRoot, [0n] /* @todo See #9963 */, headerHash],
56
+ [archiveRoot, [this.feeAssetPriceModifier], headerHash],
54
57
  ] as const);
55
58
 
56
59
  return hexToBuffer(encodedData);
57
60
  }
58
61
 
59
62
  toBuffer(): Buffer {
60
- return serializeToBuffer([this.header, this.archive]);
63
+ return serializeToBuffer([this.header, this.archive, serializeSignedBigInt(this.feeAssetPriceModifier)]);
61
64
  }
62
65
 
63
66
  public equals(other: ConsensusPayload | CheckpointProposal | CheckpointProposalCore): boolean {
64
67
  const otherHeader = 'checkpointHeader' in other ? other.checkpointHeader : other.header;
65
- return this.header.equals(otherHeader) && this.archive.equals(other.archive);
68
+ const otherModifier = 'feeAssetPriceModifier' in other ? other.feeAssetPriceModifier : 0n;
69
+ return (
70
+ this.header.equals(otherHeader) &&
71
+ this.archive.equals(other.archive) &&
72
+ this.feeAssetPriceModifier === otherModifier
73
+ );
66
74
  }
67
75
 
68
76
  static fromBuffer(buf: Buffer | BufferReader): ConsensusPayload {
69
77
  const reader = BufferReader.asReader(buf);
70
- const payload = new ConsensusPayload(reader.readObject(CheckpointHeader), reader.readObject(Fr));
78
+ const payload = new ConsensusPayload(
79
+ reader.readObject(CheckpointHeader),
80
+ reader.readObject(Fr),
81
+ reader.readInt256(),
82
+ );
71
83
  return payload;
72
84
  }
73
85
 
74
86
  static fromFields(fields: FieldsOf<ConsensusPayload>): ConsensusPayload {
75
- return new ConsensusPayload(fields.header, fields.archive);
87
+ return new ConsensusPayload(fields.header, fields.archive, fields.feeAssetPriceModifier);
76
88
  }
77
89
 
78
90
  static fromCheckpoint(checkpoint: Checkpoint): ConsensusPayload {
79
- return new ConsensusPayload(checkpoint.header, checkpoint.archive.root);
91
+ return new ConsensusPayload(checkpoint.header, checkpoint.archive.root, checkpoint.feeAssetPriceModifier);
80
92
  }
81
93
 
82
94
  static empty(): ConsensusPayload {
83
- return new ConsensusPayload(CheckpointHeader.empty(), Fr.ZERO);
95
+ return new ConsensusPayload(CheckpointHeader.empty(), Fr.ZERO, 0n);
84
96
  }
85
97
 
86
98
  static random(): ConsensusPayload {
87
- return new ConsensusPayload(CheckpointHeader.random(), Fr.random());
99
+ return new ConsensusPayload(CheckpointHeader.random(), Fr.random(), 0n);
88
100
  }
89
101
 
90
102
  /**
@@ -104,10 +116,11 @@ export class ConsensusPayload implements Signable {
104
116
  return {
105
117
  header: this.header.toInspect(),
106
118
  archive: this.archive.toString(),
119
+ feeAssetPriceModifier: this.feeAssetPriceModifier.toString(),
107
120
  };
108
121
  }
109
122
 
110
123
  toString() {
111
- return `header: ${this.header.toString()}, archive: ${this.archive.toString()}}`;
124
+ return `header: ${this.header.toString()}, archive: ${this.archive.toString()}, feeAssetPriceModifier: ${this.feeAssetPriceModifier}}`;
112
125
  }
113
126
  }
@@ -503,6 +503,7 @@ export interface MakeConsensusPayloadOptions {
503
503
  archive?: Fr;
504
504
  txHashes?: TxHash[];
505
505
  txs?: Tx[];
506
+ feeAssetPriceModifier?: bigint;
506
507
  }
507
508
 
508
509
  export interface MakeBlockProposalOptions {
@@ -519,6 +520,7 @@ export interface MakeCheckpointProposalOptions {
519
520
  signer?: Secp256k1Signer;
520
521
  checkpointHeader?: CheckpointHeader;
521
522
  archiveRoot?: Fr;
523
+ feeAssetPriceModifier?: bigint;
522
524
  /** Options for the lastBlock - if undefined, no lastBlock is included */
523
525
  lastBlock?: {
524
526
  blockHeader?: BlockHeader;
@@ -534,11 +536,12 @@ const makeAndSignConsensusPayload = (
534
536
  options?: MakeConsensusPayloadOptions,
535
537
  ) => {
536
538
  const header = options?.header ?? makeCheckpointHeader(1);
537
- const { signer = Secp256k1Signer.random(), archive = Fr.random() } = options ?? {};
539
+ const { signer = Secp256k1Signer.random(), archive = Fr.random(), feeAssetPriceModifier = 0n } = options ?? {};
538
540
 
539
541
  const payload = ConsensusPayload.fromFields({
540
542
  header,
541
543
  archive,
544
+ feeAssetPriceModifier,
542
545
  });
543
546
 
544
547
  const hash = getHashedSignaturePayloadEthSignedMessage(payload, domainSeparator);
@@ -582,6 +585,7 @@ export const makeCheckpointProposal = (options?: MakeCheckpointProposalOptions):
582
585
  const blockHeader = options?.lastBlock?.blockHeader ?? makeBlockHeader(1);
583
586
  const checkpointHeader = options?.checkpointHeader ?? makeCheckpointHeader(1);
584
587
  const archiveRoot = options?.archiveRoot ?? Fr.random();
588
+ const feeAssetPriceModifier = options?.feeAssetPriceModifier ?? 0n;
585
589
  const signer = options?.signer ?? Secp256k1Signer.random();
586
590
 
587
591
  // Build lastBlock info if provided
@@ -594,8 +598,12 @@ export const makeCheckpointProposal = (options?: MakeCheckpointProposalOptions):
594
598
  }
595
599
  : undefined;
596
600
 
597
- return CheckpointProposal.createProposalFromSigner(checkpointHeader, archiveRoot, lastBlockInfo, payload =>
598
- Promise.resolve(signer.signMessage(payload)),
601
+ return CheckpointProposal.createProposalFromSigner(
602
+ checkpointHeader,
603
+ archiveRoot,
604
+ feeAssetPriceModifier,
605
+ lastBlockInfo,
606
+ payload => Promise.resolve(signer.signMessage(payload)),
599
607
  );
600
608
  };
601
609
 
@@ -605,6 +613,7 @@ export const makeCheckpointProposal = (options?: MakeCheckpointProposalOptions):
605
613
  export type MakeCheckpointAttestationOptions = {
606
614
  header?: CheckpointHeader;
607
615
  archive?: Fr;
616
+ feeAssetPriceModifier?: bigint;
608
617
  attesterSigner?: Secp256k1Signer;
609
618
  proposerSigner?: Secp256k1Signer;
610
619
  signer?: Secp256k1Signer;
@@ -616,9 +625,10 @@ export type MakeCheckpointAttestationOptions = {
616
625
  export const makeCheckpointAttestation = (options: MakeCheckpointAttestationOptions = {}): CheckpointAttestation => {
617
626
  const header = options.header ?? makeCheckpointHeader(1);
618
627
  const archive = options.archive ?? Fr.random();
628
+ const feeAssetPriceModifier = options.feeAssetPriceModifier ?? 0n;
619
629
  const { signer, attesterSigner = signer, proposerSigner = signer } = options;
620
630
 
621
- const payload = new ConsensusPayload(header, archive);
631
+ const payload = new ConsensusPayload(header, archive, feeAssetPriceModifier);
622
632
 
623
633
  // Sign as attester
624
634
  const attestationHash = getHashedSignaturePayloadEthSignedMessage(
@@ -631,7 +641,7 @@ export const makeCheckpointAttestation = (options: MakeCheckpointAttestationOpti
631
641
  // Sign as proposer - use CheckpointProposal's payload format (serializeToBuffer)
632
642
  // This is different from ConsensusPayload's format (ABI encoding)
633
643
  const proposalSignerToUse = proposerSigner ?? Secp256k1Signer.random();
634
- const tempProposal = new CheckpointProposal(header, archive, Signature.empty());
644
+ const tempProposal = new CheckpointProposal(header, archive, feeAssetPriceModifier, Signature.empty());
635
645
  const proposalHash = getHashedSignaturePayloadEthSignedMessage(
636
646
  tempProposal,
637
647
  SignatureDomainSeparator.checkpointProposal,
@@ -648,7 +658,7 @@ export const makeCheckpointAttestationFromProposal = (
648
658
  proposal: CheckpointProposal,
649
659
  attesterSigner?: Secp256k1Signer,
650
660
  ): CheckpointAttestation => {
651
- const payload = new ConsensusPayload(proposal.checkpointHeader, proposal.archive);
661
+ const payload = new ConsensusPayload(proposal.checkpointHeader, proposal.archive, proposal.feeAssetPriceModifier);
652
662
 
653
663
  // Sign as attester
654
664
  const attestationHash = getHashedSignaturePayloadEthSignedMessage(
@@ -672,8 +682,9 @@ export const makeCheckpointAttestationFromCheckpoint = (
672
682
  ): CheckpointAttestation => {
673
683
  const header = checkpoint.header;
674
684
  const archive = checkpoint.archive.root;
685
+ const feeAssetPriceModifier = checkpoint.feeAssetPriceModifier;
675
686
 
676
- return makeCheckpointAttestation({ header, archive, attesterSigner, proposerSigner });
687
+ return makeCheckpointAttestation({ header, archive, feeAssetPriceModifier, attesterSigner, proposerSigner });
677
688
  };
678
689
 
679
690
  /**
@@ -1,30 +0,0 @@
1
- import type { Fr } from '@aztec/foundation/curves/bn254';
2
- import type { AztecAddress } from '../aztec-address/index.js';
3
- import { type ZodFor } from '../schemas/index.js';
4
- import { NoteStatus } from './note_status.js';
5
- /**
6
- * A filter used to fetch notes.
7
- * @remarks This filter is applied as an intersection of all its params.
8
- */
9
- export type NotesFilter = {
10
- /**
11
- * The contract address the note belongs to.
12
- * @remarks Providing a contract address is required as we need that information to trigger private state sync.
13
- */
14
- contractAddress: AztecAddress;
15
- /** The owner of the note. */
16
- owner?: AztecAddress;
17
- /** The specific storage location of the note on the contract. */
18
- storageSlot?: Fr;
19
- /** The status of the note. Defaults to 'ACTIVE'. */
20
- status?: NoteStatus;
21
- /** The siloed nullifier for the note. */
22
- siloedNullifier?: Fr;
23
- /**
24
- * The scopes in which to get notes from
25
- * Undefined scopes means all scopes, while empty list of scopes means no scope at all
26
- */
27
- scopes?: AztecAddress[];
28
- };
29
- export declare const NotesFilterSchema: ZodFor<NotesFilter>;
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90ZXNfZmlsdGVyLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvbm90ZS9ub3Rlc19maWx0ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxLQUFLLEVBQUUsRUFBRSxFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFJekQsT0FBTyxLQUFLLEVBQUUsWUFBWSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDOUQsT0FBTyxFQUFFLEtBQUssTUFBTSxFQUFXLE1BQU0scUJBQXFCLENBQUM7QUFDM0QsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBRTlDOzs7R0FHRztBQUNILE1BQU0sTUFBTSxXQUFXLEdBQUc7SUFDeEI7OztPQUdHO0lBQ0gsZUFBZSxFQUFFLFlBQVksQ0FBQztJQUM5Qiw2QkFBNkI7SUFDN0IsS0FBSyxDQUFDLEVBQUUsWUFBWSxDQUFDO0lBQ3JCLGlFQUFpRTtJQUNqRSxXQUFXLENBQUMsRUFBRSxFQUFFLENBQUM7SUFDakIsb0RBQW9EO0lBQ3BELE1BQU0sQ0FBQyxFQUFFLFVBQVUsQ0FBQztJQUNwQix5Q0FBeUM7SUFDekMsZUFBZSxDQUFDLEVBQUUsRUFBRSxDQUFDO0lBQ3JCOzs7T0FHRztJQUNILE1BQU0sQ0FBQyxFQUFFLFlBQVksRUFBRSxDQUFDO0NBQ3pCLENBQUM7QUFFRixlQUFPLE1BQU0saUJBQWlCLEVBQUUsTUFBTSxDQUFDLFdBQVcsQ0FPaEQsQ0FBQyJ9
@@ -1 +0,0 @@
1
- {"version":3,"file":"notes_filter.d.ts","sourceRoot":"","sources":["../../src/note/notes_filter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,gCAAgC,CAAC;AAIzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,KAAK,MAAM,EAAW,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAE9C;;;GAGG;AACH,MAAM,MAAM,WAAW,GAAG;IACxB;;;OAGG;IACH,eAAe,EAAE,YAAY,CAAC;IAC9B,6BAA6B;IAC7B,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,iEAAiE;IACjE,WAAW,CAAC,EAAE,EAAE,CAAC;IACjB,oDAAoD;IACpD,MAAM,CAAC,EAAE,UAAU,CAAC;IACpB,yCAAyC;IACzC,eAAe,CAAC,EAAE,EAAE,CAAC;IACrB;;;OAGG;IACH,MAAM,CAAC,EAAE,YAAY,EAAE,CAAC;CACzB,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,WAAW,CAOhD,CAAC"}
@@ -1,11 +0,0 @@
1
- import { z } from 'zod';
2
- import { schemas } from '../schemas/index.js';
3
- import { NoteStatus } from './note_status.js';
4
- export const NotesFilterSchema = z.object({
5
- contractAddress: schemas.AztecAddress,
6
- owner: schemas.AztecAddress.optional(),
7
- storageSlot: schemas.Fr.optional(),
8
- status: z.nativeEnum(NoteStatus).optional(),
9
- siloedNullifier: schemas.Fr.optional(),
10
- scopes: z.array(schemas.AztecAddress).optional()
11
- });
@@ -1,41 +0,0 @@
1
- import type { Fr } from '@aztec/foundation/curves/bn254';
2
-
3
- import { z } from 'zod';
4
-
5
- import type { AztecAddress } from '../aztec-address/index.js';
6
- import { type ZodFor, schemas } from '../schemas/index.js';
7
- import { NoteStatus } from './note_status.js';
8
-
9
- /**
10
- * A filter used to fetch notes.
11
- * @remarks This filter is applied as an intersection of all its params.
12
- */
13
- export type NotesFilter = {
14
- /**
15
- * The contract address the note belongs to.
16
- * @remarks Providing a contract address is required as we need that information to trigger private state sync.
17
- */
18
- contractAddress: AztecAddress;
19
- /** The owner of the note. */
20
- owner?: AztecAddress;
21
- /** The specific storage location of the note on the contract. */
22
- storageSlot?: Fr;
23
- /** The status of the note. Defaults to 'ACTIVE'. */
24
- status?: NoteStatus;
25
- /** The siloed nullifier for the note. */
26
- siloedNullifier?: Fr;
27
- /**
28
- * The scopes in which to get notes from
29
- * Undefined scopes means all scopes, while empty list of scopes means no scope at all
30
- */
31
- scopes?: AztecAddress[];
32
- };
33
-
34
- export const NotesFilterSchema: ZodFor<NotesFilter> = z.object({
35
- contractAddress: schemas.AztecAddress,
36
- owner: schemas.AztecAddress.optional(),
37
- storageSlot: schemas.Fr.optional(),
38
- status: z.nativeEnum(NoteStatus).optional(),
39
- siloedNullifier: schemas.Fr.optional(),
40
- scopes: z.array(schemas.AztecAddress).optional(),
41
- });