@aztec/aztec.js 0.0.1-commit.c80b6263 → 0.0.1-commit.cd76b27

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 (79) hide show
  1. package/dest/api/contract.d.ts +2 -2
  2. package/dest/api/contract.js +2 -2
  3. package/dest/api/deployment.d.ts +1 -2
  4. package/dest/api/deployment.d.ts.map +1 -1
  5. package/dest/api/deployment.js +0 -1
  6. package/dest/api/events.d.ts +10 -6
  7. package/dest/api/events.d.ts.map +1 -1
  8. package/dest/api/events.js +30 -20
  9. package/dest/api/fields.d.ts +2 -1
  10. package/dest/api/fields.d.ts.map +1 -1
  11. package/dest/api/fields.js +1 -0
  12. package/dest/api/keys.d.ts +1 -1
  13. package/dest/api/keys.js +1 -1
  14. package/dest/api/wallet.d.ts +3 -2
  15. package/dest/api/wallet.d.ts.map +1 -1
  16. package/dest/api/wallet.js +2 -1
  17. package/dest/contract/batch_call.d.ts +3 -3
  18. package/dest/contract/batch_call.d.ts.map +1 -1
  19. package/dest/contract/batch_call.js +8 -5
  20. package/dest/contract/contract_function_interaction.d.ts +3 -12
  21. package/dest/contract/contract_function_interaction.d.ts.map +1 -1
  22. package/dest/contract/contract_function_interaction.js +10 -7
  23. package/dest/contract/protocol_contracts/auth-registry.d.ts +1 -1
  24. package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
  25. package/dest/contract/protocol_contracts/auth-registry.js +32 -6
  26. package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -22
  27. package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
  28. package/dest/contract/protocol_contracts/contract-class-registry.js +13 -658
  29. package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +2 -11
  30. package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -1
  31. package/dest/contract/protocol_contracts/contract-instance-registry.js +76 -473
  32. package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -10
  33. package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
  34. package/dest/contract/protocol_contracts/fee-juice.js +0 -401
  35. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +1 -1
  36. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
  37. package/dest/contract/protocol_contracts/multi-call-entrypoint.js +23 -1
  38. package/dest/contract/protocol_contracts/public-checks.d.ts +1 -1
  39. package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
  40. package/dest/contract/protocol_contracts/public-checks.js +23 -9
  41. package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
  42. package/dest/fee/private_fee_payment_method.js +10 -10
  43. package/dest/fee/public_fee_payment_method.js +10 -10
  44. package/dest/fee/sponsored_fee_payment.js +3 -3
  45. package/dest/wallet/capabilities.d.ts +444 -0
  46. package/dest/wallet/capabilities.d.ts.map +1 -0
  47. package/dest/wallet/capabilities.js +3 -0
  48. package/dest/wallet/index.d.ts +2 -1
  49. package/dest/wallet/index.d.ts.map +1 -1
  50. package/dest/wallet/index.js +1 -0
  51. package/dest/wallet/wallet.d.ts +1452 -89
  52. package/dest/wallet/wallet.d.ts.map +1 -1
  53. package/dest/wallet/wallet.js +146 -23
  54. package/package.json +19 -10
  55. package/src/api/contract.ts +2 -2
  56. package/src/api/deployment.ts +0 -1
  57. package/src/api/events.ts +35 -27
  58. package/src/api/fields.ts +1 -0
  59. package/src/api/keys.ts +2 -2
  60. package/src/api/wallet.ts +43 -1
  61. package/src/contract/batch_call.ts +7 -12
  62. package/src/contract/contract_function_interaction.ts +17 -7
  63. package/src/contract/protocol_contracts/auth-registry.ts +6 -2
  64. package/src/contract/protocol_contracts/contract-class-registry.ts +4 -338
  65. package/src/contract/protocol_contracts/contract-instance-registry.ts +33 -225
  66. package/src/contract/protocol_contracts/fee-juice.ts +0 -193
  67. package/src/contract/protocol_contracts/multi-call-entrypoint.ts +4 -1
  68. package/src/contract/protocol_contracts/public-checks.ts +4 -3
  69. package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
  70. package/src/fee/private_fee_payment_method.ts +7 -7
  71. package/src/fee/public_fee_payment_method.ts +8 -8
  72. package/src/fee/sponsored_fee_payment.ts +3 -3
  73. package/src/wallet/capabilities.ts +491 -0
  74. package/src/wallet/index.ts +1 -0
  75. package/src/wallet/wallet.ts +201 -38
  76. package/dest/deployment/broadcast_function.d.ts +0 -24
  77. package/dest/deployment/broadcast_function.d.ts.map +0 -1
  78. package/dest/deployment/broadcast_function.js +0 -74
  79. package/src/deployment/broadcast_function.ts +0 -148
@@ -1,17 +1,18 @@
1
1
  import type { ChainInfo } from '@aztec/entrypoints/interfaces';
2
2
  import { BlockNumber } from '@aztec/foundation/branded-types';
3
3
  import type { Fr } from '@aztec/foundation/curves/bn254';
4
- import { type ContractArtifact, type EventMetadataDefinition, type FunctionCall, FunctionType } from '@aztec/stdlib/abi';
4
+ import { type AbiDecoded, type ContractArtifact, type EventMetadataDefinition, FunctionCall } from '@aztec/stdlib/abi';
5
5
  import { AuthWitness } from '@aztec/stdlib/auth-witness';
6
6
  import type { AztecAddress } from '@aztec/stdlib/aztec-address';
7
7
  import { type ContractInstanceWithAddress } from '@aztec/stdlib/contract';
8
8
  import { Gas } from '@aztec/stdlib/gas';
9
9
  import { type ApiSchemaFor } from '@aztec/stdlib/schemas';
10
10
  import type { ExecutionPayload, InTx } from '@aztec/stdlib/tx';
11
- import { Capsule, HashedValues, TxHash, TxProfileResult, TxSimulationResult, UtilitySimulationResult } from '@aztec/stdlib/tx';
11
+ import { Capsule, HashedValues, TxHash, TxProfileResult, TxSimulationResult, UtilityExecutionResult } from '@aztec/stdlib/tx';
12
12
  import { z } from 'zod';
13
13
  import { type FeeEstimationOptions, type GasSettingsOption, type InteractionWaitOptions, type ProfileInteractionOptions, type SendInteractionOptionsWithoutWait, type SendReturn, type SimulateInteractionOptions } from '../contract/interaction_options.js';
14
14
  import type { CallIntent, IntentInnerHash } from '../utils/authwit.js';
15
+ import type { AppCapabilities, WalletCapabilities } from './capabilities.js';
15
16
  /**
16
17
  * A wrapper type that allows any item to be associated with an alias.
17
18
  */
@@ -96,35 +97,57 @@ export type BatchResults<T extends readonly BatchedMethod[]> = {
96
97
  [K in keyof T]: BatchedMethodResultWrapper<T[K]>;
97
98
  };
98
99
  /**
99
- * Filter options when querying private events.
100
+ * Base filter options for event queries.
100
101
  */
101
- export type PrivateEventFilter = {
102
- /** The address of the contract that emitted the events. */
103
- contractAddress: AztecAddress;
104
- /** Addresses of accounts that are in scope for this filter. */
105
- scopes: AztecAddress[];
102
+ export type EventFilterBase = {
106
103
  /** Transaction in which the events were emitted. */
107
104
  txHash?: TxHash;
108
105
  /** The block number from which to start fetching events (inclusive).
109
106
  * Optional. If provided, it must be greater or equal than 1.
110
107
  * Defaults to the initial L2 block number (INITIAL_L2_BLOCK_NUM).
111
- * */
108
+ */
112
109
  fromBlock?: BlockNumber;
113
110
  /** The block number until which to fetch logs (not inclusive).
114
111
  * Optional. If provided, it must be greater than fromBlock.
115
- * Defaults to the latest known block to PXE + 1.
116
112
  */
117
113
  toBlock?: BlockNumber;
118
114
  };
119
115
  /**
120
- * An ABI decoded private event with associated metadata.
116
+ * Filter options when querying private events.
117
+ */
118
+ export type PrivateEventFilter = EventFilterBase & {
119
+ /** The address of the contract that emitted the events. */
120
+ contractAddress: AztecAddress;
121
+ /** Addresses of accounts that are in scope for this filter. */
122
+ scopes: AztecAddress[];
123
+ };
124
+ /**
125
+ * Filter options when querying public events.
121
126
  */
122
- export type PrivateEvent<T> = {
127
+ export type PublicEventFilter = EventFilterBase & {
128
+ /** The address of the contract that emitted the events. */
129
+ contractAddress?: AztecAddress;
130
+ };
131
+ /**
132
+ * An ABI decoded event with associated metadata.
133
+ * @typeParam T - The decoded event type
134
+ * @typeParam M - Additional metadata fields (empty by default)
135
+ */
136
+ export type Event<T, M extends object = object> = {
123
137
  /** The ABI decoded event */
124
138
  event: T;
125
139
  /** Metadata describing event context information such as tx and block */
126
- metadata: InTx;
140
+ metadata: InTx & M;
127
141
  };
142
+ /** An ABI decoded private event with associated metadata. */
143
+ export type PrivateEvent<T> = Event<T>;
144
+ /** An ABI decoded public event with associated metadata (includes contract address). */
145
+ export type PublicEvent<T> = Event<T, {
146
+ /**
147
+ * Address of the contract that emitted this event
148
+ */
149
+ contractAddress: AztecAddress;
150
+ }>;
128
151
  /**
129
152
  * Contract metadata including deployment and registration status.
130
153
  */
@@ -149,6 +172,15 @@ export type ContractClassMetadata = {
149
172
  /** Whether the contract class is publicly registered on-chain */
150
173
  isContractClassPubliclyRegistered: boolean;
151
174
  };
175
+ /**
176
+ * Options for executing a utility function call.
177
+ */
178
+ export type ExecuteUtilityOptions = {
179
+ /** The scope for the utility execution (determines which notes and keys are visible). */
180
+ scope: AztecAddress;
181
+ /** Optional auth witnesses to use during execution. */
182
+ authWitnesses?: AuthWitness[];
183
+ };
152
184
  /**
153
185
  * The wallet interface.
154
186
  */
@@ -162,46 +194,19 @@ export type Wallet = {
162
194
  getAccounts(): Promise<Aliased<AztecAddress>[]>;
163
195
  registerContract(instance: ContractInstanceWithAddress, artifact?: ContractArtifact, secretKey?: Fr): Promise<ContractInstanceWithAddress>;
164
196
  simulateTx(exec: ExecutionPayload, opts: SimulateOptions): Promise<TxSimulationResult>;
165
- simulateUtility(call: FunctionCall, authwits?: AuthWitness[]): Promise<UtilitySimulationResult>;
197
+ executeUtility(call: FunctionCall, opts: ExecuteUtilityOptions): Promise<UtilityExecutionResult>;
166
198
  profileTx(exec: ExecutionPayload, opts: ProfileOptions): Promise<TxProfileResult>;
167
199
  sendTx<W extends InteractionWaitOptions = undefined>(exec: ExecutionPayload, opts: SendOptions<W>): Promise<SendReturn<W>>;
168
200
  createAuthWit(from: AztecAddress, messageHashOrIntent: IntentInnerHash | CallIntent): Promise<AuthWitness>;
201
+ requestCapabilities(manifest: AppCapabilities): Promise<WalletCapabilities>;
169
202
  batch<const T extends readonly BatchedMethod[]>(methods: T): Promise<BatchResults<T>>;
170
203
  };
171
- export declare const FunctionCallSchema: z.ZodObject<{
172
- name: z.ZodString;
173
- to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
174
- selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
175
- type: z.ZodNativeEnum<typeof FunctionType>;
176
- isStatic: z.ZodBoolean;
177
- hideMsgSender: z.ZodBoolean;
178
- args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
179
- returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
180
- }, "strip", z.ZodTypeAny, {
181
- name: string;
182
- to: AztecAddress;
183
- selector: import("@aztec/stdlib/abi").FunctionSelector;
184
- type: FunctionType;
185
- isStatic: boolean;
186
- hideMsgSender: boolean;
187
- args: Fr[];
188
- returnTypes: import("@aztec/stdlib/abi").AbiType[];
189
- }, {
190
- name: string;
191
- to?: any;
192
- selector?: any;
193
- type: FunctionType;
194
- isStatic: boolean;
195
- hideMsgSender: boolean;
196
- args: any[];
197
- returnTypes: import("@aztec/stdlib/abi").AbiType[];
198
- }>;
199
204
  export declare const ExecutionPayloadSchema: z.ZodObject<{
200
- calls: z.ZodArray<z.ZodObject<{
205
+ calls: z.ZodArray<z.ZodEffects<z.ZodObject<{
201
206
  name: z.ZodString;
202
207
  to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
203
208
  selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
204
- type: z.ZodNativeEnum<typeof FunctionType>;
209
+ type: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
205
210
  isStatic: z.ZodBoolean;
206
211
  hideMsgSender: z.ZodBoolean;
207
212
  args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
@@ -210,7 +215,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
210
215
  name: string;
211
216
  to: AztecAddress;
212
217
  selector: import("@aztec/stdlib/abi").FunctionSelector;
213
- type: FunctionType;
218
+ type: import("@aztec/stdlib/abi").FunctionType;
214
219
  isStatic: boolean;
215
220
  hideMsgSender: boolean;
216
221
  args: Fr[];
@@ -219,7 +224,16 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
219
224
  name: string;
220
225
  to?: any;
221
226
  selector?: any;
222
- type: FunctionType;
227
+ type: import("@aztec/stdlib/abi").FunctionType;
228
+ isStatic: boolean;
229
+ hideMsgSender: boolean;
230
+ args: any[];
231
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
232
+ }>, FunctionCall, {
233
+ name: string;
234
+ to?: any;
235
+ selector?: any;
236
+ type: import("@aztec/stdlib/abi").FunctionType;
223
237
  isStatic: boolean;
224
238
  hideMsgSender: boolean;
225
239
  args: any[];
@@ -230,16 +244,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
230
244
  extraHashedArgs: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<HashedValues>, "many">;
231
245
  feePayer: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
232
246
  }, "strip", z.ZodTypeAny, {
233
- calls: {
234
- name: string;
235
- to: AztecAddress;
236
- selector: import("@aztec/stdlib/abi").FunctionSelector;
237
- type: FunctionType;
238
- isStatic: boolean;
239
- hideMsgSender: boolean;
240
- args: Fr[];
241
- returnTypes: import("@aztec/stdlib/abi").AbiType[];
242
- }[];
247
+ calls: FunctionCall[];
243
248
  authWitnesses: AuthWitness[];
244
249
  capsules: Capsule[];
245
250
  extraHashedArgs: HashedValues[];
@@ -249,7 +254,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
249
254
  name: string;
250
255
  to?: any;
251
256
  selector?: any;
252
- type: FunctionType;
257
+ type: import("@aztec/stdlib/abi").FunctionType;
253
258
  isStatic: boolean;
254
259
  hideMsgSender: boolean;
255
260
  args: any[];
@@ -1060,11 +1065,11 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
1060
1065
  innerHash?: any;
1061
1066
  }>, z.ZodObject<{
1062
1067
  caller: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1063
- call: z.ZodObject<{
1068
+ call: z.ZodEffects<z.ZodObject<{
1064
1069
  name: z.ZodString;
1065
1070
  to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1066
1071
  selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
1067
- type: z.ZodNativeEnum<typeof FunctionType>;
1072
+ type: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
1068
1073
  isStatic: z.ZodBoolean;
1069
1074
  hideMsgSender: z.ZodBoolean;
1070
1075
  args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
@@ -1073,7 +1078,7 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
1073
1078
  name: string;
1074
1079
  to: AztecAddress;
1075
1080
  selector: import("@aztec/stdlib/abi").FunctionSelector;
1076
- type: FunctionType;
1081
+ type: import("@aztec/stdlib/abi").FunctionType;
1077
1082
  isStatic: boolean;
1078
1083
  hideMsgSender: boolean;
1079
1084
  args: Fr[];
@@ -1082,31 +1087,31 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
1082
1087
  name: string;
1083
1088
  to?: any;
1084
1089
  selector?: any;
1085
- type: FunctionType;
1090
+ type: import("@aztec/stdlib/abi").FunctionType;
1086
1091
  isStatic: boolean;
1087
1092
  hideMsgSender: boolean;
1088
1093
  args: any[];
1089
1094
  returnTypes: import("@aztec/stdlib/abi").AbiType[];
1090
- }>;
1091
- }, "strip", z.ZodTypeAny, {
1092
- caller: AztecAddress;
1093
- call: {
1095
+ }>, FunctionCall, {
1094
1096
  name: string;
1095
- to: AztecAddress;
1096
- selector: import("@aztec/stdlib/abi").FunctionSelector;
1097
- type: FunctionType;
1097
+ to?: any;
1098
+ selector?: any;
1099
+ type: import("@aztec/stdlib/abi").FunctionType;
1098
1100
  isStatic: boolean;
1099
1101
  hideMsgSender: boolean;
1100
- args: Fr[];
1102
+ args: any[];
1101
1103
  returnTypes: import("@aztec/stdlib/abi").AbiType[];
1102
- };
1104
+ }>;
1105
+ }, "strip", z.ZodTypeAny, {
1106
+ caller: AztecAddress;
1107
+ call: FunctionCall;
1103
1108
  }, {
1104
1109
  caller?: any;
1105
1110
  call: {
1106
1111
  name: string;
1107
1112
  to?: any;
1108
1113
  selector?: any;
1109
- type: FunctionType;
1114
+ type: import("@aztec/stdlib/abi").FunctionType;
1110
1115
  isStatic: boolean;
1111
1116
  hideMsgSender: boolean;
1112
1117
  args: any[];
@@ -1126,25 +1131,92 @@ export declare const EventMetadataDefinitionSchema: z.ZodObject<{
1126
1131
  abiType: import("@aztec/stdlib/abi").AbiType;
1127
1132
  fieldNames: string[];
1128
1133
  }>;
1129
- export declare const PrivateEventSchema: z.ZodType<any>;
1130
1134
  export declare const PrivateEventFilterSchema: z.ZodObject<{
1131
- contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1132
- scopes: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">;
1133
1135
  txHash: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, Buffer<ArrayBuffer>, string>, TxHash, string>>;
1134
1136
  fromBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
1135
1137
  toBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
1138
+ } & {
1139
+ contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1140
+ scopes: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">;
1136
1141
  }, "strip", z.ZodTypeAny, {
1137
- contractAddress: AztecAddress;
1138
- scopes: AztecAddress[];
1139
1142
  txHash?: TxHash | undefined;
1140
1143
  fromBlock?: BlockNumber | undefined;
1141
1144
  toBlock?: BlockNumber | undefined;
1145
+ contractAddress: AztecAddress;
1146
+ scopes: AztecAddress[];
1142
1147
  }, {
1148
+ txHash?: string | undefined;
1149
+ fromBlock?: string | number | bigint | undefined;
1150
+ toBlock?: string | number | bigint | undefined;
1143
1151
  contractAddress?: any;
1144
1152
  scopes: any[];
1153
+ }>;
1154
+ export declare const PublicEventFilterSchema: z.ZodObject<{
1155
+ txHash: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, Buffer<ArrayBuffer>, string>, TxHash, string>>;
1156
+ fromBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
1157
+ toBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
1158
+ } & {
1159
+ contractAddress: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
1160
+ }, "strip", z.ZodTypeAny, {
1161
+ txHash?: TxHash | undefined;
1162
+ fromBlock?: BlockNumber | undefined;
1163
+ toBlock?: BlockNumber | undefined;
1164
+ contractAddress?: AztecAddress | undefined;
1165
+ }, {
1145
1166
  txHash?: string | undefined;
1146
1167
  fromBlock?: string | number | bigint | undefined;
1147
1168
  toBlock?: string | number | bigint | undefined;
1169
+ contractAddress?: any;
1170
+ }>;
1171
+ export declare const PrivateEventSchema: z.ZodType<any>;
1172
+ export declare const PublicEventSchema: z.ZodObject<{
1173
+ event: import("@aztec/stdlib/schemas").ZodFor<AbiDecoded>;
1174
+ metadata: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1175
+ l2BlockNumber: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>;
1176
+ l2BlockHash: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/block").BlockHash>;
1177
+ }, "strip", z.ZodTypeAny, {
1178
+ l2BlockNumber: number & {
1179
+ _branding: "BlockNumber";
1180
+ };
1181
+ l2BlockHash: import("@aztec/stdlib/block").BlockHash;
1182
+ }, {
1183
+ l2BlockNumber: string | number | bigint;
1184
+ l2BlockHash?: any;
1185
+ }>, z.ZodObject<{
1186
+ txHash: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, Buffer<ArrayBuffer>, string>, TxHash, string>;
1187
+ }, "strip", z.ZodTypeAny, {
1188
+ txHash: TxHash;
1189
+ }, {
1190
+ txHash: string;
1191
+ }>>, z.ZodObject<{
1192
+ contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1193
+ }, "strip", z.ZodTypeAny, {
1194
+ contractAddress: AztecAddress;
1195
+ }, {
1196
+ contractAddress?: any;
1197
+ }>>;
1198
+ }, "strip", z.ZodTypeAny, {
1199
+ event: AbiDecoded;
1200
+ metadata: {
1201
+ l2BlockNumber: number & {
1202
+ _branding: "BlockNumber";
1203
+ };
1204
+ l2BlockHash: import("@aztec/stdlib/block").BlockHash;
1205
+ } & {
1206
+ txHash: TxHash;
1207
+ } & {
1208
+ contractAddress: AztecAddress;
1209
+ };
1210
+ }, {
1211
+ event?: any;
1212
+ metadata: {
1213
+ l2BlockNumber: string | number | bigint;
1214
+ l2BlockHash?: any;
1215
+ } & {
1216
+ txHash: string;
1217
+ } & {
1218
+ contractAddress?: any;
1219
+ };
1148
1220
  }>;
1149
1221
  export declare const ContractMetadataSchema: z.ZodObject<{
1150
1222
  instance: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodIntersection<z.ZodObject<{
@@ -1255,43 +1327,1334 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
1255
1327
  isArtifactRegistered: boolean;
1256
1328
  isContractClassPubliclyRegistered: boolean;
1257
1329
  }>;
1330
+ export declare const ContractFunctionPatternSchema: z.ZodObject<{
1331
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1332
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1333
+ }, "strip", z.ZodTypeAny, {
1334
+ contract: "*" | AztecAddress;
1335
+ function: string;
1336
+ }, {
1337
+ contract?: any;
1338
+ function: string;
1339
+ }>;
1340
+ export declare const AccountsCapabilitySchema: z.ZodObject<{
1341
+ type: z.ZodLiteral<"accounts">;
1342
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1343
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1344
+ }, "strip", z.ZodTypeAny, {
1345
+ type: "accounts";
1346
+ canGet?: boolean | undefined;
1347
+ canCreateAuthWit?: boolean | undefined;
1348
+ }, {
1349
+ type: "accounts";
1350
+ canGet?: boolean | undefined;
1351
+ canCreateAuthWit?: boolean | undefined;
1352
+ }>;
1353
+ export declare const GrantedAccountsCapabilitySchema: z.ZodObject<{
1354
+ type: z.ZodLiteral<"accounts">;
1355
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1356
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1357
+ } & {
1358
+ accounts: z.ZodArray<z.ZodObject<{
1359
+ alias: z.ZodString;
1360
+ item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1361
+ }, "strip", z.ZodTypeAny, {
1362
+ alias: string;
1363
+ item: AztecAddress;
1364
+ }, {
1365
+ alias: string;
1366
+ item?: any;
1367
+ }>, "many">;
1368
+ }, "strip", z.ZodTypeAny, {
1369
+ type: "accounts";
1370
+ canGet?: boolean | undefined;
1371
+ canCreateAuthWit?: boolean | undefined;
1372
+ accounts: {
1373
+ alias: string;
1374
+ item: AztecAddress;
1375
+ }[];
1376
+ }, {
1377
+ type: "accounts";
1378
+ canGet?: boolean | undefined;
1379
+ canCreateAuthWit?: boolean | undefined;
1380
+ accounts: {
1381
+ alias: string;
1382
+ item?: any;
1383
+ }[];
1384
+ }>;
1385
+ export declare const ContractsCapabilitySchema: z.ZodObject<{
1386
+ type: z.ZodLiteral<"contracts">;
1387
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1388
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1389
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1390
+ }, "strip", z.ZodTypeAny, {
1391
+ type: "contracts";
1392
+ contracts: "*" | AztecAddress[];
1393
+ canRegister?: boolean | undefined;
1394
+ canGetMetadata?: boolean | undefined;
1395
+ }, {
1396
+ type: "contracts";
1397
+ contracts: "*" | any[];
1398
+ canRegister?: boolean | undefined;
1399
+ canGetMetadata?: boolean | undefined;
1400
+ }>;
1401
+ export declare const GrantedContractsCapabilitySchema: z.ZodObject<{
1402
+ type: z.ZodLiteral<"contracts">;
1403
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1404
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1405
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1406
+ }, "strip", z.ZodTypeAny, {
1407
+ type: "contracts";
1408
+ contracts: "*" | AztecAddress[];
1409
+ canRegister?: boolean | undefined;
1410
+ canGetMetadata?: boolean | undefined;
1411
+ }, {
1412
+ type: "contracts";
1413
+ contracts: "*" | any[];
1414
+ canRegister?: boolean | undefined;
1415
+ canGetMetadata?: boolean | undefined;
1416
+ }>;
1417
+ export declare const ContractClassesCapabilitySchema: z.ZodObject<{
1418
+ type: z.ZodLiteral<"contractClasses">;
1419
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
1420
+ canGetMetadata: z.ZodBoolean;
1421
+ }, "strip", z.ZodTypeAny, {
1422
+ type: "contractClasses";
1423
+ classes: "*" | Fr[];
1424
+ canGetMetadata: boolean;
1425
+ }, {
1426
+ type: "contractClasses";
1427
+ classes: "*" | any[];
1428
+ canGetMetadata: boolean;
1429
+ }>;
1430
+ export declare const GrantedContractClassesCapabilitySchema: z.ZodObject<{
1431
+ type: z.ZodLiteral<"contractClasses">;
1432
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
1433
+ canGetMetadata: z.ZodBoolean;
1434
+ }, "strip", z.ZodTypeAny, {
1435
+ type: "contractClasses";
1436
+ classes: "*" | Fr[];
1437
+ canGetMetadata: boolean;
1438
+ }, {
1439
+ type: "contractClasses";
1440
+ classes: "*" | any[];
1441
+ canGetMetadata: boolean;
1442
+ }>;
1443
+ export declare const SimulationCapabilitySchema: z.ZodObject<{
1444
+ type: z.ZodLiteral<"simulation">;
1445
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1446
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1447
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1448
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1449
+ }, "strip", z.ZodTypeAny, {
1450
+ contract: "*" | AztecAddress;
1451
+ function: string;
1452
+ }, {
1453
+ contract?: any;
1454
+ function: string;
1455
+ }>, "many">]>;
1456
+ }, "strip", z.ZodTypeAny, {
1457
+ scope: "*" | {
1458
+ contract: "*" | AztecAddress;
1459
+ function: string;
1460
+ }[];
1461
+ }, {
1462
+ scope: "*" | {
1463
+ contract?: any;
1464
+ function: string;
1465
+ }[];
1466
+ }>>;
1467
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1468
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1469
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1470
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1471
+ }, "strip", z.ZodTypeAny, {
1472
+ contract: "*" | AztecAddress;
1473
+ function: string;
1474
+ }, {
1475
+ contract?: any;
1476
+ function: string;
1477
+ }>, "many">]>;
1478
+ }, "strip", z.ZodTypeAny, {
1479
+ scope: "*" | {
1480
+ contract: "*" | AztecAddress;
1481
+ function: string;
1482
+ }[];
1483
+ }, {
1484
+ scope: "*" | {
1485
+ contract?: any;
1486
+ function: string;
1487
+ }[];
1488
+ }>>;
1489
+ }, "strip", z.ZodTypeAny, {
1490
+ type: "simulation";
1491
+ transactions?: {
1492
+ scope: "*" | {
1493
+ contract: "*" | AztecAddress;
1494
+ function: string;
1495
+ }[];
1496
+ } | undefined;
1497
+ utilities?: {
1498
+ scope: "*" | {
1499
+ contract: "*" | AztecAddress;
1500
+ function: string;
1501
+ }[];
1502
+ } | undefined;
1503
+ }, {
1504
+ type: "simulation";
1505
+ transactions?: {
1506
+ scope: "*" | {
1507
+ contract?: any;
1508
+ function: string;
1509
+ }[];
1510
+ } | undefined;
1511
+ utilities?: {
1512
+ scope: "*" | {
1513
+ contract?: any;
1514
+ function: string;
1515
+ }[];
1516
+ } | undefined;
1517
+ }>;
1518
+ export declare const GrantedSimulationCapabilitySchema: z.ZodObject<{
1519
+ type: z.ZodLiteral<"simulation">;
1520
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1521
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1522
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1523
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1524
+ }, "strip", z.ZodTypeAny, {
1525
+ contract: "*" | AztecAddress;
1526
+ function: string;
1527
+ }, {
1528
+ contract?: any;
1529
+ function: string;
1530
+ }>, "many">]>;
1531
+ }, "strip", z.ZodTypeAny, {
1532
+ scope: "*" | {
1533
+ contract: "*" | AztecAddress;
1534
+ function: string;
1535
+ }[];
1536
+ }, {
1537
+ scope: "*" | {
1538
+ contract?: any;
1539
+ function: string;
1540
+ }[];
1541
+ }>>;
1542
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1543
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1544
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1545
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1546
+ }, "strip", z.ZodTypeAny, {
1547
+ contract: "*" | AztecAddress;
1548
+ function: string;
1549
+ }, {
1550
+ contract?: any;
1551
+ function: string;
1552
+ }>, "many">]>;
1553
+ }, "strip", z.ZodTypeAny, {
1554
+ scope: "*" | {
1555
+ contract: "*" | AztecAddress;
1556
+ function: string;
1557
+ }[];
1558
+ }, {
1559
+ scope: "*" | {
1560
+ contract?: any;
1561
+ function: string;
1562
+ }[];
1563
+ }>>;
1564
+ }, "strip", z.ZodTypeAny, {
1565
+ type: "simulation";
1566
+ transactions?: {
1567
+ scope: "*" | {
1568
+ contract: "*" | AztecAddress;
1569
+ function: string;
1570
+ }[];
1571
+ } | undefined;
1572
+ utilities?: {
1573
+ scope: "*" | {
1574
+ contract: "*" | AztecAddress;
1575
+ function: string;
1576
+ }[];
1577
+ } | undefined;
1578
+ }, {
1579
+ type: "simulation";
1580
+ transactions?: {
1581
+ scope: "*" | {
1582
+ contract?: any;
1583
+ function: string;
1584
+ }[];
1585
+ } | undefined;
1586
+ utilities?: {
1587
+ scope: "*" | {
1588
+ contract?: any;
1589
+ function: string;
1590
+ }[];
1591
+ } | undefined;
1592
+ }>;
1593
+ export declare const TransactionCapabilitySchema: z.ZodObject<{
1594
+ type: z.ZodLiteral<"transaction">;
1595
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1596
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1597
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1598
+ }, "strip", z.ZodTypeAny, {
1599
+ contract: "*" | AztecAddress;
1600
+ function: string;
1601
+ }, {
1602
+ contract?: any;
1603
+ function: string;
1604
+ }>, "many">]>;
1605
+ }, "strip", z.ZodTypeAny, {
1606
+ type: "transaction";
1607
+ scope: "*" | {
1608
+ contract: "*" | AztecAddress;
1609
+ function: string;
1610
+ }[];
1611
+ }, {
1612
+ type: "transaction";
1613
+ scope: "*" | {
1614
+ contract?: any;
1615
+ function: string;
1616
+ }[];
1617
+ }>;
1618
+ export declare const GrantedTransactionCapabilitySchema: z.ZodObject<{
1619
+ type: z.ZodLiteral<"transaction">;
1620
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1621
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1622
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1623
+ }, "strip", z.ZodTypeAny, {
1624
+ contract: "*" | AztecAddress;
1625
+ function: string;
1626
+ }, {
1627
+ contract?: any;
1628
+ function: string;
1629
+ }>, "many">]>;
1630
+ }, "strip", z.ZodTypeAny, {
1631
+ type: "transaction";
1632
+ scope: "*" | {
1633
+ contract: "*" | AztecAddress;
1634
+ function: string;
1635
+ }[];
1636
+ }, {
1637
+ type: "transaction";
1638
+ scope: "*" | {
1639
+ contract?: any;
1640
+ function: string;
1641
+ }[];
1642
+ }>;
1643
+ export declare const DataCapabilitySchema: z.ZodObject<{
1644
+ type: z.ZodLiteral<"data">;
1645
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1646
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1647
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1648
+ }, "strip", z.ZodTypeAny, {
1649
+ contracts: "*" | AztecAddress[];
1650
+ }, {
1651
+ contracts: "*" | any[];
1652
+ }>>;
1653
+ }, "strip", z.ZodTypeAny, {
1654
+ type: "data";
1655
+ addressBook?: boolean | undefined;
1656
+ privateEvents?: {
1657
+ contracts: "*" | AztecAddress[];
1658
+ } | undefined;
1659
+ }, {
1660
+ type: "data";
1661
+ addressBook?: boolean | undefined;
1662
+ privateEvents?: {
1663
+ contracts: "*" | any[];
1664
+ } | undefined;
1665
+ }>;
1666
+ export declare const GrantedDataCapabilitySchema: z.ZodObject<{
1667
+ type: z.ZodLiteral<"data">;
1668
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1669
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1670
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1671
+ }, "strip", z.ZodTypeAny, {
1672
+ contracts: "*" | AztecAddress[];
1673
+ }, {
1674
+ contracts: "*" | any[];
1675
+ }>>;
1676
+ }, "strip", z.ZodTypeAny, {
1677
+ type: "data";
1678
+ addressBook?: boolean | undefined;
1679
+ privateEvents?: {
1680
+ contracts: "*" | AztecAddress[];
1681
+ } | undefined;
1682
+ }, {
1683
+ type: "data";
1684
+ addressBook?: boolean | undefined;
1685
+ privateEvents?: {
1686
+ contracts: "*" | any[];
1687
+ } | undefined;
1688
+ }>;
1689
+ export declare const CapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1690
+ type: z.ZodLiteral<"accounts">;
1691
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1692
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1693
+ }, "strip", z.ZodTypeAny, {
1694
+ type: "accounts";
1695
+ canGet?: boolean | undefined;
1696
+ canCreateAuthWit?: boolean | undefined;
1697
+ }, {
1698
+ type: "accounts";
1699
+ canGet?: boolean | undefined;
1700
+ canCreateAuthWit?: boolean | undefined;
1701
+ }>, z.ZodObject<{
1702
+ type: z.ZodLiteral<"contracts">;
1703
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1704
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1705
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1706
+ }, "strip", z.ZodTypeAny, {
1707
+ type: "contracts";
1708
+ contracts: "*" | AztecAddress[];
1709
+ canRegister?: boolean | undefined;
1710
+ canGetMetadata?: boolean | undefined;
1711
+ }, {
1712
+ type: "contracts";
1713
+ contracts: "*" | any[];
1714
+ canRegister?: boolean | undefined;
1715
+ canGetMetadata?: boolean | undefined;
1716
+ }>, z.ZodObject<{
1717
+ type: z.ZodLiteral<"contractClasses">;
1718
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
1719
+ canGetMetadata: z.ZodBoolean;
1720
+ }, "strip", z.ZodTypeAny, {
1721
+ type: "contractClasses";
1722
+ classes: "*" | Fr[];
1723
+ canGetMetadata: boolean;
1724
+ }, {
1725
+ type: "contractClasses";
1726
+ classes: "*" | any[];
1727
+ canGetMetadata: boolean;
1728
+ }>, z.ZodObject<{
1729
+ type: z.ZodLiteral<"simulation">;
1730
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1731
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1732
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1733
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1734
+ }, "strip", z.ZodTypeAny, {
1735
+ contract: "*" | AztecAddress;
1736
+ function: string;
1737
+ }, {
1738
+ contract?: any;
1739
+ function: string;
1740
+ }>, "many">]>;
1741
+ }, "strip", z.ZodTypeAny, {
1742
+ scope: "*" | {
1743
+ contract: "*" | AztecAddress;
1744
+ function: string;
1745
+ }[];
1746
+ }, {
1747
+ scope: "*" | {
1748
+ contract?: any;
1749
+ function: string;
1750
+ }[];
1751
+ }>>;
1752
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1753
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1754
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1755
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1756
+ }, "strip", z.ZodTypeAny, {
1757
+ contract: "*" | AztecAddress;
1758
+ function: string;
1759
+ }, {
1760
+ contract?: any;
1761
+ function: string;
1762
+ }>, "many">]>;
1763
+ }, "strip", z.ZodTypeAny, {
1764
+ scope: "*" | {
1765
+ contract: "*" | AztecAddress;
1766
+ function: string;
1767
+ }[];
1768
+ }, {
1769
+ scope: "*" | {
1770
+ contract?: any;
1771
+ function: string;
1772
+ }[];
1773
+ }>>;
1774
+ }, "strip", z.ZodTypeAny, {
1775
+ type: "simulation";
1776
+ transactions?: {
1777
+ scope: "*" | {
1778
+ contract: "*" | AztecAddress;
1779
+ function: string;
1780
+ }[];
1781
+ } | undefined;
1782
+ utilities?: {
1783
+ scope: "*" | {
1784
+ contract: "*" | AztecAddress;
1785
+ function: string;
1786
+ }[];
1787
+ } | undefined;
1788
+ }, {
1789
+ type: "simulation";
1790
+ transactions?: {
1791
+ scope: "*" | {
1792
+ contract?: any;
1793
+ function: string;
1794
+ }[];
1795
+ } | undefined;
1796
+ utilities?: {
1797
+ scope: "*" | {
1798
+ contract?: any;
1799
+ function: string;
1800
+ }[];
1801
+ } | undefined;
1802
+ }>, z.ZodObject<{
1803
+ type: z.ZodLiteral<"transaction">;
1804
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1805
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1806
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1807
+ }, "strip", z.ZodTypeAny, {
1808
+ contract: "*" | AztecAddress;
1809
+ function: string;
1810
+ }, {
1811
+ contract?: any;
1812
+ function: string;
1813
+ }>, "many">]>;
1814
+ }, "strip", z.ZodTypeAny, {
1815
+ type: "transaction";
1816
+ scope: "*" | {
1817
+ contract: "*" | AztecAddress;
1818
+ function: string;
1819
+ }[];
1820
+ }, {
1821
+ type: "transaction";
1822
+ scope: "*" | {
1823
+ contract?: any;
1824
+ function: string;
1825
+ }[];
1826
+ }>, z.ZodObject<{
1827
+ type: z.ZodLiteral<"data">;
1828
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1829
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1830
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1831
+ }, "strip", z.ZodTypeAny, {
1832
+ contracts: "*" | AztecAddress[];
1833
+ }, {
1834
+ contracts: "*" | any[];
1835
+ }>>;
1836
+ }, "strip", z.ZodTypeAny, {
1837
+ type: "data";
1838
+ addressBook?: boolean | undefined;
1839
+ privateEvents?: {
1840
+ contracts: "*" | AztecAddress[];
1841
+ } | undefined;
1842
+ }, {
1843
+ type: "data";
1844
+ addressBook?: boolean | undefined;
1845
+ privateEvents?: {
1846
+ contracts: "*" | any[];
1847
+ } | undefined;
1848
+ }>]>;
1849
+ export declare const GrantedCapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1850
+ type: z.ZodLiteral<"accounts">;
1851
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1852
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1853
+ } & {
1854
+ accounts: z.ZodArray<z.ZodObject<{
1855
+ alias: z.ZodString;
1856
+ item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1857
+ }, "strip", z.ZodTypeAny, {
1858
+ alias: string;
1859
+ item: AztecAddress;
1860
+ }, {
1861
+ alias: string;
1862
+ item?: any;
1863
+ }>, "many">;
1864
+ }, "strip", z.ZodTypeAny, {
1865
+ type: "accounts";
1866
+ canGet?: boolean | undefined;
1867
+ canCreateAuthWit?: boolean | undefined;
1868
+ accounts: {
1869
+ alias: string;
1870
+ item: AztecAddress;
1871
+ }[];
1872
+ }, {
1873
+ type: "accounts";
1874
+ canGet?: boolean | undefined;
1875
+ canCreateAuthWit?: boolean | undefined;
1876
+ accounts: {
1877
+ alias: string;
1878
+ item?: any;
1879
+ }[];
1880
+ }>, z.ZodObject<{
1881
+ type: z.ZodLiteral<"contracts">;
1882
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1883
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1884
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1885
+ }, "strip", z.ZodTypeAny, {
1886
+ type: "contracts";
1887
+ contracts: "*" | AztecAddress[];
1888
+ canRegister?: boolean | undefined;
1889
+ canGetMetadata?: boolean | undefined;
1890
+ }, {
1891
+ type: "contracts";
1892
+ contracts: "*" | any[];
1893
+ canRegister?: boolean | undefined;
1894
+ canGetMetadata?: boolean | undefined;
1895
+ }>, z.ZodObject<{
1896
+ type: z.ZodLiteral<"contractClasses">;
1897
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
1898
+ canGetMetadata: z.ZodBoolean;
1899
+ }, "strip", z.ZodTypeAny, {
1900
+ type: "contractClasses";
1901
+ classes: "*" | Fr[];
1902
+ canGetMetadata: boolean;
1903
+ }, {
1904
+ type: "contractClasses";
1905
+ classes: "*" | any[];
1906
+ canGetMetadata: boolean;
1907
+ }>, z.ZodObject<{
1908
+ type: z.ZodLiteral<"simulation">;
1909
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1910
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1911
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1912
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1913
+ }, "strip", z.ZodTypeAny, {
1914
+ contract: "*" | AztecAddress;
1915
+ function: string;
1916
+ }, {
1917
+ contract?: any;
1918
+ function: string;
1919
+ }>, "many">]>;
1920
+ }, "strip", z.ZodTypeAny, {
1921
+ scope: "*" | {
1922
+ contract: "*" | AztecAddress;
1923
+ function: string;
1924
+ }[];
1925
+ }, {
1926
+ scope: "*" | {
1927
+ contract?: any;
1928
+ function: string;
1929
+ }[];
1930
+ }>>;
1931
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1932
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1933
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1934
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1935
+ }, "strip", z.ZodTypeAny, {
1936
+ contract: "*" | AztecAddress;
1937
+ function: string;
1938
+ }, {
1939
+ contract?: any;
1940
+ function: string;
1941
+ }>, "many">]>;
1942
+ }, "strip", z.ZodTypeAny, {
1943
+ scope: "*" | {
1944
+ contract: "*" | AztecAddress;
1945
+ function: string;
1946
+ }[];
1947
+ }, {
1948
+ scope: "*" | {
1949
+ contract?: any;
1950
+ function: string;
1951
+ }[];
1952
+ }>>;
1953
+ }, "strip", z.ZodTypeAny, {
1954
+ type: "simulation";
1955
+ transactions?: {
1956
+ scope: "*" | {
1957
+ contract: "*" | AztecAddress;
1958
+ function: string;
1959
+ }[];
1960
+ } | undefined;
1961
+ utilities?: {
1962
+ scope: "*" | {
1963
+ contract: "*" | AztecAddress;
1964
+ function: string;
1965
+ }[];
1966
+ } | undefined;
1967
+ }, {
1968
+ type: "simulation";
1969
+ transactions?: {
1970
+ scope: "*" | {
1971
+ contract?: any;
1972
+ function: string;
1973
+ }[];
1974
+ } | undefined;
1975
+ utilities?: {
1976
+ scope: "*" | {
1977
+ contract?: any;
1978
+ function: string;
1979
+ }[];
1980
+ } | undefined;
1981
+ }>, z.ZodObject<{
1982
+ type: z.ZodLiteral<"transaction">;
1983
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1984
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1985
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1986
+ }, "strip", z.ZodTypeAny, {
1987
+ contract: "*" | AztecAddress;
1988
+ function: string;
1989
+ }, {
1990
+ contract?: any;
1991
+ function: string;
1992
+ }>, "many">]>;
1993
+ }, "strip", z.ZodTypeAny, {
1994
+ type: "transaction";
1995
+ scope: "*" | {
1996
+ contract: "*" | AztecAddress;
1997
+ function: string;
1998
+ }[];
1999
+ }, {
2000
+ type: "transaction";
2001
+ scope: "*" | {
2002
+ contract?: any;
2003
+ function: string;
2004
+ }[];
2005
+ }>, z.ZodObject<{
2006
+ type: z.ZodLiteral<"data">;
2007
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2008
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2009
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2010
+ }, "strip", z.ZodTypeAny, {
2011
+ contracts: "*" | AztecAddress[];
2012
+ }, {
2013
+ contracts: "*" | any[];
2014
+ }>>;
2015
+ }, "strip", z.ZodTypeAny, {
2016
+ type: "data";
2017
+ addressBook?: boolean | undefined;
2018
+ privateEvents?: {
2019
+ contracts: "*" | AztecAddress[];
2020
+ } | undefined;
2021
+ }, {
2022
+ type: "data";
2023
+ addressBook?: boolean | undefined;
2024
+ privateEvents?: {
2025
+ contracts: "*" | any[];
2026
+ } | undefined;
2027
+ }>]>;
2028
+ export declare const AppCapabilitiesSchema: z.ZodObject<{
2029
+ version: z.ZodLiteral<"1.0">;
2030
+ metadata: z.ZodObject<{
2031
+ name: z.ZodString;
2032
+ version: z.ZodString;
2033
+ description: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2034
+ url: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2035
+ icon: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2036
+ }, "strip", z.ZodTypeAny, {
2037
+ name: string;
2038
+ version: string;
2039
+ description?: string | undefined;
2040
+ url?: string | undefined;
2041
+ icon?: string | undefined;
2042
+ }, {
2043
+ name: string;
2044
+ version: string;
2045
+ description?: string | undefined;
2046
+ url?: string | undefined;
2047
+ icon?: string | undefined;
2048
+ }>;
2049
+ capabilities: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2050
+ type: z.ZodLiteral<"accounts">;
2051
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2052
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2053
+ }, "strip", z.ZodTypeAny, {
2054
+ type: "accounts";
2055
+ canGet?: boolean | undefined;
2056
+ canCreateAuthWit?: boolean | undefined;
2057
+ }, {
2058
+ type: "accounts";
2059
+ canGet?: boolean | undefined;
2060
+ canCreateAuthWit?: boolean | undefined;
2061
+ }>, z.ZodObject<{
2062
+ type: z.ZodLiteral<"contracts">;
2063
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2064
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2065
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2066
+ }, "strip", z.ZodTypeAny, {
2067
+ type: "contracts";
2068
+ contracts: "*" | AztecAddress[];
2069
+ canRegister?: boolean | undefined;
2070
+ canGetMetadata?: boolean | undefined;
2071
+ }, {
2072
+ type: "contracts";
2073
+ contracts: "*" | any[];
2074
+ canRegister?: boolean | undefined;
2075
+ canGetMetadata?: boolean | undefined;
2076
+ }>, z.ZodObject<{
2077
+ type: z.ZodLiteral<"contractClasses">;
2078
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
2079
+ canGetMetadata: z.ZodBoolean;
2080
+ }, "strip", z.ZodTypeAny, {
2081
+ type: "contractClasses";
2082
+ classes: "*" | Fr[];
2083
+ canGetMetadata: boolean;
2084
+ }, {
2085
+ type: "contractClasses";
2086
+ classes: "*" | any[];
2087
+ canGetMetadata: boolean;
2088
+ }>, z.ZodObject<{
2089
+ type: z.ZodLiteral<"simulation">;
2090
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2091
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2092
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2093
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2094
+ }, "strip", z.ZodTypeAny, {
2095
+ contract: "*" | AztecAddress;
2096
+ function: string;
2097
+ }, {
2098
+ contract?: any;
2099
+ function: string;
2100
+ }>, "many">]>;
2101
+ }, "strip", z.ZodTypeAny, {
2102
+ scope: "*" | {
2103
+ contract: "*" | AztecAddress;
2104
+ function: string;
2105
+ }[];
2106
+ }, {
2107
+ scope: "*" | {
2108
+ contract?: any;
2109
+ function: string;
2110
+ }[];
2111
+ }>>;
2112
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2113
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2114
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2115
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2116
+ }, "strip", z.ZodTypeAny, {
2117
+ contract: "*" | AztecAddress;
2118
+ function: string;
2119
+ }, {
2120
+ contract?: any;
2121
+ function: string;
2122
+ }>, "many">]>;
2123
+ }, "strip", z.ZodTypeAny, {
2124
+ scope: "*" | {
2125
+ contract: "*" | AztecAddress;
2126
+ function: string;
2127
+ }[];
2128
+ }, {
2129
+ scope: "*" | {
2130
+ contract?: any;
2131
+ function: string;
2132
+ }[];
2133
+ }>>;
2134
+ }, "strip", z.ZodTypeAny, {
2135
+ type: "simulation";
2136
+ transactions?: {
2137
+ scope: "*" | {
2138
+ contract: "*" | AztecAddress;
2139
+ function: string;
2140
+ }[];
2141
+ } | undefined;
2142
+ utilities?: {
2143
+ scope: "*" | {
2144
+ contract: "*" | AztecAddress;
2145
+ function: string;
2146
+ }[];
2147
+ } | undefined;
2148
+ }, {
2149
+ type: "simulation";
2150
+ transactions?: {
2151
+ scope: "*" | {
2152
+ contract?: any;
2153
+ function: string;
2154
+ }[];
2155
+ } | undefined;
2156
+ utilities?: {
2157
+ scope: "*" | {
2158
+ contract?: any;
2159
+ function: string;
2160
+ }[];
2161
+ } | undefined;
2162
+ }>, z.ZodObject<{
2163
+ type: z.ZodLiteral<"transaction">;
2164
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2165
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2166
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2167
+ }, "strip", z.ZodTypeAny, {
2168
+ contract: "*" | AztecAddress;
2169
+ function: string;
2170
+ }, {
2171
+ contract?: any;
2172
+ function: string;
2173
+ }>, "many">]>;
2174
+ }, "strip", z.ZodTypeAny, {
2175
+ type: "transaction";
2176
+ scope: "*" | {
2177
+ contract: "*" | AztecAddress;
2178
+ function: string;
2179
+ }[];
2180
+ }, {
2181
+ type: "transaction";
2182
+ scope: "*" | {
2183
+ contract?: any;
2184
+ function: string;
2185
+ }[];
2186
+ }>, z.ZodObject<{
2187
+ type: z.ZodLiteral<"data">;
2188
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2189
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2190
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2191
+ }, "strip", z.ZodTypeAny, {
2192
+ contracts: "*" | AztecAddress[];
2193
+ }, {
2194
+ contracts: "*" | any[];
2195
+ }>>;
2196
+ }, "strip", z.ZodTypeAny, {
2197
+ type: "data";
2198
+ addressBook?: boolean | undefined;
2199
+ privateEvents?: {
2200
+ contracts: "*" | AztecAddress[];
2201
+ } | undefined;
2202
+ }, {
2203
+ type: "data";
2204
+ addressBook?: boolean | undefined;
2205
+ privateEvents?: {
2206
+ contracts: "*" | any[];
2207
+ } | undefined;
2208
+ }>]>, "many">;
2209
+ behavior: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2210
+ mode: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEnum<["strict", "permissive"]>>;
2211
+ expiration: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
2212
+ }, "strip", z.ZodTypeAny, {
2213
+ mode?: "permissive" | "strict" | undefined;
2214
+ expiration?: number | undefined;
2215
+ }, {
2216
+ mode?: "permissive" | "strict" | undefined;
2217
+ expiration?: number | undefined;
2218
+ }>>;
2219
+ }, "strip", z.ZodTypeAny, {
2220
+ version: "1.0";
2221
+ metadata: {
2222
+ name: string;
2223
+ version: string;
2224
+ description?: string | undefined;
2225
+ url?: string | undefined;
2226
+ icon?: string | undefined;
2227
+ };
2228
+ capabilities: ({
2229
+ type: "accounts";
2230
+ canGet?: boolean | undefined;
2231
+ canCreateAuthWit?: boolean | undefined;
2232
+ } | {
2233
+ type: "contracts";
2234
+ contracts: "*" | AztecAddress[];
2235
+ canRegister?: boolean | undefined;
2236
+ canGetMetadata?: boolean | undefined;
2237
+ } | {
2238
+ type: "contractClasses";
2239
+ classes: "*" | Fr[];
2240
+ canGetMetadata: boolean;
2241
+ } | {
2242
+ type: "simulation";
2243
+ transactions?: {
2244
+ scope: "*" | {
2245
+ contract: "*" | AztecAddress;
2246
+ function: string;
2247
+ }[];
2248
+ } | undefined;
2249
+ utilities?: {
2250
+ scope: "*" | {
2251
+ contract: "*" | AztecAddress;
2252
+ function: string;
2253
+ }[];
2254
+ } | undefined;
2255
+ } | {
2256
+ type: "transaction";
2257
+ scope: "*" | {
2258
+ contract: "*" | AztecAddress;
2259
+ function: string;
2260
+ }[];
2261
+ } | {
2262
+ type: "data";
2263
+ addressBook?: boolean | undefined;
2264
+ privateEvents?: {
2265
+ contracts: "*" | AztecAddress[];
2266
+ } | undefined;
2267
+ })[];
2268
+ behavior?: {
2269
+ mode?: "permissive" | "strict" | undefined;
2270
+ expiration?: number | undefined;
2271
+ } | undefined;
2272
+ }, {
2273
+ version: "1.0";
2274
+ metadata: {
2275
+ name: string;
2276
+ version: string;
2277
+ description?: string | undefined;
2278
+ url?: string | undefined;
2279
+ icon?: string | undefined;
2280
+ };
2281
+ capabilities: ({
2282
+ type: "accounts";
2283
+ canGet?: boolean | undefined;
2284
+ canCreateAuthWit?: boolean | undefined;
2285
+ } | {
2286
+ type: "contracts";
2287
+ contracts: "*" | any[];
2288
+ canRegister?: boolean | undefined;
2289
+ canGetMetadata?: boolean | undefined;
2290
+ } | {
2291
+ type: "contractClasses";
2292
+ classes: "*" | any[];
2293
+ canGetMetadata: boolean;
2294
+ } | {
2295
+ type: "simulation";
2296
+ transactions?: {
2297
+ scope: "*" | {
2298
+ contract?: any;
2299
+ function: string;
2300
+ }[];
2301
+ } | undefined;
2302
+ utilities?: {
2303
+ scope: "*" | {
2304
+ contract?: any;
2305
+ function: string;
2306
+ }[];
2307
+ } | undefined;
2308
+ } | {
2309
+ type: "transaction";
2310
+ scope: "*" | {
2311
+ contract?: any;
2312
+ function: string;
2313
+ }[];
2314
+ } | {
2315
+ type: "data";
2316
+ addressBook?: boolean | undefined;
2317
+ privateEvents?: {
2318
+ contracts: "*" | any[];
2319
+ } | undefined;
2320
+ })[];
2321
+ behavior?: {
2322
+ mode?: "permissive" | "strict" | undefined;
2323
+ expiration?: number | undefined;
2324
+ } | undefined;
2325
+ }>;
2326
+ export declare const WalletCapabilitiesSchema: z.ZodObject<{
2327
+ version: z.ZodLiteral<"1.0">;
2328
+ granted: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2329
+ type: z.ZodLiteral<"accounts">;
2330
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2331
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2332
+ } & {
2333
+ accounts: z.ZodArray<z.ZodObject<{
2334
+ alias: z.ZodString;
2335
+ item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
2336
+ }, "strip", z.ZodTypeAny, {
2337
+ alias: string;
2338
+ item: AztecAddress;
2339
+ }, {
2340
+ alias: string;
2341
+ item?: any;
2342
+ }>, "many">;
2343
+ }, "strip", z.ZodTypeAny, {
2344
+ type: "accounts";
2345
+ canGet?: boolean | undefined;
2346
+ canCreateAuthWit?: boolean | undefined;
2347
+ accounts: {
2348
+ alias: string;
2349
+ item: AztecAddress;
2350
+ }[];
2351
+ }, {
2352
+ type: "accounts";
2353
+ canGet?: boolean | undefined;
2354
+ canCreateAuthWit?: boolean | undefined;
2355
+ accounts: {
2356
+ alias: string;
2357
+ item?: any;
2358
+ }[];
2359
+ }>, z.ZodObject<{
2360
+ type: z.ZodLiteral<"contracts">;
2361
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2362
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2363
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2364
+ }, "strip", z.ZodTypeAny, {
2365
+ type: "contracts";
2366
+ contracts: "*" | AztecAddress[];
2367
+ canRegister?: boolean | undefined;
2368
+ canGetMetadata?: boolean | undefined;
2369
+ }, {
2370
+ type: "contracts";
2371
+ contracts: "*" | any[];
2372
+ canRegister?: boolean | undefined;
2373
+ canGetMetadata?: boolean | undefined;
2374
+ }>, z.ZodObject<{
2375
+ type: z.ZodLiteral<"contractClasses">;
2376
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
2377
+ canGetMetadata: z.ZodBoolean;
2378
+ }, "strip", z.ZodTypeAny, {
2379
+ type: "contractClasses";
2380
+ classes: "*" | Fr[];
2381
+ canGetMetadata: boolean;
2382
+ }, {
2383
+ type: "contractClasses";
2384
+ classes: "*" | any[];
2385
+ canGetMetadata: boolean;
2386
+ }>, z.ZodObject<{
2387
+ type: z.ZodLiteral<"simulation">;
2388
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2389
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2390
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2391
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2392
+ }, "strip", z.ZodTypeAny, {
2393
+ contract: "*" | AztecAddress;
2394
+ function: string;
2395
+ }, {
2396
+ contract?: any;
2397
+ function: string;
2398
+ }>, "many">]>;
2399
+ }, "strip", z.ZodTypeAny, {
2400
+ scope: "*" | {
2401
+ contract: "*" | AztecAddress;
2402
+ function: string;
2403
+ }[];
2404
+ }, {
2405
+ scope: "*" | {
2406
+ contract?: any;
2407
+ function: string;
2408
+ }[];
2409
+ }>>;
2410
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2411
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2412
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2413
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2414
+ }, "strip", z.ZodTypeAny, {
2415
+ contract: "*" | AztecAddress;
2416
+ function: string;
2417
+ }, {
2418
+ contract?: any;
2419
+ function: string;
2420
+ }>, "many">]>;
2421
+ }, "strip", z.ZodTypeAny, {
2422
+ scope: "*" | {
2423
+ contract: "*" | AztecAddress;
2424
+ function: string;
2425
+ }[];
2426
+ }, {
2427
+ scope: "*" | {
2428
+ contract?: any;
2429
+ function: string;
2430
+ }[];
2431
+ }>>;
2432
+ }, "strip", z.ZodTypeAny, {
2433
+ type: "simulation";
2434
+ transactions?: {
2435
+ scope: "*" | {
2436
+ contract: "*" | AztecAddress;
2437
+ function: string;
2438
+ }[];
2439
+ } | undefined;
2440
+ utilities?: {
2441
+ scope: "*" | {
2442
+ contract: "*" | AztecAddress;
2443
+ function: string;
2444
+ }[];
2445
+ } | undefined;
2446
+ }, {
2447
+ type: "simulation";
2448
+ transactions?: {
2449
+ scope: "*" | {
2450
+ contract?: any;
2451
+ function: string;
2452
+ }[];
2453
+ } | undefined;
2454
+ utilities?: {
2455
+ scope: "*" | {
2456
+ contract?: any;
2457
+ function: string;
2458
+ }[];
2459
+ } | undefined;
2460
+ }>, z.ZodObject<{
2461
+ type: z.ZodLiteral<"transaction">;
2462
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2463
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2464
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2465
+ }, "strip", z.ZodTypeAny, {
2466
+ contract: "*" | AztecAddress;
2467
+ function: string;
2468
+ }, {
2469
+ contract?: any;
2470
+ function: string;
2471
+ }>, "many">]>;
2472
+ }, "strip", z.ZodTypeAny, {
2473
+ type: "transaction";
2474
+ scope: "*" | {
2475
+ contract: "*" | AztecAddress;
2476
+ function: string;
2477
+ }[];
2478
+ }, {
2479
+ type: "transaction";
2480
+ scope: "*" | {
2481
+ contract?: any;
2482
+ function: string;
2483
+ }[];
2484
+ }>, z.ZodObject<{
2485
+ type: z.ZodLiteral<"data">;
2486
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2487
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2488
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2489
+ }, "strip", z.ZodTypeAny, {
2490
+ contracts: "*" | AztecAddress[];
2491
+ }, {
2492
+ contracts: "*" | any[];
2493
+ }>>;
2494
+ }, "strip", z.ZodTypeAny, {
2495
+ type: "data";
2496
+ addressBook?: boolean | undefined;
2497
+ privateEvents?: {
2498
+ contracts: "*" | AztecAddress[];
2499
+ } | undefined;
2500
+ }, {
2501
+ type: "data";
2502
+ addressBook?: boolean | undefined;
2503
+ privateEvents?: {
2504
+ contracts: "*" | any[];
2505
+ } | undefined;
2506
+ }>]>, "many">;
2507
+ wallet: z.ZodObject<{
2508
+ name: z.ZodString;
2509
+ version: z.ZodString;
2510
+ }, "strip", z.ZodTypeAny, {
2511
+ name: string;
2512
+ version: string;
2513
+ }, {
2514
+ name: string;
2515
+ version: string;
2516
+ }>;
2517
+ expiresAt: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
2518
+ }, "strip", z.ZodTypeAny, {
2519
+ version: "1.0";
2520
+ granted: ({
2521
+ type: "accounts";
2522
+ canGet?: boolean | undefined;
2523
+ canCreateAuthWit?: boolean | undefined;
2524
+ accounts: {
2525
+ alias: string;
2526
+ item: AztecAddress;
2527
+ }[];
2528
+ } | {
2529
+ type: "contracts";
2530
+ contracts: "*" | AztecAddress[];
2531
+ canRegister?: boolean | undefined;
2532
+ canGetMetadata?: boolean | undefined;
2533
+ } | {
2534
+ type: "contractClasses";
2535
+ classes: "*" | Fr[];
2536
+ canGetMetadata: boolean;
2537
+ } | {
2538
+ type: "simulation";
2539
+ transactions?: {
2540
+ scope: "*" | {
2541
+ contract: "*" | AztecAddress;
2542
+ function: string;
2543
+ }[];
2544
+ } | undefined;
2545
+ utilities?: {
2546
+ scope: "*" | {
2547
+ contract: "*" | AztecAddress;
2548
+ function: string;
2549
+ }[];
2550
+ } | undefined;
2551
+ } | {
2552
+ type: "transaction";
2553
+ scope: "*" | {
2554
+ contract: "*" | AztecAddress;
2555
+ function: string;
2556
+ }[];
2557
+ } | {
2558
+ type: "data";
2559
+ addressBook?: boolean | undefined;
2560
+ privateEvents?: {
2561
+ contracts: "*" | AztecAddress[];
2562
+ } | undefined;
2563
+ })[];
2564
+ wallet: {
2565
+ name: string;
2566
+ version: string;
2567
+ };
2568
+ expiresAt?: number | undefined;
2569
+ }, {
2570
+ version: "1.0";
2571
+ granted: ({
2572
+ type: "accounts";
2573
+ canGet?: boolean | undefined;
2574
+ canCreateAuthWit?: boolean | undefined;
2575
+ accounts: {
2576
+ alias: string;
2577
+ item?: any;
2578
+ }[];
2579
+ } | {
2580
+ type: "contracts";
2581
+ contracts: "*" | any[];
2582
+ canRegister?: boolean | undefined;
2583
+ canGetMetadata?: boolean | undefined;
2584
+ } | {
2585
+ type: "contractClasses";
2586
+ classes: "*" | any[];
2587
+ canGetMetadata: boolean;
2588
+ } | {
2589
+ type: "simulation";
2590
+ transactions?: {
2591
+ scope: "*" | {
2592
+ contract?: any;
2593
+ function: string;
2594
+ }[];
2595
+ } | undefined;
2596
+ utilities?: {
2597
+ scope: "*" | {
2598
+ contract?: any;
2599
+ function: string;
2600
+ }[];
2601
+ } | undefined;
2602
+ } | {
2603
+ type: "transaction";
2604
+ scope: "*" | {
2605
+ contract?: any;
2606
+ function: string;
2607
+ }[];
2608
+ } | {
2609
+ type: "data";
2610
+ addressBook?: boolean | undefined;
2611
+ privateEvents?: {
2612
+ contracts: "*" | any[];
2613
+ } | undefined;
2614
+ })[];
2615
+ wallet: {
2616
+ name: string;
2617
+ version: string;
2618
+ };
2619
+ expiresAt?: number | undefined;
2620
+ }>;
1258
2621
  declare const BatchedMethodSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObject<{
1259
- name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility">;
2622
+ name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
1260
2623
  args: z.ZodTuple<any, any>;
1261
2624
  }, "strip", z.ZodTypeAny, {
1262
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2625
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1263
2626
  args: any[];
1264
2627
  }, {
1265
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2628
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1266
2629
  args: any[];
1267
2630
  }>, ...z.ZodObject<{
1268
- name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility">;
2631
+ name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
1269
2632
  args: z.ZodTuple<any, any>;
1270
2633
  }, "strip", z.ZodTypeAny, {
1271
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2634
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1272
2635
  args: any[];
1273
2636
  }, {
1274
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2637
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1275
2638
  args: any[];
1276
2639
  }>[]]>, BatchedResultSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObject<{
1277
- name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility">;
2640
+ name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
1278
2641
  result: z.ZodTypeAny;
1279
2642
  }, "strip", z.ZodTypeAny, {
1280
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2643
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1281
2644
  result?: any;
1282
2645
  }, {
1283
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2646
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1284
2647
  result?: any;
1285
2648
  }>, ...z.ZodObject<{
1286
- name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility">;
2649
+ name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
1287
2650
  result: z.ZodTypeAny;
1288
2651
  }, "strip", z.ZodTypeAny, {
1289
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2652
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1290
2653
  result?: any;
1291
2654
  }, {
1292
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2655
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1293
2656
  result?: any;
1294
2657
  }>[]]>;
1295
2658
  export { BatchedMethodSchema, BatchedResultSchema };
1296
2659
  export declare const WalletSchema: ApiSchemaFor<Wallet>;
1297
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFHTCxLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLFlBQVksRUFDakIsWUFBWSxFQUNiLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3pELE9BQU8sS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxLQUFLLDJCQUEyQixFQUFxQyxNQUFNLHdCQUF3QixDQUFDO0FBQzdHLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN4QyxPQUFPLEVBQW9CLEtBQUssWUFBWSxFQUE2QixNQUFNLHVCQUF1QixDQUFDO0FBQ3ZHLE9BQU8sS0FBSyxFQUFFLGdCQUFnQixFQUFFLElBQUksRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQy9ELE9BQU8sRUFDTCxPQUFPLEVBQ1AsWUFBWSxFQUNaLE1BQU0sRUFDTixlQUFlLEVBRWYsa0JBQWtCLEVBQ2xCLHVCQUF1QixFQUV4QixNQUFNLGtCQUFrQixDQUFDO0FBRTFCLE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxFQUNMLEtBQUssb0JBQW9CLEVBQ3pCLEtBQUssaUJBQWlCLEVBQ3RCLEtBQUssc0JBQXNCLEVBRTNCLEtBQUsseUJBQXlCLEVBQzlCLEtBQUssaUNBQWlDLEVBQ3RDLEtBQUssVUFBVSxF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
2660
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFDTCxLQUFLLFVBQVUsRUFFZixLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixZQUFZLEVBQ2IsTUFBTSxtQkFBbUIsQ0FBQztBQUMzQixPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDekQsT0FBTyxLQUFLLEVBQUUsWUFBWSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDaEUsT0FBTyxFQUFFLEtBQUssMkJBQTJCLEVBQXFDLE1BQU0sd0JBQXdCLENBQUM7QUFDN0csT0FBTyxFQUFFLEdBQUcsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ3hDLE9BQU8sRUFBb0IsS0FBSyxZQUFZLEVBQTZCLE1BQU0sdUJBQXVCLENBQUM7QUFDdkcsT0FBTyxLQUFLLEVBQUUsZ0JBQWdCLEVBQUUsSUFBSSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDL0QsT0FBTyxFQUNMLE9BQU8sRUFDUCxZQUFZLEVBQ1osTUFBTSxFQUNOLGVBQWUsRUFFZixrQkFBa0IsRUFDbEIsc0JBQXNCLEVBRXZCLE1BQU0sa0JBQWtCLENBQUM7QUFFMUIsT0FBTyxFQUFFLENBQUMsRUFBRSxNQUFNLEtBQUssQ0FBQztBQUV4QixPQUFPLEVBQ0wsS0FBSyxvQkFBb0IsRUFDekIsS0FBSyxpQkFBaUIsRUFDdEIsS0FBSyxzQkFBc0IsRUFFM0IsS0FBSyx5QkFBeUIsRUFDOUIsS0FBSyxpQ0FBaUMsRUFDdEMsS0FBSyxVQUFVLEVB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