@aztec/aztec.js 0.0.1-commit.29c6b1a3 → 0.0.1-commit.2c85e299c

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 (116) 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 +18 -6
  10. package/dest/api/events.d.ts.map +1 -1
  11. package/dest/api/events.js +37 -22
  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/keys.d.ts +1 -1
  16. package/dest/api/keys.js +1 -1
  17. package/dest/api/wallet.d.ts +3 -2
  18. package/dest/api/wallet.d.ts.map +1 -1
  19. package/dest/api/wallet.js +2 -1
  20. package/dest/contract/base_contract_interaction.d.ts +3 -3
  21. package/dest/contract/base_contract_interaction.d.ts.map +1 -1
  22. package/dest/contract/batch_call.d.ts +3 -3
  23. package/dest/contract/batch_call.d.ts.map +1 -1
  24. package/dest/contract/batch_call.js +17 -8
  25. package/dest/contract/contract_function_interaction.d.ts +7 -16
  26. package/dest/contract/contract_function_interaction.d.ts.map +1 -1
  27. package/dest/contract/contract_function_interaction.js +107 -18
  28. package/dest/contract/deploy_method.d.ts +37 -12
  29. package/dest/contract/deploy_method.d.ts.map +1 -1
  30. package/dest/contract/deploy_method.js +42 -21
  31. package/dest/contract/get_gas_limits.js +3 -3
  32. package/dest/contract/interaction_options.d.ts +62 -21
  33. package/dest/contract/interaction_options.d.ts.map +1 -1
  34. package/dest/contract/interaction_options.js +33 -0
  35. package/dest/contract/protocol_contracts/auth-registry.d.ts +1 -1
  36. package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
  37. package/dest/contract/protocol_contracts/auth-registry.js +48 -6
  38. package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -22
  39. package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
  40. package/dest/contract/protocol_contracts/contract-class-registry.js +13 -658
  41. package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +2 -11
  42. package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -1
  43. package/dest/contract/protocol_contracts/contract-instance-registry.js +76 -473
  44. package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -10
  45. package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
  46. package/dest/contract/protocol_contracts/fee-juice.js +7 -400
  47. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +1 -1
  48. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
  49. package/dest/contract/protocol_contracts/multi-call-entrypoint.js +39 -1
  50. package/dest/contract/protocol_contracts/public-checks.d.ts +1 -1
  51. package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
  52. package/dest/contract/protocol_contracts/public-checks.js +39 -9
  53. package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
  54. package/dest/fee/private_fee_payment_method.d.ts +2 -1
  55. package/dest/fee/private_fee_payment_method.d.ts.map +1 -1
  56. package/dest/fee/private_fee_payment_method.js +11 -10
  57. package/dest/fee/public_fee_payment_method.d.ts +2 -1
  58. package/dest/fee/public_fee_payment_method.d.ts.map +1 -1
  59. package/dest/fee/public_fee_payment_method.js +11 -10
  60. package/dest/fee/sponsored_fee_payment.js +3 -3
  61. package/dest/utils/abi_types.d.ts +6 -1
  62. package/dest/utils/abi_types.d.ts.map +1 -1
  63. package/dest/utils/abi_types.js +1 -1
  64. package/dest/utils/authwit.d.ts +5 -5
  65. package/dest/utils/authwit.d.ts.map +1 -1
  66. package/dest/utils/authwit.js +10 -6
  67. package/dest/utils/cross_chain.d.ts +3 -8
  68. package/dest/utils/cross_chain.d.ts.map +1 -1
  69. package/dest/utils/cross_chain.js +8 -15
  70. package/dest/wallet/capabilities.d.ts +452 -0
  71. package/dest/wallet/capabilities.d.ts.map +1 -0
  72. package/dest/wallet/capabilities.js +3 -0
  73. package/dest/wallet/deploy_account_method.d.ts +15 -4
  74. package/dest/wallet/deploy_account_method.d.ts.map +1 -1
  75. package/dest/wallet/deploy_account_method.js +26 -0
  76. package/dest/wallet/index.d.ts +2 -1
  77. package/dest/wallet/index.d.ts.map +1 -1
  78. package/dest/wallet/index.js +1 -0
  79. package/dest/wallet/wallet.d.ts +1663 -89
  80. package/dest/wallet/wallet.d.ts.map +1 -1
  81. package/dest/wallet/wallet.js +175 -27
  82. package/package.json +20 -11
  83. package/src/api/abi.ts +1 -0
  84. package/src/api/contract.ts +10 -3
  85. package/src/api/deployment.ts +0 -1
  86. package/src/api/events.ts +50 -32
  87. package/src/api/fields.ts +1 -0
  88. package/src/api/keys.ts +2 -2
  89. package/src/api/wallet.ts +43 -1
  90. package/src/contract/base_contract_interaction.ts +3 -2
  91. package/src/contract/batch_call.ts +17 -14
  92. package/src/contract/contract_function_interaction.ts +114 -26
  93. package/src/contract/deploy_method.ts +77 -32
  94. package/src/contract/get_gas_limits.ts +3 -3
  95. package/src/contract/interaction_options.ts +96 -23
  96. package/src/contract/protocol_contracts/auth-registry.ts +10 -2
  97. package/src/contract/protocol_contracts/contract-class-registry.ts +4 -338
  98. package/src/contract/protocol_contracts/contract-instance-registry.ts +33 -225
  99. package/src/contract/protocol_contracts/fee-juice.ts +2 -193
  100. package/src/contract/protocol_contracts/multi-call-entrypoint.ts +8 -1
  101. package/src/contract/protocol_contracts/public-checks.ts +8 -3
  102. package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
  103. package/src/fee/private_fee_payment_method.ts +8 -7
  104. package/src/fee/public_fee_payment_method.ts +9 -8
  105. package/src/fee/sponsored_fee_payment.ts +3 -3
  106. package/src/utils/abi_types.ts +7 -0
  107. package/src/utils/authwit.ts +20 -22
  108. package/src/utils/cross_chain.ts +9 -18
  109. package/src/wallet/capabilities.ts +500 -0
  110. package/src/wallet/deploy_account_method.ts +39 -2
  111. package/src/wallet/index.ts +1 -0
  112. package/src/wallet/wallet.ts +230 -39
  113. package/dest/deployment/broadcast_function.d.ts +0 -24
  114. package/dest/deployment/broadcast_function.d.ts.map +0 -1
  115. package/dest/deployment/broadcast_function.js +0 -74
  116. package/src/deployment/broadcast_function.ts +0 -148
@@ -1,17 +1,19 @@
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
+ import { LogId } from '@aztec/stdlib/logs';
9
10
  import { type ApiSchemaFor } from '@aztec/stdlib/schemas';
10
11
  import type { ExecutionPayload, InTx } from '@aztec/stdlib/tx';
11
- import { Capsule, HashedValues, TxHash, TxProfileResult, TxSimulationResult, UtilitySimulationResult } from '@aztec/stdlib/tx';
12
+ import { Capsule, HashedValues, TxHash, TxProfileResult, TxSimulationResult, UtilityExecutionResult } from '@aztec/stdlib/tx';
12
13
  import { z } from 'zod';
13
14
  import { type FeeEstimationOptions, type GasSettingsOption, type InteractionWaitOptions, type ProfileInteractionOptions, type SendInteractionOptionsWithoutWait, type SendReturn, type SimulateInteractionOptions } from '../contract/interaction_options.js';
14
15
  import type { CallIntent, IntentInnerHash } from '../utils/authwit.js';
16
+ import type { AppCapabilities, WalletCapabilities } from './capabilities.js';
15
17
  /**
16
18
  * A wrapper type that allows any item to be associated with an alias.
17
19
  */
@@ -96,35 +98,59 @@ export type BatchResults<T extends readonly BatchedMethod[]> = {
96
98
  [K in keyof T]: BatchedMethodResultWrapper<T[K]>;
97
99
  };
98
100
  /**
99
- * Filter options when querying private events.
101
+ * Base filter options for event queries.
100
102
  */
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[];
103
+ export type EventFilterBase = {
106
104
  /** Transaction in which the events were emitted. */
107
105
  txHash?: TxHash;
108
106
  /** The block number from which to start fetching events (inclusive).
109
107
  * Optional. If provided, it must be greater or equal than 1.
110
108
  * Defaults to the initial L2 block number (INITIAL_L2_BLOCK_NUM).
111
- * */
109
+ */
112
110
  fromBlock?: BlockNumber;
113
111
  /** The block number until which to fetch logs (not inclusive).
114
112
  * Optional. If provided, it must be greater than fromBlock.
115
- * Defaults to the latest known block to PXE + 1.
116
113
  */
117
114
  toBlock?: BlockNumber;
115
+ /** Log id after which to start fetching logs. Used for pagination. */
116
+ afterLog?: LogId;
117
+ };
118
+ /**
119
+ * Filter options when querying private events.
120
+ */
121
+ export type PrivateEventFilter = EventFilterBase & {
122
+ /** The address of the contract that emitted the events. */
123
+ contractAddress: AztecAddress;
124
+ /** Addresses of accounts that are in scope for this filter. */
125
+ scopes: AztecAddress[];
118
126
  };
119
127
  /**
120
- * An ABI decoded private event with associated metadata.
128
+ * Filter options when querying public events.
121
129
  */
122
- export type PrivateEvent<T> = {
130
+ export type PublicEventFilter = EventFilterBase & {
131
+ /** The address of the contract that emitted the events. */
132
+ contractAddress?: AztecAddress;
133
+ };
134
+ /**
135
+ * An ABI decoded event with associated metadata.
136
+ * @typeParam T - The decoded event type
137
+ * @typeParam M - Additional metadata fields (empty by default)
138
+ */
139
+ export type Event<T, M extends object = object> = {
123
140
  /** The ABI decoded event */
124
141
  event: T;
125
142
  /** Metadata describing event context information such as tx and block */
126
- metadata: InTx;
143
+ metadata: InTx & M;
127
144
  };
145
+ /** An ABI decoded private event with associated metadata. */
146
+ export type PrivateEvent<T> = Event<T>;
147
+ /** An ABI decoded public event with associated metadata (includes contract address). */
148
+ export type PublicEvent<T> = Event<T, {
149
+ /**
150
+ * Address of the contract that emitted this event
151
+ */
152
+ contractAddress: AztecAddress;
153
+ }>;
128
154
  /**
129
155
  * Contract metadata including deployment and registration status.
130
156
  */
@@ -149,6 +175,15 @@ export type ContractClassMetadata = {
149
175
  /** Whether the contract class is publicly registered on-chain */
150
176
  isContractClassPubliclyRegistered: boolean;
151
177
  };
178
+ /**
179
+ * Options for executing a utility function call.
180
+ */
181
+ export type ExecuteUtilityOptions = {
182
+ /** The scope for the utility execution (determines which notes and keys are visible). */
183
+ scope: AztecAddress;
184
+ /** Optional auth witnesses to use during execution. */
185
+ authWitnesses?: AuthWitness[];
186
+ };
152
187
  /**
153
188
  * The wallet interface.
154
189
  */
@@ -162,46 +197,19 @@ export type Wallet = {
162
197
  getAccounts(): Promise<Aliased<AztecAddress>[]>;
163
198
  registerContract(instance: ContractInstanceWithAddress, artifact?: ContractArtifact, secretKey?: Fr): Promise<ContractInstanceWithAddress>;
164
199
  simulateTx(exec: ExecutionPayload, opts: SimulateOptions): Promise<TxSimulationResult>;
165
- simulateUtility(call: FunctionCall, authwits?: AuthWitness[]): Promise<UtilitySimulationResult>;
200
+ executeUtility(call: FunctionCall, opts: ExecuteUtilityOptions): Promise<UtilityExecutionResult>;
166
201
  profileTx(exec: ExecutionPayload, opts: ProfileOptions): Promise<TxProfileResult>;
167
202
  sendTx<W extends InteractionWaitOptions = undefined>(exec: ExecutionPayload, opts: SendOptions<W>): Promise<SendReturn<W>>;
168
203
  createAuthWit(from: AztecAddress, messageHashOrIntent: IntentInnerHash | CallIntent): Promise<AuthWitness>;
204
+ requestCapabilities(manifest: AppCapabilities): Promise<WalletCapabilities>;
169
205
  batch<const T extends readonly BatchedMethod[]>(methods: T): Promise<BatchResults<T>>;
170
206
  };
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
207
  export declare const ExecutionPayloadSchema: z.ZodObject<{
200
- calls: z.ZodArray<z.ZodObject<{
208
+ calls: z.ZodArray<z.ZodEffects<z.ZodObject<{
201
209
  name: z.ZodString;
202
210
  to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
203
211
  selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
204
- type: z.ZodNativeEnum<typeof FunctionType>;
212
+ type: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
205
213
  isStatic: z.ZodBoolean;
206
214
  hideMsgSender: z.ZodBoolean;
207
215
  args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
@@ -210,7 +218,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
210
218
  name: string;
211
219
  to: AztecAddress;
212
220
  selector: import("@aztec/stdlib/abi").FunctionSelector;
213
- type: FunctionType;
221
+ type: import("@aztec/stdlib/abi").FunctionType;
214
222
  isStatic: boolean;
215
223
  hideMsgSender: boolean;
216
224
  args: Fr[];
@@ -219,7 +227,16 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
219
227
  name: string;
220
228
  to?: any;
221
229
  selector?: any;
222
- type: FunctionType;
230
+ type: import("@aztec/stdlib/abi").FunctionType;
231
+ isStatic: boolean;
232
+ hideMsgSender: boolean;
233
+ args: any[];
234
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
235
+ }>, FunctionCall, {
236
+ name: string;
237
+ to?: any;
238
+ selector?: any;
239
+ type: import("@aztec/stdlib/abi").FunctionType;
223
240
  isStatic: boolean;
224
241
  hideMsgSender: boolean;
225
242
  args: any[];
@@ -230,16 +247,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
230
247
  extraHashedArgs: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<HashedValues>, "many">;
231
248
  feePayer: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
232
249
  }, "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
- }[];
250
+ calls: FunctionCall[];
243
251
  authWitnesses: AuthWitness[];
244
252
  capsules: Capsule[];
245
253
  extraHashedArgs: HashedValues[];
@@ -249,7 +257,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
249
257
  name: string;
250
258
  to?: any;
251
259
  selector?: any;
252
- type: FunctionType;
260
+ type: import("@aztec/stdlib/abi").FunctionType;
253
261
  isStatic: boolean;
254
262
  hideMsgSender: boolean;
255
263
  args: any[];
@@ -633,6 +641,7 @@ export declare const SendOptionsSchema: z.ZodObject<{
633
641
  interval?: number | undefined;
634
642
  dontThrowOnRevert?: boolean | undefined;
635
643
  }>]>>;
644
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">>;
636
645
  }, "strip", z.ZodTypeAny, {
637
646
  from: AztecAddress;
638
647
  authWitnesses?: AuthWitness[] | undefined;
@@ -657,6 +666,7 @@ export declare const SendOptionsSchema: z.ZodObject<{
657
666
  interval?: number | undefined;
658
667
  dontThrowOnRevert?: boolean | undefined;
659
668
  } | undefined;
669
+ additionalScopes?: AztecAddress[] | undefined;
660
670
  }, {
661
671
  from?: any;
662
672
  authWitnesses?: string[] | undefined;
@@ -687,6 +697,7 @@ export declare const SendOptionsSchema: z.ZodObject<{
687
697
  interval?: number | undefined;
688
698
  dontThrowOnRevert?: boolean | undefined;
689
699
  } | undefined;
700
+ additionalScopes?: any[] | undefined;
690
701
  }>;
691
702
  export declare const SimulateOptionsSchema: z.ZodObject<{
692
703
  from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
@@ -812,6 +823,7 @@ export declare const SimulateOptionsSchema: z.ZodObject<{
812
823
  skipTxValidation: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
813
824
  skipFeeEnforcement: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
814
825
  includeMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
826
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">>;
815
827
  }, "strip", z.ZodTypeAny, {
816
828
  from: AztecAddress;
817
829
  authWitnesses?: AuthWitness[] | undefined;
@@ -835,6 +847,7 @@ export declare const SimulateOptionsSchema: z.ZodObject<{
835
847
  skipTxValidation?: boolean | undefined;
836
848
  skipFeeEnforcement?: boolean | undefined;
837
849
  includeMetadata?: boolean | undefined;
850
+ additionalScopes?: AztecAddress[] | undefined;
838
851
  }, {
839
852
  from?: any;
840
853
  authWitnesses?: string[] | undefined;
@@ -864,6 +877,7 @@ export declare const SimulateOptionsSchema: z.ZodObject<{
864
877
  skipTxValidation?: boolean | undefined;
865
878
  skipFeeEnforcement?: boolean | undefined;
866
879
  includeMetadata?: boolean | undefined;
880
+ additionalScopes?: any[] | undefined;
867
881
  }>;
868
882
  export declare const ProfileOptionsSchema: z.ZodObject<{
869
883
  from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
@@ -989,6 +1003,7 @@ export declare const ProfileOptionsSchema: z.ZodObject<{
989
1003
  skipTxValidation: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
990
1004
  skipFeeEnforcement: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
991
1005
  includeMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1006
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">>;
992
1007
  } & {
993
1008
  profileMode: z.ZodEnum<["gates", "execution-steps", "full"]>;
994
1009
  skipProofGeneration: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
@@ -1015,6 +1030,7 @@ export declare const ProfileOptionsSchema: z.ZodObject<{
1015
1030
  skipTxValidation?: boolean | undefined;
1016
1031
  skipFeeEnforcement?: boolean | undefined;
1017
1032
  includeMetadata?: boolean | undefined;
1033
+ additionalScopes?: AztecAddress[] | undefined;
1018
1034
  profileMode: "execution-steps" | "full" | "gates";
1019
1035
  skipProofGeneration?: boolean | undefined;
1020
1036
  }, {
@@ -1046,6 +1062,7 @@ export declare const ProfileOptionsSchema: z.ZodObject<{
1046
1062
  skipTxValidation?: boolean | undefined;
1047
1063
  skipFeeEnforcement?: boolean | undefined;
1048
1064
  includeMetadata?: boolean | undefined;
1065
+ additionalScopes?: any[] | undefined;
1049
1066
  profileMode: "execution-steps" | "full" | "gates";
1050
1067
  skipProofGeneration?: boolean | undefined;
1051
1068
  }>;
@@ -1060,11 +1077,11 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
1060
1077
  innerHash?: any;
1061
1078
  }>, z.ZodObject<{
1062
1079
  caller: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1063
- call: z.ZodObject<{
1080
+ call: z.ZodEffects<z.ZodObject<{
1064
1081
  name: z.ZodString;
1065
1082
  to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1066
1083
  selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
1067
- type: z.ZodNativeEnum<typeof FunctionType>;
1084
+ type: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
1068
1085
  isStatic: z.ZodBoolean;
1069
1086
  hideMsgSender: z.ZodBoolean;
1070
1087
  args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
@@ -1073,7 +1090,7 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
1073
1090
  name: string;
1074
1091
  to: AztecAddress;
1075
1092
  selector: import("@aztec/stdlib/abi").FunctionSelector;
1076
- type: FunctionType;
1093
+ type: import("@aztec/stdlib/abi").FunctionType;
1077
1094
  isStatic: boolean;
1078
1095
  hideMsgSender: boolean;
1079
1096
  args: Fr[];
@@ -1082,31 +1099,31 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
1082
1099
  name: string;
1083
1100
  to?: any;
1084
1101
  selector?: any;
1085
- type: FunctionType;
1102
+ type: import("@aztec/stdlib/abi").FunctionType;
1086
1103
  isStatic: boolean;
1087
1104
  hideMsgSender: boolean;
1088
1105
  args: any[];
1089
1106
  returnTypes: import("@aztec/stdlib/abi").AbiType[];
1090
- }>;
1091
- }, "strip", z.ZodTypeAny, {
1092
- caller: AztecAddress;
1093
- call: {
1107
+ }>, FunctionCall, {
1094
1108
  name: string;
1095
- to: AztecAddress;
1096
- selector: import("@aztec/stdlib/abi").FunctionSelector;
1097
- type: FunctionType;
1109
+ to?: any;
1110
+ selector?: any;
1111
+ type: import("@aztec/stdlib/abi").FunctionType;
1098
1112
  isStatic: boolean;
1099
1113
  hideMsgSender: boolean;
1100
- args: Fr[];
1114
+ args: any[];
1101
1115
  returnTypes: import("@aztec/stdlib/abi").AbiType[];
1102
- };
1116
+ }>;
1117
+ }, "strip", z.ZodTypeAny, {
1118
+ caller: AztecAddress;
1119
+ call: FunctionCall;
1103
1120
  }, {
1104
1121
  caller?: any;
1105
1122
  call: {
1106
1123
  name: string;
1107
1124
  to?: any;
1108
1125
  selector?: any;
1109
- type: FunctionType;
1126
+ type: import("@aztec/stdlib/abi").FunctionType;
1110
1127
  isStatic: boolean;
1111
1128
  hideMsgSender: boolean;
1112
1129
  args: any[];
@@ -1126,25 +1143,162 @@ export declare const EventMetadataDefinitionSchema: z.ZodObject<{
1126
1143
  abiType: import("@aztec/stdlib/abi").AbiType;
1127
1144
  fieldNames: string[];
1128
1145
  }>;
1129
- export declare const PrivateEventSchema: z.ZodType<any>;
1130
1146
  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
1147
  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
1148
  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
1149
  toBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
1150
+ afterLog: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodObject<{
1151
+ blockNumber: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>;
1152
+ blockHash: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/block").BlockHash>;
1153
+ txHash: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, Buffer<ArrayBuffer>, string>, TxHash, string>;
1154
+ txIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
1155
+ logIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
1156
+ }, "strip", z.ZodTypeAny, {
1157
+ blockNumber: number & {
1158
+ _branding: "BlockNumber";
1159
+ };
1160
+ blockHash: import("@aztec/stdlib/block").BlockHash;
1161
+ txHash: TxHash;
1162
+ txIndex: number;
1163
+ logIndex: number;
1164
+ }, {
1165
+ blockNumber: string | number | bigint;
1166
+ blockHash?: any;
1167
+ txHash: string;
1168
+ txIndex: string | number | bigint;
1169
+ logIndex: string | number | bigint;
1170
+ }>, LogId, {
1171
+ blockNumber: string | number | bigint;
1172
+ blockHash?: any;
1173
+ txHash: string;
1174
+ txIndex: string | number | bigint;
1175
+ logIndex: string | number | bigint;
1176
+ }>>;
1177
+ } & {
1178
+ contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1179
+ scopes: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">;
1136
1180
  }, "strip", z.ZodTypeAny, {
1137
- contractAddress: AztecAddress;
1138
- scopes: AztecAddress[];
1139
1181
  txHash?: TxHash | undefined;
1140
1182
  fromBlock?: BlockNumber | undefined;
1141
1183
  toBlock?: BlockNumber | undefined;
1184
+ afterLog?: LogId | undefined;
1185
+ contractAddress: AztecAddress;
1186
+ scopes: AztecAddress[];
1142
1187
  }, {
1188
+ txHash?: string | undefined;
1189
+ fromBlock?: string | number | bigint | undefined;
1190
+ toBlock?: string | number | bigint | undefined;
1191
+ afterLog?: {
1192
+ blockNumber: string | number | bigint;
1193
+ blockHash?: any;
1194
+ txHash: string;
1195
+ txIndex: string | number | bigint;
1196
+ logIndex: string | number | bigint;
1197
+ } | undefined;
1143
1198
  contractAddress?: any;
1144
1199
  scopes: any[];
1200
+ }>;
1201
+ export declare const PublicEventFilterSchema: z.ZodObject<{
1202
+ 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>>;
1203
+ fromBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
1204
+ toBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
1205
+ afterLog: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodObject<{
1206
+ blockNumber: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>;
1207
+ blockHash: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/block").BlockHash>;
1208
+ txHash: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, Buffer<ArrayBuffer>, string>, TxHash, string>;
1209
+ txIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
1210
+ logIndex: z.ZodPipeline<z.ZodUnion<[z.ZodBigInt, z.ZodNumber, z.ZodString]>, z.ZodNumber>;
1211
+ }, "strip", z.ZodTypeAny, {
1212
+ blockNumber: number & {
1213
+ _branding: "BlockNumber";
1214
+ };
1215
+ blockHash: import("@aztec/stdlib/block").BlockHash;
1216
+ txHash: TxHash;
1217
+ txIndex: number;
1218
+ logIndex: number;
1219
+ }, {
1220
+ blockNumber: string | number | bigint;
1221
+ blockHash?: any;
1222
+ txHash: string;
1223
+ txIndex: string | number | bigint;
1224
+ logIndex: string | number | bigint;
1225
+ }>, LogId, {
1226
+ blockNumber: string | number | bigint;
1227
+ blockHash?: any;
1228
+ txHash: string;
1229
+ txIndex: string | number | bigint;
1230
+ logIndex: string | number | bigint;
1231
+ }>>;
1232
+ } & {
1233
+ contractAddress: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
1234
+ }, "strip", z.ZodTypeAny, {
1235
+ txHash?: TxHash | undefined;
1236
+ fromBlock?: BlockNumber | undefined;
1237
+ toBlock?: BlockNumber | undefined;
1238
+ afterLog?: LogId | undefined;
1239
+ contractAddress?: AztecAddress | undefined;
1240
+ }, {
1145
1241
  txHash?: string | undefined;
1146
1242
  fromBlock?: string | number | bigint | undefined;
1147
1243
  toBlock?: string | number | bigint | undefined;
1244
+ afterLog?: {
1245
+ blockNumber: string | number | bigint;
1246
+ blockHash?: any;
1247
+ txHash: string;
1248
+ txIndex: string | number | bigint;
1249
+ logIndex: string | number | bigint;
1250
+ } | undefined;
1251
+ contractAddress?: any;
1252
+ }>;
1253
+ export declare const PrivateEventSchema: z.ZodType<any>;
1254
+ export declare const PublicEventSchema: z.ZodObject<{
1255
+ event: import("@aztec/stdlib/schemas").ZodFor<AbiDecoded>;
1256
+ metadata: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1257
+ l2BlockNumber: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>;
1258
+ l2BlockHash: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/block").BlockHash>;
1259
+ }, "strip", z.ZodTypeAny, {
1260
+ l2BlockNumber: number & {
1261
+ _branding: "BlockNumber";
1262
+ };
1263
+ l2BlockHash: import("@aztec/stdlib/block").BlockHash;
1264
+ }, {
1265
+ l2BlockNumber: string | number | bigint;
1266
+ l2BlockHash?: any;
1267
+ }>, z.ZodObject<{
1268
+ txHash: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, Buffer<ArrayBuffer>, string>, TxHash, string>;
1269
+ }, "strip", z.ZodTypeAny, {
1270
+ txHash: TxHash;
1271
+ }, {
1272
+ txHash: string;
1273
+ }>>, z.ZodObject<{
1274
+ contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1275
+ }, "strip", z.ZodTypeAny, {
1276
+ contractAddress: AztecAddress;
1277
+ }, {
1278
+ contractAddress?: any;
1279
+ }>>;
1280
+ }, "strip", z.ZodTypeAny, {
1281
+ event?: AbiDecoded;
1282
+ metadata: {
1283
+ l2BlockNumber: number & {
1284
+ _branding: "BlockNumber";
1285
+ };
1286
+ l2BlockHash: import("@aztec/stdlib/block").BlockHash;
1287
+ } & {
1288
+ txHash: TxHash;
1289
+ } & {
1290
+ contractAddress: AztecAddress;
1291
+ };
1292
+ }, {
1293
+ event?: any;
1294
+ metadata: {
1295
+ l2BlockNumber: string | number | bigint;
1296
+ l2BlockHash?: any;
1297
+ } & {
1298
+ txHash: string;
1299
+ } & {
1300
+ contractAddress?: any;
1301
+ };
1148
1302
  }>;
1149
1303
  export declare const ContractMetadataSchema: z.ZodObject<{
1150
1304
  instance: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodIntersection<z.ZodObject<{
@@ -1255,43 +1409,1463 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
1255
1409
  isArtifactRegistered: boolean;
1256
1410
  isContractClassPubliclyRegistered: boolean;
1257
1411
  }>;
1412
+ export declare const ContractFunctionPatternSchema: z.ZodObject<{
1413
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1414
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1415
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1416
+ }, "strip", z.ZodTypeAny, {
1417
+ contract: "*" | AztecAddress;
1418
+ function: string;
1419
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1420
+ }, {
1421
+ contract?: any;
1422
+ function: string;
1423
+ additionalScopes?: "*" | any[] | undefined;
1424
+ }>;
1425
+ export declare const AccountsCapabilitySchema: z.ZodObject<{
1426
+ type: z.ZodLiteral<"accounts">;
1427
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1428
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1429
+ }, "strip", z.ZodTypeAny, {
1430
+ type: "accounts";
1431
+ canGet?: boolean | undefined;
1432
+ canCreateAuthWit?: boolean | undefined;
1433
+ }, {
1434
+ type: "accounts";
1435
+ canGet?: boolean | undefined;
1436
+ canCreateAuthWit?: boolean | undefined;
1437
+ }>;
1438
+ export declare const GrantedAccountsCapabilitySchema: z.ZodObject<{
1439
+ type: z.ZodLiteral<"accounts">;
1440
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1441
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1442
+ } & {
1443
+ accounts: z.ZodArray<z.ZodObject<{
1444
+ alias: z.ZodString;
1445
+ item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1446
+ }, "strip", z.ZodTypeAny, {
1447
+ alias: string;
1448
+ item: AztecAddress;
1449
+ }, {
1450
+ alias: string;
1451
+ item?: any;
1452
+ }>, "many">;
1453
+ }, "strip", z.ZodTypeAny, {
1454
+ type: "accounts";
1455
+ canGet?: boolean | undefined;
1456
+ canCreateAuthWit?: boolean | undefined;
1457
+ accounts: {
1458
+ alias: string;
1459
+ item: AztecAddress;
1460
+ }[];
1461
+ }, {
1462
+ type: "accounts";
1463
+ canGet?: boolean | undefined;
1464
+ canCreateAuthWit?: boolean | undefined;
1465
+ accounts: {
1466
+ alias: string;
1467
+ item?: any;
1468
+ }[];
1469
+ }>;
1470
+ export declare const ContractsCapabilitySchema: z.ZodObject<{
1471
+ type: z.ZodLiteral<"contracts">;
1472
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1473
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1474
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1475
+ }, "strip", z.ZodTypeAny, {
1476
+ type: "contracts";
1477
+ contracts: "*" | AztecAddress[];
1478
+ canRegister?: boolean | undefined;
1479
+ canGetMetadata?: boolean | undefined;
1480
+ }, {
1481
+ type: "contracts";
1482
+ contracts: "*" | any[];
1483
+ canRegister?: boolean | undefined;
1484
+ canGetMetadata?: boolean | undefined;
1485
+ }>;
1486
+ export declare const GrantedContractsCapabilitySchema: z.ZodObject<{
1487
+ type: z.ZodLiteral<"contracts">;
1488
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1489
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1490
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1491
+ }, "strip", z.ZodTypeAny, {
1492
+ type: "contracts";
1493
+ contracts: "*" | AztecAddress[];
1494
+ canRegister?: boolean | undefined;
1495
+ canGetMetadata?: boolean | undefined;
1496
+ }, {
1497
+ type: "contracts";
1498
+ contracts: "*" | any[];
1499
+ canRegister?: boolean | undefined;
1500
+ canGetMetadata?: boolean | undefined;
1501
+ }>;
1502
+ export declare const ContractClassesCapabilitySchema: z.ZodObject<{
1503
+ type: z.ZodLiteral<"contractClasses">;
1504
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
1505
+ canGetMetadata: z.ZodBoolean;
1506
+ }, "strip", z.ZodTypeAny, {
1507
+ type: "contractClasses";
1508
+ classes: "*" | Fr[];
1509
+ canGetMetadata: boolean;
1510
+ }, {
1511
+ type: "contractClasses";
1512
+ classes: "*" | any[];
1513
+ canGetMetadata: boolean;
1514
+ }>;
1515
+ export declare const GrantedContractClassesCapabilitySchema: z.ZodObject<{
1516
+ type: z.ZodLiteral<"contractClasses">;
1517
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
1518
+ canGetMetadata: z.ZodBoolean;
1519
+ }, "strip", z.ZodTypeAny, {
1520
+ type: "contractClasses";
1521
+ classes: "*" | Fr[];
1522
+ canGetMetadata: boolean;
1523
+ }, {
1524
+ type: "contractClasses";
1525
+ classes: "*" | any[];
1526
+ canGetMetadata: boolean;
1527
+ }>;
1528
+ export declare const SimulationCapabilitySchema: z.ZodObject<{
1529
+ type: z.ZodLiteral<"simulation">;
1530
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1531
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1532
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1533
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1534
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1535
+ }, "strip", z.ZodTypeAny, {
1536
+ contract: "*" | AztecAddress;
1537
+ function: string;
1538
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1539
+ }, {
1540
+ contract?: any;
1541
+ function: string;
1542
+ additionalScopes?: "*" | any[] | undefined;
1543
+ }>, "many">]>;
1544
+ }, "strip", z.ZodTypeAny, {
1545
+ scope: "*" | {
1546
+ contract: "*" | AztecAddress;
1547
+ function: string;
1548
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1549
+ }[];
1550
+ }, {
1551
+ scope: "*" | {
1552
+ contract?: any;
1553
+ function: string;
1554
+ additionalScopes?: "*" | any[] | undefined;
1555
+ }[];
1556
+ }>>;
1557
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1558
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1559
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1560
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1561
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1562
+ }, "strip", z.ZodTypeAny, {
1563
+ contract: "*" | AztecAddress;
1564
+ function: string;
1565
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1566
+ }, {
1567
+ contract?: any;
1568
+ function: string;
1569
+ additionalScopes?: "*" | any[] | undefined;
1570
+ }>, "many">]>;
1571
+ }, "strip", z.ZodTypeAny, {
1572
+ scope: "*" | {
1573
+ contract: "*" | AztecAddress;
1574
+ function: string;
1575
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1576
+ }[];
1577
+ }, {
1578
+ scope: "*" | {
1579
+ contract?: any;
1580
+ function: string;
1581
+ additionalScopes?: "*" | any[] | undefined;
1582
+ }[];
1583
+ }>>;
1584
+ }, "strip", z.ZodTypeAny, {
1585
+ type: "simulation";
1586
+ transactions?: {
1587
+ scope: "*" | {
1588
+ contract: "*" | AztecAddress;
1589
+ function: string;
1590
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1591
+ }[];
1592
+ } | undefined;
1593
+ utilities?: {
1594
+ scope: "*" | {
1595
+ contract: "*" | AztecAddress;
1596
+ function: string;
1597
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1598
+ }[];
1599
+ } | undefined;
1600
+ }, {
1601
+ type: "simulation";
1602
+ transactions?: {
1603
+ scope: "*" | {
1604
+ contract?: any;
1605
+ function: string;
1606
+ additionalScopes?: "*" | any[] | undefined;
1607
+ }[];
1608
+ } | undefined;
1609
+ utilities?: {
1610
+ scope: "*" | {
1611
+ contract?: any;
1612
+ function: string;
1613
+ additionalScopes?: "*" | any[] | undefined;
1614
+ }[];
1615
+ } | undefined;
1616
+ }>;
1617
+ export declare const GrantedSimulationCapabilitySchema: z.ZodObject<{
1618
+ type: z.ZodLiteral<"simulation">;
1619
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
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
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1624
+ }, "strip", z.ZodTypeAny, {
1625
+ contract: "*" | AztecAddress;
1626
+ function: string;
1627
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1628
+ }, {
1629
+ contract?: any;
1630
+ function: string;
1631
+ additionalScopes?: "*" | any[] | undefined;
1632
+ }>, "many">]>;
1633
+ }, "strip", z.ZodTypeAny, {
1634
+ scope: "*" | {
1635
+ contract: "*" | AztecAddress;
1636
+ function: string;
1637
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1638
+ }[];
1639
+ }, {
1640
+ scope: "*" | {
1641
+ contract?: any;
1642
+ function: string;
1643
+ additionalScopes?: "*" | any[] | undefined;
1644
+ }[];
1645
+ }>>;
1646
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1647
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1648
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1649
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1650
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1651
+ }, "strip", z.ZodTypeAny, {
1652
+ contract: "*" | AztecAddress;
1653
+ function: string;
1654
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1655
+ }, {
1656
+ contract?: any;
1657
+ function: string;
1658
+ additionalScopes?: "*" | any[] | undefined;
1659
+ }>, "many">]>;
1660
+ }, "strip", z.ZodTypeAny, {
1661
+ scope: "*" | {
1662
+ contract: "*" | AztecAddress;
1663
+ function: string;
1664
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1665
+ }[];
1666
+ }, {
1667
+ scope: "*" | {
1668
+ contract?: any;
1669
+ function: string;
1670
+ additionalScopes?: "*" | any[] | undefined;
1671
+ }[];
1672
+ }>>;
1673
+ }, "strip", z.ZodTypeAny, {
1674
+ type: "simulation";
1675
+ transactions?: {
1676
+ scope: "*" | {
1677
+ contract: "*" | AztecAddress;
1678
+ function: string;
1679
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1680
+ }[];
1681
+ } | undefined;
1682
+ utilities?: {
1683
+ scope: "*" | {
1684
+ contract: "*" | AztecAddress;
1685
+ function: string;
1686
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1687
+ }[];
1688
+ } | undefined;
1689
+ }, {
1690
+ type: "simulation";
1691
+ transactions?: {
1692
+ scope: "*" | {
1693
+ contract?: any;
1694
+ function: string;
1695
+ additionalScopes?: "*" | any[] | undefined;
1696
+ }[];
1697
+ } | undefined;
1698
+ utilities?: {
1699
+ scope: "*" | {
1700
+ contract?: any;
1701
+ function: string;
1702
+ additionalScopes?: "*" | any[] | undefined;
1703
+ }[];
1704
+ } | undefined;
1705
+ }>;
1706
+ export declare const TransactionCapabilitySchema: z.ZodObject<{
1707
+ type: z.ZodLiteral<"transaction">;
1708
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1709
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1710
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1711
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1712
+ }, "strip", z.ZodTypeAny, {
1713
+ contract: "*" | AztecAddress;
1714
+ function: string;
1715
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1716
+ }, {
1717
+ contract?: any;
1718
+ function: string;
1719
+ additionalScopes?: "*" | any[] | undefined;
1720
+ }>, "many">]>;
1721
+ }, "strip", z.ZodTypeAny, {
1722
+ type: "transaction";
1723
+ scope: "*" | {
1724
+ contract: "*" | AztecAddress;
1725
+ function: string;
1726
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1727
+ }[];
1728
+ }, {
1729
+ type: "transaction";
1730
+ scope: "*" | {
1731
+ contract?: any;
1732
+ function: string;
1733
+ additionalScopes?: "*" | any[] | undefined;
1734
+ }[];
1735
+ }>;
1736
+ export declare const GrantedTransactionCapabilitySchema: z.ZodObject<{
1737
+ type: z.ZodLiteral<"transaction">;
1738
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1739
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1740
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1741
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1742
+ }, "strip", z.ZodTypeAny, {
1743
+ contract: "*" | AztecAddress;
1744
+ function: string;
1745
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1746
+ }, {
1747
+ contract?: any;
1748
+ function: string;
1749
+ additionalScopes?: "*" | any[] | undefined;
1750
+ }>, "many">]>;
1751
+ }, "strip", z.ZodTypeAny, {
1752
+ type: "transaction";
1753
+ scope: "*" | {
1754
+ contract: "*" | AztecAddress;
1755
+ function: string;
1756
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1757
+ }[];
1758
+ }, {
1759
+ type: "transaction";
1760
+ scope: "*" | {
1761
+ contract?: any;
1762
+ function: string;
1763
+ additionalScopes?: "*" | any[] | undefined;
1764
+ }[];
1765
+ }>;
1766
+ export declare const DataCapabilitySchema: z.ZodObject<{
1767
+ type: z.ZodLiteral<"data">;
1768
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1769
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1770
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1771
+ }, "strip", z.ZodTypeAny, {
1772
+ contracts: "*" | AztecAddress[];
1773
+ }, {
1774
+ contracts: "*" | any[];
1775
+ }>>;
1776
+ }, "strip", z.ZodTypeAny, {
1777
+ type: "data";
1778
+ addressBook?: boolean | undefined;
1779
+ privateEvents?: {
1780
+ contracts: "*" | AztecAddress[];
1781
+ } | undefined;
1782
+ }, {
1783
+ type: "data";
1784
+ addressBook?: boolean | undefined;
1785
+ privateEvents?: {
1786
+ contracts: "*" | any[];
1787
+ } | undefined;
1788
+ }>;
1789
+ export declare const GrantedDataCapabilitySchema: z.ZodObject<{
1790
+ type: z.ZodLiteral<"data">;
1791
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1792
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1793
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1794
+ }, "strip", z.ZodTypeAny, {
1795
+ contracts: "*" | AztecAddress[];
1796
+ }, {
1797
+ contracts: "*" | any[];
1798
+ }>>;
1799
+ }, "strip", z.ZodTypeAny, {
1800
+ type: "data";
1801
+ addressBook?: boolean | undefined;
1802
+ privateEvents?: {
1803
+ contracts: "*" | AztecAddress[];
1804
+ } | undefined;
1805
+ }, {
1806
+ type: "data";
1807
+ addressBook?: boolean | undefined;
1808
+ privateEvents?: {
1809
+ contracts: "*" | any[];
1810
+ } | undefined;
1811
+ }>;
1812
+ export declare const CapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1813
+ type: z.ZodLiteral<"accounts">;
1814
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1815
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1816
+ }, "strip", z.ZodTypeAny, {
1817
+ type: "accounts";
1818
+ canGet?: boolean | undefined;
1819
+ canCreateAuthWit?: boolean | undefined;
1820
+ }, {
1821
+ type: "accounts";
1822
+ canGet?: boolean | undefined;
1823
+ canCreateAuthWit?: boolean | undefined;
1824
+ }>, z.ZodObject<{
1825
+ type: z.ZodLiteral<"contracts">;
1826
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1827
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1828
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1829
+ }, "strip", z.ZodTypeAny, {
1830
+ type: "contracts";
1831
+ contracts: "*" | AztecAddress[];
1832
+ canRegister?: boolean | undefined;
1833
+ canGetMetadata?: boolean | undefined;
1834
+ }, {
1835
+ type: "contracts";
1836
+ contracts: "*" | any[];
1837
+ canRegister?: boolean | undefined;
1838
+ canGetMetadata?: boolean | undefined;
1839
+ }>, z.ZodObject<{
1840
+ type: z.ZodLiteral<"contractClasses">;
1841
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
1842
+ canGetMetadata: z.ZodBoolean;
1843
+ }, "strip", z.ZodTypeAny, {
1844
+ type: "contractClasses";
1845
+ classes: "*" | Fr[];
1846
+ canGetMetadata: boolean;
1847
+ }, {
1848
+ type: "contractClasses";
1849
+ classes: "*" | any[];
1850
+ canGetMetadata: boolean;
1851
+ }>, z.ZodObject<{
1852
+ type: z.ZodLiteral<"simulation">;
1853
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1854
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1855
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1856
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1857
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1858
+ }, "strip", z.ZodTypeAny, {
1859
+ contract: "*" | AztecAddress;
1860
+ function: string;
1861
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1862
+ }, {
1863
+ contract?: any;
1864
+ function: string;
1865
+ additionalScopes?: "*" | any[] | undefined;
1866
+ }>, "many">]>;
1867
+ }, "strip", z.ZodTypeAny, {
1868
+ scope: "*" | {
1869
+ contract: "*" | AztecAddress;
1870
+ function: string;
1871
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1872
+ }[];
1873
+ }, {
1874
+ scope: "*" | {
1875
+ contract?: any;
1876
+ function: string;
1877
+ additionalScopes?: "*" | any[] | undefined;
1878
+ }[];
1879
+ }>>;
1880
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1881
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1882
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1883
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1884
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1885
+ }, "strip", z.ZodTypeAny, {
1886
+ contract: "*" | AztecAddress;
1887
+ function: string;
1888
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1889
+ }, {
1890
+ contract?: any;
1891
+ function: string;
1892
+ additionalScopes?: "*" | any[] | undefined;
1893
+ }>, "many">]>;
1894
+ }, "strip", z.ZodTypeAny, {
1895
+ scope: "*" | {
1896
+ contract: "*" | AztecAddress;
1897
+ function: string;
1898
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1899
+ }[];
1900
+ }, {
1901
+ scope: "*" | {
1902
+ contract?: any;
1903
+ function: string;
1904
+ additionalScopes?: "*" | any[] | undefined;
1905
+ }[];
1906
+ }>>;
1907
+ }, "strip", z.ZodTypeAny, {
1908
+ type: "simulation";
1909
+ transactions?: {
1910
+ scope: "*" | {
1911
+ contract: "*" | AztecAddress;
1912
+ function: string;
1913
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1914
+ }[];
1915
+ } | undefined;
1916
+ utilities?: {
1917
+ scope: "*" | {
1918
+ contract: "*" | AztecAddress;
1919
+ function: string;
1920
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1921
+ }[];
1922
+ } | undefined;
1923
+ }, {
1924
+ type: "simulation";
1925
+ transactions?: {
1926
+ scope: "*" | {
1927
+ contract?: any;
1928
+ function: string;
1929
+ additionalScopes?: "*" | any[] | undefined;
1930
+ }[];
1931
+ } | undefined;
1932
+ utilities?: {
1933
+ scope: "*" | {
1934
+ contract?: any;
1935
+ function: string;
1936
+ additionalScopes?: "*" | any[] | undefined;
1937
+ }[];
1938
+ } | undefined;
1939
+ }>, z.ZodObject<{
1940
+ type: z.ZodLiteral<"transaction">;
1941
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
1942
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
1943
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
1944
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
1945
+ }, "strip", z.ZodTypeAny, {
1946
+ contract: "*" | AztecAddress;
1947
+ function: string;
1948
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1949
+ }, {
1950
+ contract?: any;
1951
+ function: string;
1952
+ additionalScopes?: "*" | any[] | undefined;
1953
+ }>, "many">]>;
1954
+ }, "strip", z.ZodTypeAny, {
1955
+ type: "transaction";
1956
+ scope: "*" | {
1957
+ contract: "*" | AztecAddress;
1958
+ function: string;
1959
+ additionalScopes?: "*" | AztecAddress[] | undefined;
1960
+ }[];
1961
+ }, {
1962
+ type: "transaction";
1963
+ scope: "*" | {
1964
+ contract?: any;
1965
+ function: string;
1966
+ additionalScopes?: "*" | any[] | undefined;
1967
+ }[];
1968
+ }>, z.ZodObject<{
1969
+ type: z.ZodLiteral<"data">;
1970
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1971
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
1972
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
1973
+ }, "strip", z.ZodTypeAny, {
1974
+ contracts: "*" | AztecAddress[];
1975
+ }, {
1976
+ contracts: "*" | any[];
1977
+ }>>;
1978
+ }, "strip", z.ZodTypeAny, {
1979
+ type: "data";
1980
+ addressBook?: boolean | undefined;
1981
+ privateEvents?: {
1982
+ contracts: "*" | AztecAddress[];
1983
+ } | undefined;
1984
+ }, {
1985
+ type: "data";
1986
+ addressBook?: boolean | undefined;
1987
+ privateEvents?: {
1988
+ contracts: "*" | any[];
1989
+ } | undefined;
1990
+ }>]>;
1991
+ export declare const GrantedCapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1992
+ type: z.ZodLiteral<"accounts">;
1993
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1994
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
1995
+ } & {
1996
+ accounts: z.ZodArray<z.ZodObject<{
1997
+ alias: z.ZodString;
1998
+ item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
1999
+ }, "strip", z.ZodTypeAny, {
2000
+ alias: string;
2001
+ item: AztecAddress;
2002
+ }, {
2003
+ alias: string;
2004
+ item?: any;
2005
+ }>, "many">;
2006
+ }, "strip", z.ZodTypeAny, {
2007
+ type: "accounts";
2008
+ canGet?: boolean | undefined;
2009
+ canCreateAuthWit?: boolean | undefined;
2010
+ accounts: {
2011
+ alias: string;
2012
+ item: AztecAddress;
2013
+ }[];
2014
+ }, {
2015
+ type: "accounts";
2016
+ canGet?: boolean | undefined;
2017
+ canCreateAuthWit?: boolean | undefined;
2018
+ accounts: {
2019
+ alias: string;
2020
+ item?: any;
2021
+ }[];
2022
+ }>, z.ZodObject<{
2023
+ type: z.ZodLiteral<"contracts">;
2024
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2025
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2026
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2027
+ }, "strip", z.ZodTypeAny, {
2028
+ type: "contracts";
2029
+ contracts: "*" | AztecAddress[];
2030
+ canRegister?: boolean | undefined;
2031
+ canGetMetadata?: boolean | undefined;
2032
+ }, {
2033
+ type: "contracts";
2034
+ contracts: "*" | any[];
2035
+ canRegister?: boolean | undefined;
2036
+ canGetMetadata?: boolean | undefined;
2037
+ }>, z.ZodObject<{
2038
+ type: z.ZodLiteral<"contractClasses">;
2039
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
2040
+ canGetMetadata: z.ZodBoolean;
2041
+ }, "strip", z.ZodTypeAny, {
2042
+ type: "contractClasses";
2043
+ classes: "*" | Fr[];
2044
+ canGetMetadata: boolean;
2045
+ }, {
2046
+ type: "contractClasses";
2047
+ classes: "*" | any[];
2048
+ canGetMetadata: boolean;
2049
+ }>, z.ZodObject<{
2050
+ type: z.ZodLiteral<"simulation">;
2051
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2052
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2053
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2054
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2055
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2056
+ }, "strip", z.ZodTypeAny, {
2057
+ contract: "*" | AztecAddress;
2058
+ function: string;
2059
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2060
+ }, {
2061
+ contract?: any;
2062
+ function: string;
2063
+ additionalScopes?: "*" | any[] | undefined;
2064
+ }>, "many">]>;
2065
+ }, "strip", z.ZodTypeAny, {
2066
+ scope: "*" | {
2067
+ contract: "*" | AztecAddress;
2068
+ function: string;
2069
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2070
+ }[];
2071
+ }, {
2072
+ scope: "*" | {
2073
+ contract?: any;
2074
+ function: string;
2075
+ additionalScopes?: "*" | any[] | undefined;
2076
+ }[];
2077
+ }>>;
2078
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2079
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2080
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2081
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2082
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2083
+ }, "strip", z.ZodTypeAny, {
2084
+ contract: "*" | AztecAddress;
2085
+ function: string;
2086
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2087
+ }, {
2088
+ contract?: any;
2089
+ function: string;
2090
+ additionalScopes?: "*" | any[] | undefined;
2091
+ }>, "many">]>;
2092
+ }, "strip", z.ZodTypeAny, {
2093
+ scope: "*" | {
2094
+ contract: "*" | AztecAddress;
2095
+ function: string;
2096
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2097
+ }[];
2098
+ }, {
2099
+ scope: "*" | {
2100
+ contract?: any;
2101
+ function: string;
2102
+ additionalScopes?: "*" | any[] | undefined;
2103
+ }[];
2104
+ }>>;
2105
+ }, "strip", z.ZodTypeAny, {
2106
+ type: "simulation";
2107
+ transactions?: {
2108
+ scope: "*" | {
2109
+ contract: "*" | AztecAddress;
2110
+ function: string;
2111
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2112
+ }[];
2113
+ } | undefined;
2114
+ utilities?: {
2115
+ scope: "*" | {
2116
+ contract: "*" | AztecAddress;
2117
+ function: string;
2118
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2119
+ }[];
2120
+ } | undefined;
2121
+ }, {
2122
+ type: "simulation";
2123
+ transactions?: {
2124
+ scope: "*" | {
2125
+ contract?: any;
2126
+ function: string;
2127
+ additionalScopes?: "*" | any[] | undefined;
2128
+ }[];
2129
+ } | undefined;
2130
+ utilities?: {
2131
+ scope: "*" | {
2132
+ contract?: any;
2133
+ function: string;
2134
+ additionalScopes?: "*" | any[] | undefined;
2135
+ }[];
2136
+ } | undefined;
2137
+ }>, z.ZodObject<{
2138
+ type: z.ZodLiteral<"transaction">;
2139
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2140
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2141
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2142
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2143
+ }, "strip", z.ZodTypeAny, {
2144
+ contract: "*" | AztecAddress;
2145
+ function: string;
2146
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2147
+ }, {
2148
+ contract?: any;
2149
+ function: string;
2150
+ additionalScopes?: "*" | any[] | undefined;
2151
+ }>, "many">]>;
2152
+ }, "strip", z.ZodTypeAny, {
2153
+ type: "transaction";
2154
+ scope: "*" | {
2155
+ contract: "*" | AztecAddress;
2156
+ function: string;
2157
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2158
+ }[];
2159
+ }, {
2160
+ type: "transaction";
2161
+ scope: "*" | {
2162
+ contract?: any;
2163
+ function: string;
2164
+ additionalScopes?: "*" | any[] | undefined;
2165
+ }[];
2166
+ }>, z.ZodObject<{
2167
+ type: z.ZodLiteral<"data">;
2168
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2169
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2170
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2171
+ }, "strip", z.ZodTypeAny, {
2172
+ contracts: "*" | AztecAddress[];
2173
+ }, {
2174
+ contracts: "*" | any[];
2175
+ }>>;
2176
+ }, "strip", z.ZodTypeAny, {
2177
+ type: "data";
2178
+ addressBook?: boolean | undefined;
2179
+ privateEvents?: {
2180
+ contracts: "*" | AztecAddress[];
2181
+ } | undefined;
2182
+ }, {
2183
+ type: "data";
2184
+ addressBook?: boolean | undefined;
2185
+ privateEvents?: {
2186
+ contracts: "*" | any[];
2187
+ } | undefined;
2188
+ }>]>;
2189
+ export declare const AppCapabilitiesSchema: z.ZodObject<{
2190
+ version: z.ZodLiteral<"1.0">;
2191
+ metadata: z.ZodObject<{
2192
+ name: z.ZodString;
2193
+ version: z.ZodString;
2194
+ description: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2195
+ url: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2196
+ icon: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2197
+ }, "strip", z.ZodTypeAny, {
2198
+ name: string;
2199
+ version: string;
2200
+ description?: string | undefined;
2201
+ url?: string | undefined;
2202
+ icon?: string | undefined;
2203
+ }, {
2204
+ name: string;
2205
+ version: string;
2206
+ description?: string | undefined;
2207
+ url?: string | undefined;
2208
+ icon?: string | undefined;
2209
+ }>;
2210
+ capabilities: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2211
+ type: z.ZodLiteral<"accounts">;
2212
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2213
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2214
+ }, "strip", z.ZodTypeAny, {
2215
+ type: "accounts";
2216
+ canGet?: boolean | undefined;
2217
+ canCreateAuthWit?: boolean | undefined;
2218
+ }, {
2219
+ type: "accounts";
2220
+ canGet?: boolean | undefined;
2221
+ canCreateAuthWit?: boolean | undefined;
2222
+ }>, z.ZodObject<{
2223
+ type: z.ZodLiteral<"contracts">;
2224
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2225
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2226
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2227
+ }, "strip", z.ZodTypeAny, {
2228
+ type: "contracts";
2229
+ contracts: "*" | AztecAddress[];
2230
+ canRegister?: boolean | undefined;
2231
+ canGetMetadata?: boolean | undefined;
2232
+ }, {
2233
+ type: "contracts";
2234
+ contracts: "*" | any[];
2235
+ canRegister?: boolean | undefined;
2236
+ canGetMetadata?: boolean | undefined;
2237
+ }>, z.ZodObject<{
2238
+ type: z.ZodLiteral<"contractClasses">;
2239
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
2240
+ canGetMetadata: z.ZodBoolean;
2241
+ }, "strip", z.ZodTypeAny, {
2242
+ type: "contractClasses";
2243
+ classes: "*" | Fr[];
2244
+ canGetMetadata: boolean;
2245
+ }, {
2246
+ type: "contractClasses";
2247
+ classes: "*" | any[];
2248
+ canGetMetadata: boolean;
2249
+ }>, z.ZodObject<{
2250
+ type: z.ZodLiteral<"simulation">;
2251
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2252
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2253
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2254
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2255
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2256
+ }, "strip", z.ZodTypeAny, {
2257
+ contract: "*" | AztecAddress;
2258
+ function: string;
2259
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2260
+ }, {
2261
+ contract?: any;
2262
+ function: string;
2263
+ additionalScopes?: "*" | any[] | undefined;
2264
+ }>, "many">]>;
2265
+ }, "strip", z.ZodTypeAny, {
2266
+ scope: "*" | {
2267
+ contract: "*" | AztecAddress;
2268
+ function: string;
2269
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2270
+ }[];
2271
+ }, {
2272
+ scope: "*" | {
2273
+ contract?: any;
2274
+ function: string;
2275
+ additionalScopes?: "*" | any[] | undefined;
2276
+ }[];
2277
+ }>>;
2278
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2279
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2280
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2281
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2282
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2283
+ }, "strip", z.ZodTypeAny, {
2284
+ contract: "*" | AztecAddress;
2285
+ function: string;
2286
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2287
+ }, {
2288
+ contract?: any;
2289
+ function: string;
2290
+ additionalScopes?: "*" | any[] | undefined;
2291
+ }>, "many">]>;
2292
+ }, "strip", z.ZodTypeAny, {
2293
+ scope: "*" | {
2294
+ contract: "*" | AztecAddress;
2295
+ function: string;
2296
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2297
+ }[];
2298
+ }, {
2299
+ scope: "*" | {
2300
+ contract?: any;
2301
+ function: string;
2302
+ additionalScopes?: "*" | any[] | undefined;
2303
+ }[];
2304
+ }>>;
2305
+ }, "strip", z.ZodTypeAny, {
2306
+ type: "simulation";
2307
+ transactions?: {
2308
+ scope: "*" | {
2309
+ contract: "*" | AztecAddress;
2310
+ function: string;
2311
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2312
+ }[];
2313
+ } | undefined;
2314
+ utilities?: {
2315
+ scope: "*" | {
2316
+ contract: "*" | AztecAddress;
2317
+ function: string;
2318
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2319
+ }[];
2320
+ } | undefined;
2321
+ }, {
2322
+ type: "simulation";
2323
+ transactions?: {
2324
+ scope: "*" | {
2325
+ contract?: any;
2326
+ function: string;
2327
+ additionalScopes?: "*" | any[] | undefined;
2328
+ }[];
2329
+ } | undefined;
2330
+ utilities?: {
2331
+ scope: "*" | {
2332
+ contract?: any;
2333
+ function: string;
2334
+ additionalScopes?: "*" | any[] | undefined;
2335
+ }[];
2336
+ } | undefined;
2337
+ }>, z.ZodObject<{
2338
+ type: z.ZodLiteral<"transaction">;
2339
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2340
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2341
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2342
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2343
+ }, "strip", z.ZodTypeAny, {
2344
+ contract: "*" | AztecAddress;
2345
+ function: string;
2346
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2347
+ }, {
2348
+ contract?: any;
2349
+ function: string;
2350
+ additionalScopes?: "*" | any[] | undefined;
2351
+ }>, "many">]>;
2352
+ }, "strip", z.ZodTypeAny, {
2353
+ type: "transaction";
2354
+ scope: "*" | {
2355
+ contract: "*" | AztecAddress;
2356
+ function: string;
2357
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2358
+ }[];
2359
+ }, {
2360
+ type: "transaction";
2361
+ scope: "*" | {
2362
+ contract?: any;
2363
+ function: string;
2364
+ additionalScopes?: "*" | any[] | undefined;
2365
+ }[];
2366
+ }>, z.ZodObject<{
2367
+ type: z.ZodLiteral<"data">;
2368
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2369
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2370
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2371
+ }, "strip", z.ZodTypeAny, {
2372
+ contracts: "*" | AztecAddress[];
2373
+ }, {
2374
+ contracts: "*" | any[];
2375
+ }>>;
2376
+ }, "strip", z.ZodTypeAny, {
2377
+ type: "data";
2378
+ addressBook?: boolean | undefined;
2379
+ privateEvents?: {
2380
+ contracts: "*" | AztecAddress[];
2381
+ } | undefined;
2382
+ }, {
2383
+ type: "data";
2384
+ addressBook?: boolean | undefined;
2385
+ privateEvents?: {
2386
+ contracts: "*" | any[];
2387
+ } | undefined;
2388
+ }>]>, "many">;
2389
+ behavior: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2390
+ mode: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEnum<["strict", "permissive"]>>;
2391
+ expiration: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
2392
+ }, "strip", z.ZodTypeAny, {
2393
+ mode?: "permissive" | "strict" | undefined;
2394
+ expiration?: number | undefined;
2395
+ }, {
2396
+ mode?: "permissive" | "strict" | undefined;
2397
+ expiration?: number | undefined;
2398
+ }>>;
2399
+ }, "strip", z.ZodTypeAny, {
2400
+ version: "1.0";
2401
+ metadata: {
2402
+ name: string;
2403
+ version: string;
2404
+ description?: string | undefined;
2405
+ url?: string | undefined;
2406
+ icon?: string | undefined;
2407
+ };
2408
+ capabilities: ({
2409
+ type: "accounts";
2410
+ canGet?: boolean | undefined;
2411
+ canCreateAuthWit?: boolean | undefined;
2412
+ } | {
2413
+ type: "contracts";
2414
+ contracts: "*" | AztecAddress[];
2415
+ canRegister?: boolean | undefined;
2416
+ canGetMetadata?: boolean | undefined;
2417
+ } | {
2418
+ type: "contractClasses";
2419
+ classes: "*" | Fr[];
2420
+ canGetMetadata: boolean;
2421
+ } | {
2422
+ type: "simulation";
2423
+ transactions?: {
2424
+ scope: "*" | {
2425
+ contract: "*" | AztecAddress;
2426
+ function: string;
2427
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2428
+ }[];
2429
+ } | undefined;
2430
+ utilities?: {
2431
+ scope: "*" | {
2432
+ contract: "*" | AztecAddress;
2433
+ function: string;
2434
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2435
+ }[];
2436
+ } | undefined;
2437
+ } | {
2438
+ type: "transaction";
2439
+ scope: "*" | {
2440
+ contract: "*" | AztecAddress;
2441
+ function: string;
2442
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2443
+ }[];
2444
+ } | {
2445
+ type: "data";
2446
+ addressBook?: boolean | undefined;
2447
+ privateEvents?: {
2448
+ contracts: "*" | AztecAddress[];
2449
+ } | undefined;
2450
+ })[];
2451
+ behavior?: {
2452
+ mode?: "permissive" | "strict" | undefined;
2453
+ expiration?: number | undefined;
2454
+ } | undefined;
2455
+ }, {
2456
+ version: "1.0";
2457
+ metadata: {
2458
+ name: string;
2459
+ version: string;
2460
+ description?: string | undefined;
2461
+ url?: string | undefined;
2462
+ icon?: string | undefined;
2463
+ };
2464
+ capabilities: ({
2465
+ type: "accounts";
2466
+ canGet?: boolean | undefined;
2467
+ canCreateAuthWit?: boolean | undefined;
2468
+ } | {
2469
+ type: "contracts";
2470
+ contracts: "*" | any[];
2471
+ canRegister?: boolean | undefined;
2472
+ canGetMetadata?: boolean | undefined;
2473
+ } | {
2474
+ type: "contractClasses";
2475
+ classes: "*" | any[];
2476
+ canGetMetadata: boolean;
2477
+ } | {
2478
+ type: "simulation";
2479
+ transactions?: {
2480
+ scope: "*" | {
2481
+ contract?: any;
2482
+ function: string;
2483
+ additionalScopes?: "*" | any[] | undefined;
2484
+ }[];
2485
+ } | undefined;
2486
+ utilities?: {
2487
+ scope: "*" | {
2488
+ contract?: any;
2489
+ function: string;
2490
+ additionalScopes?: "*" | any[] | undefined;
2491
+ }[];
2492
+ } | undefined;
2493
+ } | {
2494
+ type: "transaction";
2495
+ scope: "*" | {
2496
+ contract?: any;
2497
+ function: string;
2498
+ additionalScopes?: "*" | any[] | undefined;
2499
+ }[];
2500
+ } | {
2501
+ type: "data";
2502
+ addressBook?: boolean | undefined;
2503
+ privateEvents?: {
2504
+ contracts: "*" | any[];
2505
+ } | undefined;
2506
+ })[];
2507
+ behavior?: {
2508
+ mode?: "permissive" | "strict" | undefined;
2509
+ expiration?: number | undefined;
2510
+ } | undefined;
2511
+ }>;
2512
+ export declare const WalletCapabilitiesSchema: z.ZodObject<{
2513
+ version: z.ZodLiteral<"1.0">;
2514
+ granted: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2515
+ type: z.ZodLiteral<"accounts">;
2516
+ canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2517
+ canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2518
+ } & {
2519
+ accounts: z.ZodArray<z.ZodObject<{
2520
+ alias: z.ZodString;
2521
+ item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
2522
+ }, "strip", z.ZodTypeAny, {
2523
+ alias: string;
2524
+ item: AztecAddress;
2525
+ }, {
2526
+ alias: string;
2527
+ item?: any;
2528
+ }>, "many">;
2529
+ }, "strip", z.ZodTypeAny, {
2530
+ type: "accounts";
2531
+ canGet?: boolean | undefined;
2532
+ canCreateAuthWit?: boolean | undefined;
2533
+ accounts: {
2534
+ alias: string;
2535
+ item: AztecAddress;
2536
+ }[];
2537
+ }, {
2538
+ type: "accounts";
2539
+ canGet?: boolean | undefined;
2540
+ canCreateAuthWit?: boolean | undefined;
2541
+ accounts: {
2542
+ alias: string;
2543
+ item?: any;
2544
+ }[];
2545
+ }>, z.ZodObject<{
2546
+ type: z.ZodLiteral<"contracts">;
2547
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2548
+ canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2549
+ canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2550
+ }, "strip", z.ZodTypeAny, {
2551
+ type: "contracts";
2552
+ contracts: "*" | AztecAddress[];
2553
+ canRegister?: boolean | undefined;
2554
+ canGetMetadata?: boolean | undefined;
2555
+ }, {
2556
+ type: "contracts";
2557
+ contracts: "*" | any[];
2558
+ canRegister?: boolean | undefined;
2559
+ canGetMetadata?: boolean | undefined;
2560
+ }>, z.ZodObject<{
2561
+ type: z.ZodLiteral<"contractClasses">;
2562
+ classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
2563
+ canGetMetadata: z.ZodBoolean;
2564
+ }, "strip", z.ZodTypeAny, {
2565
+ type: "contractClasses";
2566
+ classes: "*" | Fr[];
2567
+ canGetMetadata: boolean;
2568
+ }, {
2569
+ type: "contractClasses";
2570
+ classes: "*" | any[];
2571
+ canGetMetadata: boolean;
2572
+ }>, z.ZodObject<{
2573
+ type: z.ZodLiteral<"simulation">;
2574
+ transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2575
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2576
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2577
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2578
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2579
+ }, "strip", z.ZodTypeAny, {
2580
+ contract: "*" | AztecAddress;
2581
+ function: string;
2582
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2583
+ }, {
2584
+ contract?: any;
2585
+ function: string;
2586
+ additionalScopes?: "*" | any[] | undefined;
2587
+ }>, "many">]>;
2588
+ }, "strip", z.ZodTypeAny, {
2589
+ scope: "*" | {
2590
+ contract: "*" | AztecAddress;
2591
+ function: string;
2592
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2593
+ }[];
2594
+ }, {
2595
+ scope: "*" | {
2596
+ contract?: any;
2597
+ function: string;
2598
+ additionalScopes?: "*" | any[] | undefined;
2599
+ }[];
2600
+ }>>;
2601
+ utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2602
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2603
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2604
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2605
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2606
+ }, "strip", z.ZodTypeAny, {
2607
+ contract: "*" | AztecAddress;
2608
+ function: string;
2609
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2610
+ }, {
2611
+ contract?: any;
2612
+ function: string;
2613
+ additionalScopes?: "*" | any[] | undefined;
2614
+ }>, "many">]>;
2615
+ }, "strip", z.ZodTypeAny, {
2616
+ scope: "*" | {
2617
+ contract: "*" | AztecAddress;
2618
+ function: string;
2619
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2620
+ }[];
2621
+ }, {
2622
+ scope: "*" | {
2623
+ contract?: any;
2624
+ function: string;
2625
+ additionalScopes?: "*" | any[] | undefined;
2626
+ }[];
2627
+ }>>;
2628
+ }, "strip", z.ZodTypeAny, {
2629
+ type: "simulation";
2630
+ transactions?: {
2631
+ scope: "*" | {
2632
+ contract: "*" | AztecAddress;
2633
+ function: string;
2634
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2635
+ }[];
2636
+ } | undefined;
2637
+ utilities?: {
2638
+ scope: "*" | {
2639
+ contract: "*" | AztecAddress;
2640
+ function: string;
2641
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2642
+ }[];
2643
+ } | undefined;
2644
+ }, {
2645
+ type: "simulation";
2646
+ transactions?: {
2647
+ scope: "*" | {
2648
+ contract?: any;
2649
+ function: string;
2650
+ additionalScopes?: "*" | any[] | undefined;
2651
+ }[];
2652
+ } | undefined;
2653
+ utilities?: {
2654
+ scope: "*" | {
2655
+ contract?: any;
2656
+ function: string;
2657
+ additionalScopes?: "*" | any[] | undefined;
2658
+ }[];
2659
+ } | undefined;
2660
+ }>, z.ZodObject<{
2661
+ type: z.ZodLiteral<"transaction">;
2662
+ scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
2663
+ contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
2664
+ function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
2665
+ additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
2666
+ }, "strip", z.ZodTypeAny, {
2667
+ contract: "*" | AztecAddress;
2668
+ function: string;
2669
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2670
+ }, {
2671
+ contract?: any;
2672
+ function: string;
2673
+ additionalScopes?: "*" | any[] | undefined;
2674
+ }>, "many">]>;
2675
+ }, "strip", z.ZodTypeAny, {
2676
+ type: "transaction";
2677
+ scope: "*" | {
2678
+ contract: "*" | AztecAddress;
2679
+ function: string;
2680
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2681
+ }[];
2682
+ }, {
2683
+ type: "transaction";
2684
+ scope: "*" | {
2685
+ contract?: any;
2686
+ function: string;
2687
+ additionalScopes?: "*" | any[] | undefined;
2688
+ }[];
2689
+ }>, z.ZodObject<{
2690
+ type: z.ZodLiteral<"data">;
2691
+ addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
2692
+ privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
2693
+ contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
2694
+ }, "strip", z.ZodTypeAny, {
2695
+ contracts: "*" | AztecAddress[];
2696
+ }, {
2697
+ contracts: "*" | any[];
2698
+ }>>;
2699
+ }, "strip", z.ZodTypeAny, {
2700
+ type: "data";
2701
+ addressBook?: boolean | undefined;
2702
+ privateEvents?: {
2703
+ contracts: "*" | AztecAddress[];
2704
+ } | undefined;
2705
+ }, {
2706
+ type: "data";
2707
+ addressBook?: boolean | undefined;
2708
+ privateEvents?: {
2709
+ contracts: "*" | any[];
2710
+ } | undefined;
2711
+ }>]>, "many">;
2712
+ wallet: z.ZodObject<{
2713
+ name: z.ZodString;
2714
+ version: z.ZodString;
2715
+ }, "strip", z.ZodTypeAny, {
2716
+ name: string;
2717
+ version: string;
2718
+ }, {
2719
+ name: string;
2720
+ version: string;
2721
+ }>;
2722
+ expiresAt: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
2723
+ }, "strip", z.ZodTypeAny, {
2724
+ version: "1.0";
2725
+ granted: ({
2726
+ type: "accounts";
2727
+ canGet?: boolean | undefined;
2728
+ canCreateAuthWit?: boolean | undefined;
2729
+ accounts: {
2730
+ alias: string;
2731
+ item: AztecAddress;
2732
+ }[];
2733
+ } | {
2734
+ type: "contracts";
2735
+ contracts: "*" | AztecAddress[];
2736
+ canRegister?: boolean | undefined;
2737
+ canGetMetadata?: boolean | undefined;
2738
+ } | {
2739
+ type: "contractClasses";
2740
+ classes: "*" | Fr[];
2741
+ canGetMetadata: boolean;
2742
+ } | {
2743
+ type: "simulation";
2744
+ transactions?: {
2745
+ scope: "*" | {
2746
+ contract: "*" | AztecAddress;
2747
+ function: string;
2748
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2749
+ }[];
2750
+ } | undefined;
2751
+ utilities?: {
2752
+ scope: "*" | {
2753
+ contract: "*" | AztecAddress;
2754
+ function: string;
2755
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2756
+ }[];
2757
+ } | undefined;
2758
+ } | {
2759
+ type: "transaction";
2760
+ scope: "*" | {
2761
+ contract: "*" | AztecAddress;
2762
+ function: string;
2763
+ additionalScopes?: "*" | AztecAddress[] | undefined;
2764
+ }[];
2765
+ } | {
2766
+ type: "data";
2767
+ addressBook?: boolean | undefined;
2768
+ privateEvents?: {
2769
+ contracts: "*" | AztecAddress[];
2770
+ } | undefined;
2771
+ })[];
2772
+ wallet: {
2773
+ name: string;
2774
+ version: string;
2775
+ };
2776
+ expiresAt?: number | undefined;
2777
+ }, {
2778
+ version: "1.0";
2779
+ granted: ({
2780
+ type: "accounts";
2781
+ canGet?: boolean | undefined;
2782
+ canCreateAuthWit?: boolean | undefined;
2783
+ accounts: {
2784
+ alias: string;
2785
+ item?: any;
2786
+ }[];
2787
+ } | {
2788
+ type: "contracts";
2789
+ contracts: "*" | any[];
2790
+ canRegister?: boolean | undefined;
2791
+ canGetMetadata?: boolean | undefined;
2792
+ } | {
2793
+ type: "contractClasses";
2794
+ classes: "*" | any[];
2795
+ canGetMetadata: boolean;
2796
+ } | {
2797
+ type: "simulation";
2798
+ transactions?: {
2799
+ scope: "*" | {
2800
+ contract?: any;
2801
+ function: string;
2802
+ additionalScopes?: "*" | any[] | undefined;
2803
+ }[];
2804
+ } | undefined;
2805
+ utilities?: {
2806
+ scope: "*" | {
2807
+ contract?: any;
2808
+ function: string;
2809
+ additionalScopes?: "*" | any[] | undefined;
2810
+ }[];
2811
+ } | undefined;
2812
+ } | {
2813
+ type: "transaction";
2814
+ scope: "*" | {
2815
+ contract?: any;
2816
+ function: string;
2817
+ additionalScopes?: "*" | any[] | undefined;
2818
+ }[];
2819
+ } | {
2820
+ type: "data";
2821
+ addressBook?: boolean | undefined;
2822
+ privateEvents?: {
2823
+ contracts: "*" | any[];
2824
+ } | undefined;
2825
+ })[];
2826
+ wallet: {
2827
+ name: string;
2828
+ version: string;
2829
+ };
2830
+ expiresAt?: number | undefined;
2831
+ }>;
1258
2832
  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">;
2833
+ name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
1260
2834
  args: z.ZodTuple<any, any>;
1261
2835
  }, "strip", z.ZodTypeAny, {
1262
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2836
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1263
2837
  args: any[];
1264
2838
  }, {
1265
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2839
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1266
2840
  args: any[];
1267
2841
  }>, ...z.ZodObject<{
1268
- name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility">;
2842
+ name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
1269
2843
  args: z.ZodTuple<any, any>;
1270
2844
  }, "strip", z.ZodTypeAny, {
1271
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2845
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1272
2846
  args: any[];
1273
2847
  }, {
1274
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2848
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1275
2849
  args: any[];
1276
2850
  }>[]]>, BatchedResultSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObject<{
1277
- name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility">;
2851
+ name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
1278
2852
  result: z.ZodTypeAny;
1279
2853
  }, "strip", z.ZodTypeAny, {
1280
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2854
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1281
2855
  result?: any;
1282
2856
  }, {
1283
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2857
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1284
2858
  result?: any;
1285
2859
  }>, ...z.ZodObject<{
1286
- name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility">;
2860
+ name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
1287
2861
  result: z.ZodTypeAny;
1288
2862
  }, "strip", z.ZodTypeAny, {
1289
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2863
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1290
2864
  result?: any;
1291
2865
  }, {
1292
- name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "sendTx" | "simulateTx" | "simulateUtility";
2866
+ name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
1293
2867
  result?: any;
1294
2868
  }>[]]>;
1295
2869
  export { BatchedMethodSchema, BatchedResultSchema };
1296
2870
  export declare const WalletSchema: ApiSchemaFor<Wallet>;
1297
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFHTCxLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLFlBQVksRUFDakIsWUFBWSxFQUNiLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3pELE9BQU8sS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxLQUFLLDJCQUEyQixFQUFxQyxNQUFNLHdCQUF3QixDQUFDO0FBQzdHLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN4QyxPQUFPLEVBQW9CLEtBQUssWUFBWSxFQUE2QixNQUFNLHVCQUF1QixDQUFDO0FBQ3ZHLE9BQU8sS0FBSyxFQUFFLGdCQUFnQixFQUFFLElBQUksRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQy9ELE9BQU8sRUFDTCxPQUFPLEVBQ1AsWUFBWSxFQUNaLE1BQU0sRUFDTixlQUFlLEVBRWYsa0JBQWtCLEVBQ2xCLHVCQUF1QixFQUV4QixNQUFNLGtCQUFrQixDQUFDO0FBRTFCLE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxFQUNMLEtBQUssb0JBQW9CLEVBQ3pCLEtBQUssaUJBQWlCLEVBQ3RCLEtBQUssc0JBQXNCLEVBRTNCLEtBQUsseUJBQXlCLEVBQzlCLEtBQUssaUNBQWlDLEVBQ3RDLEtBQUssVUFBVSxF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
2871
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFDTCxLQUFLLFVBQVUsRUFFZixLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixZQUFZLEVBQ2IsTUFBTSxtQkFBbUIsQ0FBQztBQUMzQixPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDekQsT0FBTyxLQUFLLEVBQUUsWUFBWSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDaEUsT0FBTyxFQUFFLEtBQUssMkJBQTJCLEVBQXFDLE1BQU0sd0JBQXdCLENBQUM7QUFDN0csT0FBTyxFQUFFLEdBQUcsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ3hDLE9BQU8sRUFBRSxLQUFLLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUMzQyxPQUFPLEVBQW9CLEtBQUssWUFBWSxFQUE2QixNQUFNLHVCQUF1QixDQUFDO0FBQ3ZHLE9BQU8sS0FBSyxFQUFFLGdCQUFnQixFQUFFLElBQUksRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQy9ELE9BQU8sRUFDTCxPQUFPLEVBQ1AsWUFBWSxFQUNaLE1BQU0sRUFDTixlQUFlLEVBRWYsa0JBQWtCLEVBQ2xCLHNCQUFzQixFQUV2QixNQUFNLGtCQUFrQixDQUFDO0FBRTFCLE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxFQUNMLEtBQUssb0JBQW9CLEVBQ3pCLEtBQUssaUJBQWlCLEVBQ3RCLEtBQUssc0JBQXNCLEVBRTNCLEtBQUss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