@aztec/aztec.js 0.0.1-commit.0208eb9 → 0.0.1-commit.033589e

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 (96) hide show
  1. package/dest/api/abi.d.ts +2 -2
  2. package/dest/api/abi.d.ts.map +1 -1
  3. package/dest/api/contract.d.ts +5 -5
  4. package/dest/api/contract.d.ts.map +1 -1
  5. package/dest/api/contract.js +3 -3
  6. package/dest/api/deployment.d.ts +1 -2
  7. package/dest/api/deployment.d.ts.map +1 -1
  8. package/dest/api/deployment.js +0 -1
  9. package/dest/api/events.d.ts +10 -6
  10. package/dest/api/events.d.ts.map +1 -1
  11. package/dest/api/events.js +30 -20
  12. package/dest/api/fields.d.ts +2 -1
  13. package/dest/api/fields.d.ts.map +1 -1
  14. package/dest/api/fields.js +1 -0
  15. package/dest/api/wallet.d.ts +2 -2
  16. package/dest/api/wallet.d.ts.map +1 -1
  17. package/dest/api/wallet.js +1 -1
  18. package/dest/contract/base_contract_interaction.d.ts +3 -3
  19. package/dest/contract/base_contract_interaction.d.ts.map +1 -1
  20. package/dest/contract/batch_call.d.ts +3 -3
  21. package/dest/contract/batch_call.d.ts.map +1 -1
  22. package/dest/contract/batch_call.js +17 -8
  23. package/dest/contract/contract_function_interaction.d.ts +7 -16
  24. package/dest/contract/contract_function_interaction.d.ts.map +1 -1
  25. package/dest/contract/contract_function_interaction.js +107 -18
  26. package/dest/contract/deploy_method.d.ts +37 -12
  27. package/dest/contract/deploy_method.d.ts.map +1 -1
  28. package/dest/contract/deploy_method.js +42 -21
  29. package/dest/contract/get_gas_limits.js +3 -3
  30. package/dest/contract/interaction_options.d.ts +62 -21
  31. package/dest/contract/interaction_options.d.ts.map +1 -1
  32. package/dest/contract/interaction_options.js +33 -0
  33. package/dest/contract/protocol_contracts/auth-registry.d.ts +10 -1
  34. package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
  35. package/dest/contract/protocol_contracts/auth-registry.js +506 -59
  36. package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -13
  37. package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
  38. package/dest/contract/protocol_contracts/contract-class-registry.js +12 -258
  39. package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -1
  40. package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
  41. package/dest/contract/protocol_contracts/fee-juice.js +8 -0
  42. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +1 -1
  43. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
  44. package/dest/contract/protocol_contracts/multi-call-entrypoint.js +17 -1
  45. package/dest/contract/protocol_contracts/public-checks.d.ts +1 -1
  46. package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
  47. package/dest/contract/protocol_contracts/public-checks.js +17 -1
  48. package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
  49. package/dest/fee/private_fee_payment_method.js +10 -10
  50. package/dest/fee/public_fee_payment_method.js +10 -10
  51. package/dest/fee/sponsored_fee_payment.js +3 -3
  52. package/dest/utils/abi_types.d.ts +6 -1
  53. package/dest/utils/abi_types.d.ts.map +1 -1
  54. package/dest/utils/abi_types.js +1 -1
  55. package/dest/utils/authwit.d.ts +5 -5
  56. package/dest/utils/authwit.d.ts.map +1 -1
  57. package/dest/utils/authwit.js +10 -6
  58. package/dest/wallet/capabilities.d.ts +13 -5
  59. package/dest/wallet/capabilities.d.ts.map +1 -1
  60. package/dest/wallet/deploy_account_method.d.ts +15 -4
  61. package/dest/wallet/deploy_account_method.d.ts.map +1 -1
  62. package/dest/wallet/deploy_account_method.js +26 -0
  63. package/dest/wallet/wallet.d.ts +297 -89
  64. package/dest/wallet/wallet.d.ts.map +1 -1
  65. package/dest/wallet/wallet.js +54 -27
  66. package/package.json +20 -11
  67. package/src/api/abi.ts +1 -0
  68. package/src/api/contract.ts +10 -3
  69. package/src/api/deployment.ts +0 -1
  70. package/src/api/events.ts +35 -27
  71. package/src/api/fields.ts +1 -0
  72. package/src/api/wallet.ts +5 -1
  73. package/src/contract/base_contract_interaction.ts +3 -2
  74. package/src/contract/batch_call.ts +17 -14
  75. package/src/contract/contract_function_interaction.ts +114 -26
  76. package/src/contract/deploy_method.ts +77 -32
  77. package/src/contract/get_gas_limits.ts +3 -3
  78. package/src/contract/interaction_options.ts +96 -23
  79. package/src/contract/protocol_contracts/auth-registry.ts +239 -37
  80. package/src/contract/protocol_contracts/contract-class-registry.ts +3 -145
  81. package/src/contract/protocol_contracts/fee-juice.ts +2 -0
  82. package/src/contract/protocol_contracts/multi-call-entrypoint.ts +5 -1
  83. package/src/contract/protocol_contracts/public-checks.ts +5 -1
  84. package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
  85. package/src/fee/private_fee_payment_method.ts +7 -7
  86. package/src/fee/public_fee_payment_method.ts +8 -8
  87. package/src/fee/sponsored_fee_payment.ts +3 -3
  88. package/src/utils/abi_types.ts +7 -0
  89. package/src/utils/authwit.ts +20 -22
  90. package/src/wallet/capabilities.ts +13 -4
  91. package/src/wallet/deploy_account_method.ts +39 -2
  92. package/src/wallet/wallet.ts +110 -39
  93. package/dest/deployment/broadcast_function.d.ts +0 -24
  94. package/dest/deployment/broadcast_function.d.ts.map +0 -1
  95. package/dest/deployment/broadcast_function.js +0 -74
  96. package/src/deployment/broadcast_function.ts +0 -148
@@ -1 +1 @@
1
- {"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../src/wallet/wallet.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../src/wallet/wallet.ts"],"names":[],"mappings":"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"}
@@ -1,24 +1,14 @@
1
1
  import { BlockNumberPositiveSchema } from '@aztec/foundation/branded-types';
2
- import { AbiTypeSchema, ContractArtifactSchema, FunctionType } from '@aztec/stdlib/abi';
2
+ import { AbiTypeSchema, ContractArtifactSchema, FunctionCall } from '@aztec/stdlib/abi';
3
3
  import { AuthWitness } from '@aztec/stdlib/auth-witness';
4
4
  import { ContractInstanceWithAddressSchema } from '@aztec/stdlib/contract';
5
5
  import { Gas } from '@aztec/stdlib/gas';
6
6
  import { AbiDecodedSchema, optional, schemas, zodFor } from '@aztec/stdlib/schemas';
7
- import { Capsule, HashedValues, TxHash, TxProfileResult, TxReceipt, TxSimulationResult, UtilitySimulationResult, inTxSchema } from '@aztec/stdlib/tx';
7
+ import { Capsule, HashedValues, TxHash, TxProfileResult, TxReceipt, TxSimulationResult, UtilityExecutionResult, inTxSchema } from '@aztec/stdlib/tx';
8
8
  import { z } from 'zod';
9
9
  import { NO_WAIT } from '../contract/interaction_options.js';
10
- export const FunctionCallSchema = z.object({
11
- name: z.string(),
12
- to: schemas.AztecAddress,
13
- selector: schemas.FunctionSelector,
14
- type: z.nativeEnum(FunctionType),
15
- isStatic: z.boolean(),
16
- hideMsgSender: z.boolean(),
17
- args: z.array(schemas.Fr),
18
- returnTypes: z.array(AbiTypeSchema)
19
- });
20
10
  export const ExecutionPayloadSchema = z.object({
21
- calls: z.array(FunctionCallSchema),
11
+ calls: z.array(FunctionCall.schema),
22
12
  authWitnesses: z.array(AuthWitness.schema),
23
13
  capsules: z.array(Capsule.schema),
24
14
  extraHashedArgs: z.array(HashedValues.schema),
@@ -56,7 +46,8 @@ export const SendOptionsSchema = z.object({
56
46
  wait: optional(z.union([
57
47
  z.literal(NO_WAIT),
58
48
  WaitOptsSchema
59
- ]))
49
+ ])),
50
+ additionalScopes: optional(z.array(schemas.AztecAddress))
60
51
  });
61
52
  export const SimulateOptionsSchema = z.object({
62
53
  from: schemas.AztecAddress,
@@ -65,7 +56,8 @@ export const SimulateOptionsSchema = z.object({
65
56
  fee: optional(WalletSimulationFeeOptionSchema),
66
57
  skipTxValidation: optional(z.boolean()),
67
58
  skipFeeEnforcement: optional(z.boolean()),
68
- includeMetadata: optional(z.boolean())
59
+ includeMetadata: optional(z.boolean()),
60
+ additionalScopes: optional(z.array(schemas.AztecAddress))
69
61
  });
70
62
  export const ProfileOptionsSchema = SimulateOptionsSchema.extend({
71
63
  profileMode: z.enum([
@@ -82,7 +74,7 @@ export const MessageHashOrIntentSchema = z.union([
82
74
  }),
83
75
  z.object({
84
76
  caller: schemas.AztecAddress,
85
- call: FunctionCallSchema
77
+ call: FunctionCall.schema
86
78
  })
87
79
  ]);
88
80
  export const EventMetadataDefinitionSchema = z.object({
@@ -90,17 +82,28 @@ export const EventMetadataDefinitionSchema = z.object({
90
82
  abiType: AbiTypeSchema,
91
83
  fieldNames: z.array(z.string())
92
84
  });
93
- export const PrivateEventSchema = zodFor()(z.object({
94
- event: AbiDecodedSchema,
95
- metadata: inTxSchema()
96
- }));
97
- export const PrivateEventFilterSchema = z.object({
98
- contractAddress: schemas.AztecAddress,
99
- scopes: z.array(schemas.AztecAddress),
85
+ const EventFilterBaseSchema = z.object({
100
86
  txHash: optional(TxHash.schema),
101
87
  fromBlock: optional(BlockNumberPositiveSchema),
102
88
  toBlock: optional(BlockNumberPositiveSchema)
103
89
  });
90
+ export const PrivateEventFilterSchema = EventFilterBaseSchema.extend({
91
+ contractAddress: schemas.AztecAddress,
92
+ scopes: z.array(schemas.AztecAddress)
93
+ });
94
+ export const PublicEventFilterSchema = EventFilterBaseSchema.extend({
95
+ contractAddress: optional(schemas.AztecAddress)
96
+ });
97
+ export const PrivateEventSchema = zodFor()(z.object({
98
+ event: AbiDecodedSchema,
99
+ metadata: inTxSchema()
100
+ }));
101
+ export const PublicEventSchema = zodFor()(z.object({
102
+ event: AbiDecodedSchema,
103
+ metadata: z.intersection(inTxSchema(), z.object({
104
+ contractAddress: schemas.AztecAddress
105
+ }))
106
+ }));
104
107
  export const ContractMetadataSchema = z.object({
105
108
  instance: optional(ContractInstanceWithAddressSchema),
106
109
  isContractInitialized: z.boolean(),
@@ -120,7 +123,11 @@ export const ContractFunctionPatternSchema = z.object({
120
123
  function: z.union([
121
124
  z.string(),
122
125
  z.literal('*')
123
- ])
126
+ ]),
127
+ additionalScopes: optional(z.union([
128
+ z.array(schemas.AztecAddress),
129
+ z.literal('*')
130
+ ]))
124
131
  });
125
132
  export const AccountsCapabilitySchema = z.object({
126
133
  type: z.literal('accounts'),
@@ -230,6 +237,19 @@ export const WalletCapabilitiesSchema = z.object({
230
237
  }),
231
238
  expiresAt: optional(z.number())
232
239
  });
240
+ const OffchainEffectSchema = z.object({
241
+ data: z.array(schemas.Fr),
242
+ contractAddress: schemas.AztecAddress
243
+ });
244
+ const OffchainMessageSchema = z.object({
245
+ recipient: schemas.AztecAddress,
246
+ payload: z.array(schemas.Fr),
247
+ contractAddress: schemas.AztecAddress
248
+ });
249
+ const OffchainOutputSchema = z.object({
250
+ offchainEffects: z.array(OffchainEffectSchema),
251
+ offchainMessages: z.array(OffchainMessageSchema)
252
+ });
233
253
  /**
234
254
  * Record of all wallet method schemas (excluding batch).
235
255
  * This is the single source of truth for method schemas - batch schemas are derived from this.
@@ -252,11 +272,18 @@ export const WalletCapabilitiesSchema = z.object({
252
272
  }))),
253
273
  registerContract: z.function().args(ContractInstanceWithAddressSchema, optional(ContractArtifactSchema), optional(schemas.Fr)).returns(ContractInstanceWithAddressSchema),
254
274
  simulateTx: z.function().args(ExecutionPayloadSchema, SimulateOptionsSchema).returns(TxSimulationResult.schema),
255
- simulateUtility: z.function().args(FunctionCallSchema, optional(z.array(AuthWitness.schema))).returns(UtilitySimulationResult.schema),
275
+ executeUtility: z.function().args(FunctionCall.schema, z.object({
276
+ scope: schemas.AztecAddress,
277
+ authWitnesses: optional(z.array(AuthWitness.schema))
278
+ })).returns(UtilityExecutionResult.schema),
256
279
  profileTx: z.function().args(ExecutionPayloadSchema, ProfileOptionsSchema).returns(TxProfileResult.schema),
257
280
  sendTx: z.function().args(ExecutionPayloadSchema, SendOptionsSchema).returns(z.union([
258
- TxHash.schema,
259
- TxReceipt.schema
281
+ z.object({
282
+ txHash: TxHash.schema
283
+ }).merge(OffchainOutputSchema),
284
+ z.object({
285
+ receipt: TxReceipt.schema
286
+ }).merge(OffchainOutputSchema)
260
287
  ])),
261
288
  createAuthWit: z.function().args(schemas.AztecAddress, MessageHashOrIntentSchema).returns(AuthWitness.schema),
262
289
  requestCapabilities: z.function().args(AppCapabilitiesSchema).returns(WalletCapabilitiesSchema)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aztec/aztec.js",
3
3
  "homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/aztec.js",
4
- "version": "0.0.1-commit.0208eb9",
4
+ "version": "0.0.1-commit.033589e",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./abi": "./dest/api/abi.js",
@@ -30,7 +30,16 @@
30
30
  },
31
31
  "typedocOptions": {
32
32
  "entryPoints": [
33
- "./src/index.ts"
33
+ "./src/api/abi.ts",
34
+ "./src/api/account.ts",
35
+ "./src/api/contract.ts",
36
+ "./src/api/deployment.ts",
37
+ "./src/api/ethereum.ts",
38
+ "./src/api/fee.ts",
39
+ "./src/api/fields.ts",
40
+ "./src/api/keys.ts",
41
+ "./src/api/tx.ts",
42
+ "./src/api/wallet.ts"
34
43
  ],
35
44
  "name": "Aztec.js",
36
45
  "tsconfig": "./tsconfig.json"
@@ -85,20 +94,20 @@
85
94
  ]
86
95
  },
87
96
  "dependencies": {
88
- "@aztec/constants": "0.0.1-commit.0208eb9",
89
- "@aztec/entrypoints": "0.0.1-commit.0208eb9",
90
- "@aztec/ethereum": "0.0.1-commit.0208eb9",
91
- "@aztec/foundation": "0.0.1-commit.0208eb9",
92
- "@aztec/l1-artifacts": "0.0.1-commit.0208eb9",
93
- "@aztec/protocol-contracts": "0.0.1-commit.0208eb9",
94
- "@aztec/stdlib": "0.0.1-commit.0208eb9",
95
- "axios": "^1.12.0",
97
+ "@aztec/constants": "0.0.1-commit.033589e",
98
+ "@aztec/entrypoints": "0.0.1-commit.033589e",
99
+ "@aztec/ethereum": "0.0.1-commit.033589e",
100
+ "@aztec/foundation": "0.0.1-commit.033589e",
101
+ "@aztec/l1-artifacts": "0.0.1-commit.033589e",
102
+ "@aztec/protocol-contracts": "0.0.1-commit.033589e",
103
+ "@aztec/stdlib": "0.0.1-commit.033589e",
104
+ "axios": "^1.13.5",
96
105
  "tslib": "^2.4.0",
97
106
  "viem": "npm:@aztec/viem@2.38.2",
98
107
  "zod": "^3.23.8"
99
108
  },
100
109
  "devDependencies": {
101
- "@aztec/builder": "0.0.1-commit.0208eb9",
110
+ "@aztec/builder": "0.0.1-commit.033589e",
102
111
  "@jest/globals": "^30.0.0",
103
112
  "@types/jest": "^30.0.0",
104
113
  "@types/node": "^22.15.17",
package/src/api/abi.ts CHANGED
@@ -31,6 +31,7 @@ export {
31
31
  type EventSelectorLike,
32
32
  type FieldLike,
33
33
  type FunctionSelectorLike,
34
+ type OptionLike,
34
35
  type U128Like,
35
36
  type WrappedFieldLike,
36
37
  } from '../utils/abi_types.js';
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * The `contract` module provides utilities for deploying and interacting with contracts, based on a
3
3
  * `Wallet` instance and a compiled artifact. Refer to the {@link account} module for how to obtain a valid
4
- * `Wallet` instance, and to the {@link https://docs.aztec.network/developers/aztec-nr/how_to_compile_contract | Compiling contracts}
4
+ * `Wallet` instance, and to the {@link https://docs.aztec.network/developers/aztec-nr/compiling_contracts | Compiling contracts}
5
5
  * section of the documentation for how to generate an artifact out of your Noir source code.
6
6
  *
7
7
  * The {@link Contract} class is the main class in this module, and provides static methods for deploying
@@ -37,7 +37,7 @@
37
37
  * If you pass `wait: NO_WAIT` in the options, it will return a {@link TxHash} immediately without waiting.
38
38
  *
39
39
  * @remarks If you are using typescript, consider using the
40
- * {@link https://docs.aztec.network/developers/aztec-nr/how_to_compile_contract#use-generated-interfaces | autogenerated type-safe interfaces}
40
+ * {@link https://docs.aztec.network/developers/aztec-nr/compiling_contracts#use-generated-interfaces | autogenerated type-safe interfaces}
41
41
  * for interacting with your contracts.
42
42
  *
43
43
  * @packageDocumentation
@@ -48,6 +48,8 @@ export { ContractFunctionInteraction } from '../contract/contract_function_inter
48
48
  export {
49
49
  NO_WAIT,
50
50
  type NoWait,
51
+ type OffchainMessage,
52
+ type OffchainOutput,
51
53
  type RequestInteractionOptions,
52
54
  type SendInteractionOptions,
53
55
  type ProfileInteractionOptions,
@@ -56,7 +58,11 @@ export {
56
58
  type InteractionWaitOptions,
57
59
  type GasSettingsOption,
58
60
  type SendReturn,
59
- type SimulationReturn,
61
+ type SimulationResult,
62
+ type TxSendResultImmediate,
63
+ type TxSendResultMined,
64
+ emptyOffchainOutput,
65
+ extractOffchainOutput,
60
66
  toProfileOptions,
61
67
  toSendOptions,
62
68
  toSimulateOptions,
@@ -67,6 +73,7 @@ export { ContractBase, type ContractMethod, type ContractStorageLayout } from '.
67
73
  export { BatchCall } from '../contract/batch_call.js';
68
74
  export {
69
75
  type DeployOptions,
76
+ type DeployResultMined,
70
77
  type DeployReturn,
71
78
  type DeployTxReceipt,
72
79
  type DeployWaitOptions,
@@ -1,4 +1,3 @@
1
1
  export { publishContractClass } from '../deployment/publish_class.js';
2
- export { broadcastPrivateFunction, broadcastUtilityFunction } from '../deployment/broadcast_function.js';
3
2
  export { publishInstance } from '../deployment/publish_instance.js';
4
3
  export { ContractDeployer } from '../deployment/contract_deployer.js';
package/src/api/events.ts CHANGED
@@ -1,44 +1,52 @@
1
1
  import { type EventMetadataDefinition, EventSelector, decodeFromAbi } from '@aztec/stdlib/abi';
2
2
  import type { AztecNode } from '@aztec/stdlib/interfaces/client';
3
3
 
4
+ import type { PublicEvent, PublicEventFilter } from '../wallet/wallet.js';
5
+
4
6
  /**
5
7
  * Returns decoded public events given search parameters.
6
8
  * @param node - The node to request events from
7
- * @param eventMetadata - Metadata of the event. This should be the class generated from the contract. e.g. Contract.events.Event
8
- * @param from - The block number to search from.
9
- * @param limit - The amount of blocks to search.
10
- * @returns - The deserialized events.
9
+ * @param eventMetadataDef - Metadata of the event. This should be the class generated from the contract. e.g. Contract.events.Event
10
+ * @param filter - Filter options for the event query:
11
+ * - `contractAddress`: The address of the contract that emitted the events.
12
+ * - `txHash`: Transaction in which the events were emitted.
13
+ * - `fromBlock`: The block number from which to start fetching events (inclusive). Defaults to 1.
14
+ * - `toBlock`: The block number until which to fetch events (not inclusive). Defaults to latest + 1.
15
+ * @returns - The decoded events with metadata.
11
16
  */
12
- export async function getDecodedPublicEvents<T>(
17
+ export async function getPublicEvents<T>(
13
18
  node: AztecNode,
14
19
  eventMetadataDef: EventMetadataDefinition,
15
- from: number,
16
- limit: number,
17
- ): Promise<T[]> {
20
+ filter: PublicEventFilter,
21
+ ): Promise<PublicEvent<T>[]> {
18
22
  const { logs } = await node.getPublicLogs({
19
- fromBlock: from,
20
- toBlock: from + limit,
23
+ fromBlock: filter.fromBlock ? Number(filter.fromBlock) : undefined,
24
+ toBlock: filter.toBlock ? Number(filter.toBlock) : undefined,
25
+ txHash: filter.txHash,
26
+ contractAddress: filter.contractAddress,
21
27
  });
22
28
 
23
- const decodedEvents = logs
24
- .map(log => {
25
- // +1 for the event selector
26
- const expectedLength = eventMetadataDef.fieldNames.length + 1;
27
- if (log.log.fields.length !== expectedLength) {
28
- throw new Error(
29
- `Something is weird here, we have matching EventSelectors, but the actual payload has mismatched length. Expected ${expectedLength}. Got ${log.log.fields.length}.`,
30
- );
31
- }
29
+ const decodedEvents: PublicEvent<T>[] = [];
30
+
31
+ for (const log of logs) {
32
+ const logFields = log.log.getEmittedFields();
33
+ // Event selector is at the last position of the emitted fields
34
+ const logEventSelector = EventSelector.fromField(logFields[logFields.length - 1]);
32
35
 
33
- const logFields = log.log.getEmittedFields();
34
- // We are assuming here that event logs are the last 4 bytes of the event. This is not enshrined but is a function of aztec.nr raw log emission.
35
- if (!EventSelector.fromField(logFields[logFields.length - 1]).equals(eventMetadataDef.eventSelector)) {
36
- return undefined;
37
- }
36
+ if (!logEventSelector.equals(eventMetadataDef.eventSelector)) {
37
+ continue;
38
+ }
38
39
 
39
- return decodeFromAbi([eventMetadataDef.abiType], log.log.fields) as T;
40
- })
41
- .filter(log => log !== undefined) as T[];
40
+ decodedEvents.push({
41
+ event: decodeFromAbi([eventMetadataDef.abiType], log.log.fields) as T,
42
+ metadata: {
43
+ l2BlockNumber: log.id.blockNumber,
44
+ l2BlockHash: log.id.blockHash,
45
+ txHash: log.id.txHash,
46
+ contractAddress: log.log.contractAddress,
47
+ },
48
+ });
49
+ }
42
50
 
43
51
  return decodedEvents;
44
52
  }
package/src/api/fields.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export { Fr, Fq } from '@aztec/foundation/curves/bn254';
2
2
  export { GrumpkinScalar, Point } from '@aztec/foundation/curves/grumpkin';
3
+ export { BlockNumber } from '@aztec/foundation/branded-types';
package/src/api/wallet.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export {
2
2
  type Aliased,
3
3
  type SimulateOptions,
4
+ type ExecuteUtilityOptions,
4
5
  type ProfileOptions,
5
6
  type SendOptions,
6
7
  type BatchableMethods,
@@ -11,11 +12,12 @@ export {
11
12
  type Wallet,
12
13
  type PrivateEvent,
13
14
  type PrivateEventFilter,
15
+ type PublicEvent,
16
+ type PublicEventFilter,
14
17
  type ContractMetadata,
15
18
  type ContractClassMetadata,
16
19
  AppCapabilitiesSchema,
17
20
  WalletCapabilitiesSchema,
18
- FunctionCallSchema,
19
21
  ExecutionPayloadSchema,
20
22
  GasSettingsOptionSchema,
21
23
  WalletSimulationFeeOptionSchema,
@@ -28,6 +30,8 @@ export {
28
30
  EventMetadataDefinitionSchema,
29
31
  PrivateEventSchema,
30
32
  PrivateEventFilterSchema,
33
+ PublicEventSchema,
34
+ PublicEventFilterSchema,
31
35
  ContractClassMetadataSchema,
32
36
  ContractMetadataSchema,
33
37
  WalletSchema,
@@ -9,6 +9,7 @@ import {
9
9
  type SendInteractionOptions,
10
10
  type SendInteractionOptionsWithoutWait,
11
11
  type SendReturn,
12
+ type TxSendResultMined,
12
13
  toSendOptions,
13
14
  } from './interaction_options.js';
14
15
 
@@ -41,8 +42,8 @@ export abstract class BaseContractInteraction {
41
42
  * the AztecAddress of the sender, optional fee configuration, and optional wait settings
42
43
  * @returns TReturn (if wait is undefined/WaitOpts) or TxHash (if wait is NO_WAIT)
43
44
  */
44
- // Overload for when wait is not specified at all - returns TReturn
45
- public send<TReturn = TxReceipt>(options: SendInteractionOptionsWithoutWait): Promise<TReturn>;
45
+ // Overload for when wait is not specified at all - returns { receipt: TReturn, offchainEffects }
46
+ public send<TReturn = TxReceipt>(options: SendInteractionOptionsWithoutWait): Promise<TxSendResultMined<TReturn>>;
46
47
  // Generic overload for explicit wait values
47
48
  // eslint-disable-next-line jsdoc/require-jsdoc
48
49
  public send<TReturn = TxReceipt, W extends InteractionWaitOptions = undefined>(
@@ -1,16 +1,13 @@
1
1
  import { type FunctionCall, FunctionType, decodeFromAbi } from '@aztec/stdlib/abi';
2
- import {
3
- ExecutionPayload,
4
- TxSimulationResult,
5
- UtilitySimulationResult,
6
- mergeExecutionPayloads,
7
- } from '@aztec/stdlib/tx';
2
+ import { ExecutionPayload, TxSimulationResult, UtilityExecutionResult, mergeExecutionPayloads } from '@aztec/stdlib/tx';
8
3
 
9
4
  import type { BatchedMethod, Wallet } from '../wallet/wallet.js';
10
5
  import { BaseContractInteraction } from './base_contract_interaction.js';
11
6
  import {
12
7
  type RequestInteractionOptions,
13
8
  type SimulateInteractionOptions,
9
+ emptyOffchainOutput,
10
+ extractOffchainOutput,
14
11
  toSimulateOptions,
15
12
  } from './interaction_options.js';
16
13
 
@@ -42,9 +39,9 @@ export class BatchCall extends BaseContractInteraction {
42
39
  }
43
40
 
44
41
  /**
45
- * Simulates the batch, supporting private, public and utility functions. Although this is a single
42
+ * Simulates/executes the batch, supporting private, public and utility functions. Although this is a single
46
43
  * interaction with the wallet, private and public functions will be grouped into a single ExecutionPayload
47
- * that the wallet will simulate as a single transaction. Utility function calls will simply be executed
44
+ * that the wallet will simulate as a single transaction. Utility function calls will be executed
48
45
  * one by one.
49
46
  * @param options - An optional object containing additional configuration for the interaction.
50
47
  * @returns The results of all the interactions that make up the batch
@@ -81,8 +78,8 @@ export class BatchCall extends BaseContractInteraction {
81
78
  // Add utility calls to batch
82
79
  for (const [call] of utility) {
83
80
  batchRequests.push({
84
- name: 'simulateUtility' as const,
85
- args: [call, options?.authWitnesses],
81
+ name: 'executeUtility' as const,
82
+ args: [call, { scope: options.from, authWitnesses: options.authWitnesses }],
86
83
  });
87
84
  }
88
85
 
@@ -111,9 +108,12 @@ export class BatchCall extends BaseContractInteraction {
111
108
  for (let i = 0; i < utility.length; i++) {
112
109
  const [call, resultIndex] = utility[i];
113
110
  const wrappedResult = batchResults[i];
114
- if (wrappedResult.name === 'simulateUtility') {
115
- const rawReturnValues = (wrappedResult.result as UtilitySimulationResult).result;
116
- results[resultIndex] = rawReturnValues ? decodeFromAbi(call.returnTypes, rawReturnValues) : [];
111
+ if (wrappedResult.name === 'executeUtility') {
112
+ const rawReturnValues = (wrappedResult.result as UtilityExecutionResult).result;
113
+ results[resultIndex] = {
114
+ result: rawReturnValues ? decodeFromAbi(call.returnTypes, rawReturnValues) : [],
115
+ ...emptyOffchainOutput(),
116
+ };
117
117
  }
118
118
  }
119
119
 
@@ -132,7 +132,10 @@ export class BatchCall extends BaseContractInteraction {
132
132
  ? simulatedTx.getPrivateReturnValues()?.nested?.[resultIndex].values
133
133
  : simulatedTx.getPublicReturnValues()?.[resultIndex].values;
134
134
 
135
- results[callIndex] = rawReturnValues ? decodeFromAbi(call.returnTypes, rawReturnValues) : [];
135
+ results[callIndex] = {
136
+ result: rawReturnValues ? decodeFromAbi(call.returnTypes, rawReturnValues) : [],
137
+ ...extractOffchainOutput(simulatedTx.offchainEffects),
138
+ };
136
139
  });
137
140
  }
138
141
  }