@aztec/aztec.js 0.0.1-commit.6a729f7 → 0.0.1-commit.6c354eb4c
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.
- package/dest/api/contract.d.ts +2 -2
- package/dest/api/contract.js +2 -2
- package/dest/api/deployment.d.ts +1 -2
- package/dest/api/deployment.d.ts.map +1 -1
- package/dest/api/deployment.js +0 -1
- package/dest/api/events.d.ts +10 -6
- package/dest/api/events.d.ts.map +1 -1
- package/dest/api/events.js +30 -20
- package/dest/api/fields.d.ts +2 -1
- package/dest/api/fields.d.ts.map +1 -1
- package/dest/api/fields.js +1 -0
- package/dest/api/wallet.d.ts +2 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +1 -1
- package/dest/contract/batch_call.d.ts +3 -3
- package/dest/contract/batch_call.d.ts.map +1 -1
- package/dest/contract/batch_call.js +8 -5
- package/dest/contract/contract_function_interaction.d.ts +3 -12
- package/dest/contract/contract_function_interaction.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.js +10 -7
- package/dest/contract/deploy_method.d.ts +19 -6
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +25 -10
- package/dest/contract/get_gas_limits.js +3 -3
- package/dest/contract/interaction_options.d.ts +8 -1
- package/dest/contract/interaction_options.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts +10 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.js +498 -59
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -13
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-class-registry.js +12 -258
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.js +19 -1
- package/dest/contract/protocol_contracts/public-checks.d.ts +1 -1
- package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/public-checks.js +19 -1
- package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
- package/dest/fee/private_fee_payment_method.js +10 -10
- package/dest/fee/public_fee_payment_method.js +10 -10
- package/dest/fee/sponsored_fee_payment.js +3 -3
- package/dest/wallet/capabilities.d.ts +13 -5
- package/dest/wallet/capabilities.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.d.ts +15 -4
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.js +26 -0
- package/dest/wallet/wallet.d.ts +297 -89
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +35 -25
- package/package.json +20 -11
- package/src/api/contract.ts +2 -2
- package/src/api/deployment.ts +0 -1
- package/src/api/events.ts +35 -27
- package/src/api/fields.ts +1 -0
- package/src/api/wallet.ts +5 -1
- package/src/contract/batch_call.ts +7 -12
- package/src/contract/contract_function_interaction.ts +17 -7
- package/src/contract/deploy_method.ts +48 -14
- package/src/contract/get_gas_limits.ts +3 -3
- package/src/contract/interaction_options.ts +7 -0
- package/src/contract/protocol_contracts/auth-registry.ts +237 -37
- package/src/contract/protocol_contracts/contract-class-registry.ts +3 -145
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +3 -1
- package/src/contract/protocol_contracts/public-checks.ts +3 -1
- package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
- package/src/fee/private_fee_payment_method.ts +7 -7
- package/src/fee/public_fee_payment_method.ts +8 -8
- package/src/fee/sponsored_fee_payment.ts +3 -3
- package/src/wallet/capabilities.ts +13 -4
- package/src/wallet/deploy_account_method.ts +39 -2
- package/src/wallet/wallet.ts +88 -38
- package/dest/deployment/broadcast_function.d.ts +0 -24
- package/dest/deployment/broadcast_function.d.ts.map +0 -1
- package/dest/deployment/broadcast_function.js +0 -74
- package/src/deployment/broadcast_function.ts +0 -148
package/dest/wallet/wallet.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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
|
|
4
|
+
import { type AbiDecoded, type ContractArtifact, type EventMetadataDefinition, FunctionCall } from '@aztec/stdlib/abi';
|
|
5
5
|
import { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
6
6
|
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
7
7
|
import { type ContractInstanceWithAddress } from '@aztec/stdlib/contract';
|
|
8
8
|
import { Gas } from '@aztec/stdlib/gas';
|
|
9
9
|
import { type ApiSchemaFor } from '@aztec/stdlib/schemas';
|
|
10
10
|
import type { ExecutionPayload, InTx } from '@aztec/stdlib/tx';
|
|
11
|
-
import { Capsule, HashedValues, TxHash, TxProfileResult, TxSimulationResult,
|
|
11
|
+
import { Capsule, HashedValues, TxHash, TxProfileResult, TxSimulationResult, UtilityExecutionResult } from '@aztec/stdlib/tx';
|
|
12
12
|
import { z } from 'zod';
|
|
13
13
|
import { type FeeEstimationOptions, type GasSettingsOption, type InteractionWaitOptions, type ProfileInteractionOptions, type SendInteractionOptionsWithoutWait, type SendReturn, type SimulateInteractionOptions } from '../contract/interaction_options.js';
|
|
14
14
|
import type { CallIntent, IntentInnerHash } from '../utils/authwit.js';
|
|
@@ -97,35 +97,57 @@ export type BatchResults<T extends readonly BatchedMethod[]> = {
|
|
|
97
97
|
[K in keyof T]: BatchedMethodResultWrapper<T[K]>;
|
|
98
98
|
};
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* Base filter options for event queries.
|
|
101
101
|
*/
|
|
102
|
-
export type
|
|
103
|
-
/** The address of the contract that emitted the events. */
|
|
104
|
-
contractAddress: AztecAddress;
|
|
105
|
-
/** Addresses of accounts that are in scope for this filter. */
|
|
106
|
-
scopes: AztecAddress[];
|
|
102
|
+
export type EventFilterBase = {
|
|
107
103
|
/** Transaction in which the events were emitted. */
|
|
108
104
|
txHash?: TxHash;
|
|
109
105
|
/** The block number from which to start fetching events (inclusive).
|
|
110
106
|
* Optional. If provided, it must be greater or equal than 1.
|
|
111
107
|
* Defaults to the initial L2 block number (INITIAL_L2_BLOCK_NUM).
|
|
112
|
-
|
|
108
|
+
*/
|
|
113
109
|
fromBlock?: BlockNumber;
|
|
114
110
|
/** The block number until which to fetch logs (not inclusive).
|
|
115
111
|
* Optional. If provided, it must be greater than fromBlock.
|
|
116
|
-
* Defaults to the latest known block to PXE + 1.
|
|
117
112
|
*/
|
|
118
113
|
toBlock?: BlockNumber;
|
|
119
114
|
};
|
|
120
115
|
/**
|
|
121
|
-
*
|
|
116
|
+
* Filter options when querying private events.
|
|
117
|
+
*/
|
|
118
|
+
export type PrivateEventFilter = EventFilterBase & {
|
|
119
|
+
/** The address of the contract that emitted the events. */
|
|
120
|
+
contractAddress: AztecAddress;
|
|
121
|
+
/** Addresses of accounts that are in scope for this filter. */
|
|
122
|
+
scopes: AztecAddress[];
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Filter options when querying public events.
|
|
122
126
|
*/
|
|
123
|
-
export type
|
|
127
|
+
export type PublicEventFilter = EventFilterBase & {
|
|
128
|
+
/** The address of the contract that emitted the events. */
|
|
129
|
+
contractAddress?: AztecAddress;
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* An ABI decoded event with associated metadata.
|
|
133
|
+
* @typeParam T - The decoded event type
|
|
134
|
+
* @typeParam M - Additional metadata fields (empty by default)
|
|
135
|
+
*/
|
|
136
|
+
export type Event<T, M extends object = object> = {
|
|
124
137
|
/** The ABI decoded event */
|
|
125
138
|
event: T;
|
|
126
139
|
/** Metadata describing event context information such as tx and block */
|
|
127
|
-
metadata: InTx;
|
|
140
|
+
metadata: InTx & M;
|
|
128
141
|
};
|
|
142
|
+
/** An ABI decoded private event with associated metadata. */
|
|
143
|
+
export type PrivateEvent<T> = Event<T>;
|
|
144
|
+
/** An ABI decoded public event with associated metadata (includes contract address). */
|
|
145
|
+
export type PublicEvent<T> = Event<T, {
|
|
146
|
+
/**
|
|
147
|
+
* Address of the contract that emitted this event
|
|
148
|
+
*/
|
|
149
|
+
contractAddress: AztecAddress;
|
|
150
|
+
}>;
|
|
129
151
|
/**
|
|
130
152
|
* Contract metadata including deployment and registration status.
|
|
131
153
|
*/
|
|
@@ -150,6 +172,15 @@ export type ContractClassMetadata = {
|
|
|
150
172
|
/** Whether the contract class is publicly registered on-chain */
|
|
151
173
|
isContractClassPubliclyRegistered: boolean;
|
|
152
174
|
};
|
|
175
|
+
/**
|
|
176
|
+
* Options for executing a utility function call.
|
|
177
|
+
*/
|
|
178
|
+
export type ExecuteUtilityOptions = {
|
|
179
|
+
/** The scope for the utility execution (determines which notes and keys are visible). */
|
|
180
|
+
scope: AztecAddress;
|
|
181
|
+
/** Optional auth witnesses to use during execution. */
|
|
182
|
+
authWitnesses?: AuthWitness[];
|
|
183
|
+
};
|
|
153
184
|
/**
|
|
154
185
|
* The wallet interface.
|
|
155
186
|
*/
|
|
@@ -163,47 +194,19 @@ export type Wallet = {
|
|
|
163
194
|
getAccounts(): Promise<Aliased<AztecAddress>[]>;
|
|
164
195
|
registerContract(instance: ContractInstanceWithAddress, artifact?: ContractArtifact, secretKey?: Fr): Promise<ContractInstanceWithAddress>;
|
|
165
196
|
simulateTx(exec: ExecutionPayload, opts: SimulateOptions): Promise<TxSimulationResult>;
|
|
166
|
-
|
|
197
|
+
executeUtility(call: FunctionCall, opts: ExecuteUtilityOptions): Promise<UtilityExecutionResult>;
|
|
167
198
|
profileTx(exec: ExecutionPayload, opts: ProfileOptions): Promise<TxProfileResult>;
|
|
168
199
|
sendTx<W extends InteractionWaitOptions = undefined>(exec: ExecutionPayload, opts: SendOptions<W>): Promise<SendReturn<W>>;
|
|
169
200
|
createAuthWit(from: AztecAddress, messageHashOrIntent: IntentInnerHash | CallIntent): Promise<AuthWitness>;
|
|
170
201
|
requestCapabilities(manifest: AppCapabilities): Promise<WalletCapabilities>;
|
|
171
202
|
batch<const T extends readonly BatchedMethod[]>(methods: T): Promise<BatchResults<T>>;
|
|
172
203
|
};
|
|
173
|
-
export declare const FunctionCallSchema: z.ZodObject<{
|
|
174
|
-
name: z.ZodString;
|
|
175
|
-
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
176
|
-
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
177
|
-
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
178
|
-
isStatic: z.ZodBoolean;
|
|
179
|
-
hideMsgSender: z.ZodBoolean;
|
|
180
|
-
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
181
|
-
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
182
|
-
}, "strip", z.ZodTypeAny, {
|
|
183
|
-
name: string;
|
|
184
|
-
to: AztecAddress;
|
|
185
|
-
selector: import("@aztec/stdlib/abi").FunctionSelector;
|
|
186
|
-
type: FunctionType;
|
|
187
|
-
isStatic: boolean;
|
|
188
|
-
hideMsgSender: boolean;
|
|
189
|
-
args: Fr[];
|
|
190
|
-
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
191
|
-
}, {
|
|
192
|
-
name: string;
|
|
193
|
-
to?: any;
|
|
194
|
-
selector?: any;
|
|
195
|
-
type: FunctionType;
|
|
196
|
-
isStatic: boolean;
|
|
197
|
-
hideMsgSender: boolean;
|
|
198
|
-
args: any[];
|
|
199
|
-
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
200
|
-
}>;
|
|
201
204
|
export declare const ExecutionPayloadSchema: z.ZodObject<{
|
|
202
|
-
calls: z.ZodArray<z.ZodObject<{
|
|
205
|
+
calls: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
203
206
|
name: z.ZodString;
|
|
204
207
|
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
205
208
|
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
206
|
-
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
209
|
+
type: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
|
|
207
210
|
isStatic: z.ZodBoolean;
|
|
208
211
|
hideMsgSender: z.ZodBoolean;
|
|
209
212
|
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
@@ -212,7 +215,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
|
|
|
212
215
|
name: string;
|
|
213
216
|
to: AztecAddress;
|
|
214
217
|
selector: import("@aztec/stdlib/abi").FunctionSelector;
|
|
215
|
-
type: FunctionType;
|
|
218
|
+
type: import("@aztec/stdlib/abi").FunctionType;
|
|
216
219
|
isStatic: boolean;
|
|
217
220
|
hideMsgSender: boolean;
|
|
218
221
|
args: Fr[];
|
|
@@ -221,7 +224,16 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
|
|
|
221
224
|
name: string;
|
|
222
225
|
to?: any;
|
|
223
226
|
selector?: any;
|
|
224
|
-
type: FunctionType;
|
|
227
|
+
type: import("@aztec/stdlib/abi").FunctionType;
|
|
228
|
+
isStatic: boolean;
|
|
229
|
+
hideMsgSender: boolean;
|
|
230
|
+
args: any[];
|
|
231
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
232
|
+
}>, FunctionCall, {
|
|
233
|
+
name: string;
|
|
234
|
+
to?: any;
|
|
235
|
+
selector?: any;
|
|
236
|
+
type: import("@aztec/stdlib/abi").FunctionType;
|
|
225
237
|
isStatic: boolean;
|
|
226
238
|
hideMsgSender: boolean;
|
|
227
239
|
args: any[];
|
|
@@ -232,16 +244,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
|
|
|
232
244
|
extraHashedArgs: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<HashedValues>, "many">;
|
|
233
245
|
feePayer: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
|
|
234
246
|
}, "strip", z.ZodTypeAny, {
|
|
235
|
-
calls:
|
|
236
|
-
name: string;
|
|
237
|
-
to: AztecAddress;
|
|
238
|
-
selector: import("@aztec/stdlib/abi").FunctionSelector;
|
|
239
|
-
type: FunctionType;
|
|
240
|
-
isStatic: boolean;
|
|
241
|
-
hideMsgSender: boolean;
|
|
242
|
-
args: Fr[];
|
|
243
|
-
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
244
|
-
}[];
|
|
247
|
+
calls: FunctionCall[];
|
|
245
248
|
authWitnesses: AuthWitness[];
|
|
246
249
|
capsules: Capsule[];
|
|
247
250
|
extraHashedArgs: HashedValues[];
|
|
@@ -251,7 +254,7 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
|
|
|
251
254
|
name: string;
|
|
252
255
|
to?: any;
|
|
253
256
|
selector?: any;
|
|
254
|
-
type: FunctionType;
|
|
257
|
+
type: import("@aztec/stdlib/abi").FunctionType;
|
|
255
258
|
isStatic: boolean;
|
|
256
259
|
hideMsgSender: boolean;
|
|
257
260
|
args: any[];
|
|
@@ -635,6 +638,7 @@ export declare const SendOptionsSchema: z.ZodObject<{
|
|
|
635
638
|
interval?: number | undefined;
|
|
636
639
|
dontThrowOnRevert?: boolean | undefined;
|
|
637
640
|
}>]>>;
|
|
641
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">>;
|
|
638
642
|
}, "strip", z.ZodTypeAny, {
|
|
639
643
|
from: AztecAddress;
|
|
640
644
|
authWitnesses?: AuthWitness[] | undefined;
|
|
@@ -659,6 +663,7 @@ export declare const SendOptionsSchema: z.ZodObject<{
|
|
|
659
663
|
interval?: number | undefined;
|
|
660
664
|
dontThrowOnRevert?: boolean | undefined;
|
|
661
665
|
} | undefined;
|
|
666
|
+
additionalScopes?: AztecAddress[] | undefined;
|
|
662
667
|
}, {
|
|
663
668
|
from?: any;
|
|
664
669
|
authWitnesses?: string[] | undefined;
|
|
@@ -689,6 +694,7 @@ export declare const SendOptionsSchema: z.ZodObject<{
|
|
|
689
694
|
interval?: number | undefined;
|
|
690
695
|
dontThrowOnRevert?: boolean | undefined;
|
|
691
696
|
} | undefined;
|
|
697
|
+
additionalScopes?: any[] | undefined;
|
|
692
698
|
}>;
|
|
693
699
|
export declare const SimulateOptionsSchema: z.ZodObject<{
|
|
694
700
|
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
@@ -814,6 +820,7 @@ export declare const SimulateOptionsSchema: z.ZodObject<{
|
|
|
814
820
|
skipTxValidation: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
815
821
|
skipFeeEnforcement: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
816
822
|
includeMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
823
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">>;
|
|
817
824
|
}, "strip", z.ZodTypeAny, {
|
|
818
825
|
from: AztecAddress;
|
|
819
826
|
authWitnesses?: AuthWitness[] | undefined;
|
|
@@ -837,6 +844,7 @@ export declare const SimulateOptionsSchema: z.ZodObject<{
|
|
|
837
844
|
skipTxValidation?: boolean | undefined;
|
|
838
845
|
skipFeeEnforcement?: boolean | undefined;
|
|
839
846
|
includeMetadata?: boolean | undefined;
|
|
847
|
+
additionalScopes?: AztecAddress[] | undefined;
|
|
840
848
|
}, {
|
|
841
849
|
from?: any;
|
|
842
850
|
authWitnesses?: string[] | undefined;
|
|
@@ -866,6 +874,7 @@ export declare const SimulateOptionsSchema: z.ZodObject<{
|
|
|
866
874
|
skipTxValidation?: boolean | undefined;
|
|
867
875
|
skipFeeEnforcement?: boolean | undefined;
|
|
868
876
|
includeMetadata?: boolean | undefined;
|
|
877
|
+
additionalScopes?: any[] | undefined;
|
|
869
878
|
}>;
|
|
870
879
|
export declare const ProfileOptionsSchema: z.ZodObject<{
|
|
871
880
|
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
@@ -991,6 +1000,7 @@ export declare const ProfileOptionsSchema: z.ZodObject<{
|
|
|
991
1000
|
skipTxValidation: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
992
1001
|
skipFeeEnforcement: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
993
1002
|
includeMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1003
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">>;
|
|
994
1004
|
} & {
|
|
995
1005
|
profileMode: z.ZodEnum<["gates", "execution-steps", "full"]>;
|
|
996
1006
|
skipProofGeneration: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
@@ -1017,6 +1027,7 @@ export declare const ProfileOptionsSchema: z.ZodObject<{
|
|
|
1017
1027
|
skipTxValidation?: boolean | undefined;
|
|
1018
1028
|
skipFeeEnforcement?: boolean | undefined;
|
|
1019
1029
|
includeMetadata?: boolean | undefined;
|
|
1030
|
+
additionalScopes?: AztecAddress[] | undefined;
|
|
1020
1031
|
profileMode: "execution-steps" | "full" | "gates";
|
|
1021
1032
|
skipProofGeneration?: boolean | undefined;
|
|
1022
1033
|
}, {
|
|
@@ -1048,6 +1059,7 @@ export declare const ProfileOptionsSchema: z.ZodObject<{
|
|
|
1048
1059
|
skipTxValidation?: boolean | undefined;
|
|
1049
1060
|
skipFeeEnforcement?: boolean | undefined;
|
|
1050
1061
|
includeMetadata?: boolean | undefined;
|
|
1062
|
+
additionalScopes?: any[] | undefined;
|
|
1051
1063
|
profileMode: "execution-steps" | "full" | "gates";
|
|
1052
1064
|
skipProofGeneration?: boolean | undefined;
|
|
1053
1065
|
}>;
|
|
@@ -1062,11 +1074,11 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1062
1074
|
innerHash?: any;
|
|
1063
1075
|
}>, z.ZodObject<{
|
|
1064
1076
|
caller: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1065
|
-
call: z.ZodObject<{
|
|
1077
|
+
call: z.ZodEffects<z.ZodObject<{
|
|
1066
1078
|
name: z.ZodString;
|
|
1067
1079
|
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1068
1080
|
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
1069
|
-
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
1081
|
+
type: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
|
|
1070
1082
|
isStatic: z.ZodBoolean;
|
|
1071
1083
|
hideMsgSender: z.ZodBoolean;
|
|
1072
1084
|
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
@@ -1075,7 +1087,7 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1075
1087
|
name: string;
|
|
1076
1088
|
to: AztecAddress;
|
|
1077
1089
|
selector: import("@aztec/stdlib/abi").FunctionSelector;
|
|
1078
|
-
type: FunctionType;
|
|
1090
|
+
type: import("@aztec/stdlib/abi").FunctionType;
|
|
1079
1091
|
isStatic: boolean;
|
|
1080
1092
|
hideMsgSender: boolean;
|
|
1081
1093
|
args: Fr[];
|
|
@@ -1084,31 +1096,31 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1084
1096
|
name: string;
|
|
1085
1097
|
to?: any;
|
|
1086
1098
|
selector?: any;
|
|
1087
|
-
type: FunctionType;
|
|
1099
|
+
type: import("@aztec/stdlib/abi").FunctionType;
|
|
1088
1100
|
isStatic: boolean;
|
|
1089
1101
|
hideMsgSender: boolean;
|
|
1090
1102
|
args: any[];
|
|
1091
1103
|
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1092
|
-
}
|
|
1093
|
-
}, "strip", z.ZodTypeAny, {
|
|
1094
|
-
caller: AztecAddress;
|
|
1095
|
-
call: {
|
|
1104
|
+
}>, FunctionCall, {
|
|
1096
1105
|
name: string;
|
|
1097
|
-
to
|
|
1098
|
-
selector
|
|
1099
|
-
type: FunctionType;
|
|
1106
|
+
to?: any;
|
|
1107
|
+
selector?: any;
|
|
1108
|
+
type: import("@aztec/stdlib/abi").FunctionType;
|
|
1100
1109
|
isStatic: boolean;
|
|
1101
1110
|
hideMsgSender: boolean;
|
|
1102
|
-
args:
|
|
1111
|
+
args: any[];
|
|
1103
1112
|
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1104
|
-
}
|
|
1113
|
+
}>;
|
|
1114
|
+
}, "strip", z.ZodTypeAny, {
|
|
1115
|
+
caller: AztecAddress;
|
|
1116
|
+
call: FunctionCall;
|
|
1105
1117
|
}, {
|
|
1106
1118
|
caller?: any;
|
|
1107
1119
|
call: {
|
|
1108
1120
|
name: string;
|
|
1109
1121
|
to?: any;
|
|
1110
1122
|
selector?: any;
|
|
1111
|
-
type: FunctionType;
|
|
1123
|
+
type: import("@aztec/stdlib/abi").FunctionType;
|
|
1112
1124
|
isStatic: boolean;
|
|
1113
1125
|
hideMsgSender: boolean;
|
|
1114
1126
|
args: any[];
|
|
@@ -1128,25 +1140,92 @@ export declare const EventMetadataDefinitionSchema: z.ZodObject<{
|
|
|
1128
1140
|
abiType: import("@aztec/stdlib/abi").AbiType;
|
|
1129
1141
|
fieldNames: string[];
|
|
1130
1142
|
}>;
|
|
1131
|
-
export declare const PrivateEventSchema: z.ZodType<any>;
|
|
1132
1143
|
export declare const PrivateEventFilterSchema: z.ZodObject<{
|
|
1133
|
-
contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1134
|
-
scopes: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">;
|
|
1135
1144
|
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>>;
|
|
1136
1145
|
fromBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
|
|
1137
1146
|
toBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
|
|
1147
|
+
} & {
|
|
1148
|
+
contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1149
|
+
scopes: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">;
|
|
1138
1150
|
}, "strip", z.ZodTypeAny, {
|
|
1139
|
-
contractAddress: AztecAddress;
|
|
1140
|
-
scopes: AztecAddress[];
|
|
1141
1151
|
txHash?: TxHash | undefined;
|
|
1142
1152
|
fromBlock?: BlockNumber | undefined;
|
|
1143
1153
|
toBlock?: BlockNumber | undefined;
|
|
1154
|
+
contractAddress: AztecAddress;
|
|
1155
|
+
scopes: AztecAddress[];
|
|
1144
1156
|
}, {
|
|
1157
|
+
txHash?: string | undefined;
|
|
1158
|
+
fromBlock?: string | number | bigint | undefined;
|
|
1159
|
+
toBlock?: string | number | bigint | undefined;
|
|
1145
1160
|
contractAddress?: any;
|
|
1146
1161
|
scopes: any[];
|
|
1162
|
+
}>;
|
|
1163
|
+
export declare const PublicEventFilterSchema: z.ZodObject<{
|
|
1164
|
+
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>>;
|
|
1165
|
+
fromBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
|
|
1166
|
+
toBlock: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
|
|
1167
|
+
} & {
|
|
1168
|
+
contractAddress: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
|
|
1169
|
+
}, "strip", z.ZodTypeAny, {
|
|
1170
|
+
txHash?: TxHash | undefined;
|
|
1171
|
+
fromBlock?: BlockNumber | undefined;
|
|
1172
|
+
toBlock?: BlockNumber | undefined;
|
|
1173
|
+
contractAddress?: AztecAddress | undefined;
|
|
1174
|
+
}, {
|
|
1147
1175
|
txHash?: string | undefined;
|
|
1148
1176
|
fromBlock?: string | number | bigint | undefined;
|
|
1149
1177
|
toBlock?: string | number | bigint | undefined;
|
|
1178
|
+
contractAddress?: any;
|
|
1179
|
+
}>;
|
|
1180
|
+
export declare const PrivateEventSchema: z.ZodType<any>;
|
|
1181
|
+
export declare const PublicEventSchema: z.ZodObject<{
|
|
1182
|
+
event: import("@aztec/stdlib/schemas").ZodFor<AbiDecoded>;
|
|
1183
|
+
metadata: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1184
|
+
l2BlockNumber: z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>;
|
|
1185
|
+
l2BlockHash: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/block").BlockHash>;
|
|
1186
|
+
}, "strip", z.ZodTypeAny, {
|
|
1187
|
+
l2BlockNumber: number & {
|
|
1188
|
+
_branding: "BlockNumber";
|
|
1189
|
+
};
|
|
1190
|
+
l2BlockHash: import("@aztec/stdlib/block").BlockHash;
|
|
1191
|
+
}, {
|
|
1192
|
+
l2BlockNumber: string | number | bigint;
|
|
1193
|
+
l2BlockHash?: any;
|
|
1194
|
+
}>, z.ZodObject<{
|
|
1195
|
+
txHash: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, Buffer<ArrayBuffer>, string>, TxHash, string>;
|
|
1196
|
+
}, "strip", z.ZodTypeAny, {
|
|
1197
|
+
txHash: TxHash;
|
|
1198
|
+
}, {
|
|
1199
|
+
txHash: string;
|
|
1200
|
+
}>>, z.ZodObject<{
|
|
1201
|
+
contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1202
|
+
}, "strip", z.ZodTypeAny, {
|
|
1203
|
+
contractAddress: AztecAddress;
|
|
1204
|
+
}, {
|
|
1205
|
+
contractAddress?: any;
|
|
1206
|
+
}>>;
|
|
1207
|
+
}, "strip", z.ZodTypeAny, {
|
|
1208
|
+
event: AbiDecoded;
|
|
1209
|
+
metadata: {
|
|
1210
|
+
l2BlockNumber: number & {
|
|
1211
|
+
_branding: "BlockNumber";
|
|
1212
|
+
};
|
|
1213
|
+
l2BlockHash: import("@aztec/stdlib/block").BlockHash;
|
|
1214
|
+
} & {
|
|
1215
|
+
txHash: TxHash;
|
|
1216
|
+
} & {
|
|
1217
|
+
contractAddress: AztecAddress;
|
|
1218
|
+
};
|
|
1219
|
+
}, {
|
|
1220
|
+
event?: any;
|
|
1221
|
+
metadata: {
|
|
1222
|
+
l2BlockNumber: string | number | bigint;
|
|
1223
|
+
l2BlockHash?: any;
|
|
1224
|
+
} & {
|
|
1225
|
+
txHash: string;
|
|
1226
|
+
} & {
|
|
1227
|
+
contractAddress?: any;
|
|
1228
|
+
};
|
|
1150
1229
|
}>;
|
|
1151
1230
|
export declare const ContractMetadataSchema: z.ZodObject<{
|
|
1152
1231
|
instance: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodIntersection<z.ZodObject<{
|
|
@@ -1260,12 +1339,15 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
|
|
|
1260
1339
|
export declare const ContractFunctionPatternSchema: z.ZodObject<{
|
|
1261
1340
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1262
1341
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1342
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1263
1343
|
}, "strip", z.ZodTypeAny, {
|
|
1264
1344
|
contract: "*" | AztecAddress;
|
|
1265
1345
|
function: string;
|
|
1346
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1266
1347
|
}, {
|
|
1267
1348
|
contract?: any;
|
|
1268
1349
|
function: string;
|
|
1350
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1269
1351
|
}>;
|
|
1270
1352
|
export declare const AccountsCapabilitySchema: z.ZodObject<{
|
|
1271
1353
|
type: z.ZodLiteral<"accounts">;
|
|
@@ -1376,44 +1458,54 @@ export declare const SimulationCapabilitySchema: z.ZodObject<{
|
|
|
1376
1458
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1377
1459
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1378
1460
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1461
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1379
1462
|
}, "strip", z.ZodTypeAny, {
|
|
1380
1463
|
contract: "*" | AztecAddress;
|
|
1381
1464
|
function: string;
|
|
1465
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1382
1466
|
}, {
|
|
1383
1467
|
contract?: any;
|
|
1384
1468
|
function: string;
|
|
1469
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1385
1470
|
}>, "many">]>;
|
|
1386
1471
|
}, "strip", z.ZodTypeAny, {
|
|
1387
1472
|
scope: "*" | {
|
|
1388
1473
|
contract: "*" | AztecAddress;
|
|
1389
1474
|
function: string;
|
|
1475
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1390
1476
|
}[];
|
|
1391
1477
|
}, {
|
|
1392
1478
|
scope: "*" | {
|
|
1393
1479
|
contract?: any;
|
|
1394
1480
|
function: string;
|
|
1481
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1395
1482
|
}[];
|
|
1396
1483
|
}>>;
|
|
1397
1484
|
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1398
1485
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1399
1486
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1400
1487
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1488
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1401
1489
|
}, "strip", z.ZodTypeAny, {
|
|
1402
1490
|
contract: "*" | AztecAddress;
|
|
1403
1491
|
function: string;
|
|
1492
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1404
1493
|
}, {
|
|
1405
1494
|
contract?: any;
|
|
1406
1495
|
function: string;
|
|
1496
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1407
1497
|
}>, "many">]>;
|
|
1408
1498
|
}, "strip", z.ZodTypeAny, {
|
|
1409
1499
|
scope: "*" | {
|
|
1410
1500
|
contract: "*" | AztecAddress;
|
|
1411
1501
|
function: string;
|
|
1502
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1412
1503
|
}[];
|
|
1413
1504
|
}, {
|
|
1414
1505
|
scope: "*" | {
|
|
1415
1506
|
contract?: any;
|
|
1416
1507
|
function: string;
|
|
1508
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1417
1509
|
}[];
|
|
1418
1510
|
}>>;
|
|
1419
1511
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1422,12 +1514,14 @@ export declare const SimulationCapabilitySchema: z.ZodObject<{
|
|
|
1422
1514
|
scope: "*" | {
|
|
1423
1515
|
contract: "*" | AztecAddress;
|
|
1424
1516
|
function: string;
|
|
1517
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1425
1518
|
}[];
|
|
1426
1519
|
} | undefined;
|
|
1427
1520
|
utilities?: {
|
|
1428
1521
|
scope: "*" | {
|
|
1429
1522
|
contract: "*" | AztecAddress;
|
|
1430
1523
|
function: string;
|
|
1524
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1431
1525
|
}[];
|
|
1432
1526
|
} | undefined;
|
|
1433
1527
|
}, {
|
|
@@ -1436,12 +1530,14 @@ export declare const SimulationCapabilitySchema: z.ZodObject<{
|
|
|
1436
1530
|
scope: "*" | {
|
|
1437
1531
|
contract?: any;
|
|
1438
1532
|
function: string;
|
|
1533
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1439
1534
|
}[];
|
|
1440
1535
|
} | undefined;
|
|
1441
1536
|
utilities?: {
|
|
1442
1537
|
scope: "*" | {
|
|
1443
1538
|
contract?: any;
|
|
1444
1539
|
function: string;
|
|
1540
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1445
1541
|
}[];
|
|
1446
1542
|
} | undefined;
|
|
1447
1543
|
}>;
|
|
@@ -1451,44 +1547,54 @@ export declare const GrantedSimulationCapabilitySchema: z.ZodObject<{
|
|
|
1451
1547
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1452
1548
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1453
1549
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1550
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1454
1551
|
}, "strip", z.ZodTypeAny, {
|
|
1455
1552
|
contract: "*" | AztecAddress;
|
|
1456
1553
|
function: string;
|
|
1554
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1457
1555
|
}, {
|
|
1458
1556
|
contract?: any;
|
|
1459
1557
|
function: string;
|
|
1558
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1460
1559
|
}>, "many">]>;
|
|
1461
1560
|
}, "strip", z.ZodTypeAny, {
|
|
1462
1561
|
scope: "*" | {
|
|
1463
1562
|
contract: "*" | AztecAddress;
|
|
1464
1563
|
function: string;
|
|
1564
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1465
1565
|
}[];
|
|
1466
1566
|
}, {
|
|
1467
1567
|
scope: "*" | {
|
|
1468
1568
|
contract?: any;
|
|
1469
1569
|
function: string;
|
|
1570
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1470
1571
|
}[];
|
|
1471
1572
|
}>>;
|
|
1472
1573
|
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1473
1574
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1474
1575
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1475
1576
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1577
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1476
1578
|
}, "strip", z.ZodTypeAny, {
|
|
1477
1579
|
contract: "*" | AztecAddress;
|
|
1478
1580
|
function: string;
|
|
1581
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1479
1582
|
}, {
|
|
1480
1583
|
contract?: any;
|
|
1481
1584
|
function: string;
|
|
1585
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1482
1586
|
}>, "many">]>;
|
|
1483
1587
|
}, "strip", z.ZodTypeAny, {
|
|
1484
1588
|
scope: "*" | {
|
|
1485
1589
|
contract: "*" | AztecAddress;
|
|
1486
1590
|
function: string;
|
|
1591
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1487
1592
|
}[];
|
|
1488
1593
|
}, {
|
|
1489
1594
|
scope: "*" | {
|
|
1490
1595
|
contract?: any;
|
|
1491
1596
|
function: string;
|
|
1597
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1492
1598
|
}[];
|
|
1493
1599
|
}>>;
|
|
1494
1600
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1497,12 +1603,14 @@ export declare const GrantedSimulationCapabilitySchema: z.ZodObject<{
|
|
|
1497
1603
|
scope: "*" | {
|
|
1498
1604
|
contract: "*" | AztecAddress;
|
|
1499
1605
|
function: string;
|
|
1606
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1500
1607
|
}[];
|
|
1501
1608
|
} | undefined;
|
|
1502
1609
|
utilities?: {
|
|
1503
1610
|
scope: "*" | {
|
|
1504
1611
|
contract: "*" | AztecAddress;
|
|
1505
1612
|
function: string;
|
|
1613
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1506
1614
|
}[];
|
|
1507
1615
|
} | undefined;
|
|
1508
1616
|
}, {
|
|
@@ -1511,12 +1619,14 @@ export declare const GrantedSimulationCapabilitySchema: z.ZodObject<{
|
|
|
1511
1619
|
scope: "*" | {
|
|
1512
1620
|
contract?: any;
|
|
1513
1621
|
function: string;
|
|
1622
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1514
1623
|
}[];
|
|
1515
1624
|
} | undefined;
|
|
1516
1625
|
utilities?: {
|
|
1517
1626
|
scope: "*" | {
|
|
1518
1627
|
contract?: any;
|
|
1519
1628
|
function: string;
|
|
1629
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1520
1630
|
}[];
|
|
1521
1631
|
} | undefined;
|
|
1522
1632
|
}>;
|
|
@@ -1525,24 +1635,29 @@ export declare const TransactionCapabilitySchema: z.ZodObject<{
|
|
|
1525
1635
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1526
1636
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1527
1637
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1638
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1528
1639
|
}, "strip", z.ZodTypeAny, {
|
|
1529
1640
|
contract: "*" | AztecAddress;
|
|
1530
1641
|
function: string;
|
|
1642
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1531
1643
|
}, {
|
|
1532
1644
|
contract?: any;
|
|
1533
1645
|
function: string;
|
|
1646
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1534
1647
|
}>, "many">]>;
|
|
1535
1648
|
}, "strip", z.ZodTypeAny, {
|
|
1536
1649
|
type: "transaction";
|
|
1537
1650
|
scope: "*" | {
|
|
1538
1651
|
contract: "*" | AztecAddress;
|
|
1539
1652
|
function: string;
|
|
1653
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1540
1654
|
}[];
|
|
1541
1655
|
}, {
|
|
1542
1656
|
type: "transaction";
|
|
1543
1657
|
scope: "*" | {
|
|
1544
1658
|
contract?: any;
|
|
1545
1659
|
function: string;
|
|
1660
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1546
1661
|
}[];
|
|
1547
1662
|
}>;
|
|
1548
1663
|
export declare const GrantedTransactionCapabilitySchema: z.ZodObject<{
|
|
@@ -1550,24 +1665,29 @@ export declare const GrantedTransactionCapabilitySchema: z.ZodObject<{
|
|
|
1550
1665
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1551
1666
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1552
1667
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1668
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1553
1669
|
}, "strip", z.ZodTypeAny, {
|
|
1554
1670
|
contract: "*" | AztecAddress;
|
|
1555
1671
|
function: string;
|
|
1672
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1556
1673
|
}, {
|
|
1557
1674
|
contract?: any;
|
|
1558
1675
|
function: string;
|
|
1676
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1559
1677
|
}>, "many">]>;
|
|
1560
1678
|
}, "strip", z.ZodTypeAny, {
|
|
1561
1679
|
type: "transaction";
|
|
1562
1680
|
scope: "*" | {
|
|
1563
1681
|
contract: "*" | AztecAddress;
|
|
1564
1682
|
function: string;
|
|
1683
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1565
1684
|
}[];
|
|
1566
1685
|
}, {
|
|
1567
1686
|
type: "transaction";
|
|
1568
1687
|
scope: "*" | {
|
|
1569
1688
|
contract?: any;
|
|
1570
1689
|
function: string;
|
|
1690
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1571
1691
|
}[];
|
|
1572
1692
|
}>;
|
|
1573
1693
|
export declare const DataCapabilitySchema: z.ZodObject<{
|
|
@@ -1661,44 +1781,54 @@ export declare const CapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1661
1781
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1662
1782
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1663
1783
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1784
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1664
1785
|
}, "strip", z.ZodTypeAny, {
|
|
1665
1786
|
contract: "*" | AztecAddress;
|
|
1666
1787
|
function: string;
|
|
1788
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1667
1789
|
}, {
|
|
1668
1790
|
contract?: any;
|
|
1669
1791
|
function: string;
|
|
1792
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1670
1793
|
}>, "many">]>;
|
|
1671
1794
|
}, "strip", z.ZodTypeAny, {
|
|
1672
1795
|
scope: "*" | {
|
|
1673
1796
|
contract: "*" | AztecAddress;
|
|
1674
1797
|
function: string;
|
|
1798
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1675
1799
|
}[];
|
|
1676
1800
|
}, {
|
|
1677
1801
|
scope: "*" | {
|
|
1678
1802
|
contract?: any;
|
|
1679
1803
|
function: string;
|
|
1804
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1680
1805
|
}[];
|
|
1681
1806
|
}>>;
|
|
1682
1807
|
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1683
1808
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1684
1809
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1685
1810
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1811
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1686
1812
|
}, "strip", z.ZodTypeAny, {
|
|
1687
1813
|
contract: "*" | AztecAddress;
|
|
1688
1814
|
function: string;
|
|
1815
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1689
1816
|
}, {
|
|
1690
1817
|
contract?: any;
|
|
1691
1818
|
function: string;
|
|
1819
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1692
1820
|
}>, "many">]>;
|
|
1693
1821
|
}, "strip", z.ZodTypeAny, {
|
|
1694
1822
|
scope: "*" | {
|
|
1695
1823
|
contract: "*" | AztecAddress;
|
|
1696
1824
|
function: string;
|
|
1825
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1697
1826
|
}[];
|
|
1698
1827
|
}, {
|
|
1699
1828
|
scope: "*" | {
|
|
1700
1829
|
contract?: any;
|
|
1701
1830
|
function: string;
|
|
1831
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1702
1832
|
}[];
|
|
1703
1833
|
}>>;
|
|
1704
1834
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1707,12 +1837,14 @@ export declare const CapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1707
1837
|
scope: "*" | {
|
|
1708
1838
|
contract: "*" | AztecAddress;
|
|
1709
1839
|
function: string;
|
|
1840
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1710
1841
|
}[];
|
|
1711
1842
|
} | undefined;
|
|
1712
1843
|
utilities?: {
|
|
1713
1844
|
scope: "*" | {
|
|
1714
1845
|
contract: "*" | AztecAddress;
|
|
1715
1846
|
function: string;
|
|
1847
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1716
1848
|
}[];
|
|
1717
1849
|
} | undefined;
|
|
1718
1850
|
}, {
|
|
@@ -1721,12 +1853,14 @@ export declare const CapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1721
1853
|
scope: "*" | {
|
|
1722
1854
|
contract?: any;
|
|
1723
1855
|
function: string;
|
|
1856
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1724
1857
|
}[];
|
|
1725
1858
|
} | undefined;
|
|
1726
1859
|
utilities?: {
|
|
1727
1860
|
scope: "*" | {
|
|
1728
1861
|
contract?: any;
|
|
1729
1862
|
function: string;
|
|
1863
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1730
1864
|
}[];
|
|
1731
1865
|
} | undefined;
|
|
1732
1866
|
}>, z.ZodObject<{
|
|
@@ -1734,24 +1868,29 @@ export declare const CapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1734
1868
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1735
1869
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1736
1870
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1871
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1737
1872
|
}, "strip", z.ZodTypeAny, {
|
|
1738
1873
|
contract: "*" | AztecAddress;
|
|
1739
1874
|
function: string;
|
|
1875
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1740
1876
|
}, {
|
|
1741
1877
|
contract?: any;
|
|
1742
1878
|
function: string;
|
|
1879
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1743
1880
|
}>, "many">]>;
|
|
1744
1881
|
}, "strip", z.ZodTypeAny, {
|
|
1745
1882
|
type: "transaction";
|
|
1746
1883
|
scope: "*" | {
|
|
1747
1884
|
contract: "*" | AztecAddress;
|
|
1748
1885
|
function: string;
|
|
1886
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1749
1887
|
}[];
|
|
1750
1888
|
}, {
|
|
1751
1889
|
type: "transaction";
|
|
1752
1890
|
scope: "*" | {
|
|
1753
1891
|
contract?: any;
|
|
1754
1892
|
function: string;
|
|
1893
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1755
1894
|
}[];
|
|
1756
1895
|
}>, z.ZodObject<{
|
|
1757
1896
|
type: z.ZodLiteral<"data">;
|
|
@@ -1840,44 +1979,54 @@ export declare const GrantedCapabilitySchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1840
1979
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1841
1980
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1842
1981
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1982
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1843
1983
|
}, "strip", z.ZodTypeAny, {
|
|
1844
1984
|
contract: "*" | AztecAddress;
|
|
1845
1985
|
function: string;
|
|
1986
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1846
1987
|
}, {
|
|
1847
1988
|
contract?: any;
|
|
1848
1989
|
function: string;
|
|
1990
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1849
1991
|
}>, "many">]>;
|
|
1850
1992
|
}, "strip", z.ZodTypeAny, {
|
|
1851
1993
|
scope: "*" | {
|
|
1852
1994
|
contract: "*" | AztecAddress;
|
|
1853
1995
|
function: string;
|
|
1996
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1854
1997
|
}[];
|
|
1855
1998
|
}, {
|
|
1856
1999
|
scope: "*" | {
|
|
1857
2000
|
contract?: any;
|
|
1858
2001
|
function: string;
|
|
2002
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1859
2003
|
}[];
|
|
1860
2004
|
}>>;
|
|
1861
2005
|
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1862
2006
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1863
2007
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1864
2008
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2009
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1865
2010
|
}, "strip", z.ZodTypeAny, {
|
|
1866
2011
|
contract: "*" | AztecAddress;
|
|
1867
2012
|
function: string;
|
|
2013
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1868
2014
|
}, {
|
|
1869
2015
|
contract?: any;
|
|
1870
2016
|
function: string;
|
|
2017
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1871
2018
|
}>, "many">]>;
|
|
1872
2019
|
}, "strip", z.ZodTypeAny, {
|
|
1873
2020
|
scope: "*" | {
|
|
1874
2021
|
contract: "*" | AztecAddress;
|
|
1875
2022
|
function: string;
|
|
2023
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1876
2024
|
}[];
|
|
1877
2025
|
}, {
|
|
1878
2026
|
scope: "*" | {
|
|
1879
2027
|
contract?: any;
|
|
1880
2028
|
function: string;
|
|
2029
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1881
2030
|
}[];
|
|
1882
2031
|
}>>;
|
|
1883
2032
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1886,12 +2035,14 @@ export declare const GrantedCapabilitySchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1886
2035
|
scope: "*" | {
|
|
1887
2036
|
contract: "*" | AztecAddress;
|
|
1888
2037
|
function: string;
|
|
2038
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1889
2039
|
}[];
|
|
1890
2040
|
} | undefined;
|
|
1891
2041
|
utilities?: {
|
|
1892
2042
|
scope: "*" | {
|
|
1893
2043
|
contract: "*" | AztecAddress;
|
|
1894
2044
|
function: string;
|
|
2045
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1895
2046
|
}[];
|
|
1896
2047
|
} | undefined;
|
|
1897
2048
|
}, {
|
|
@@ -1900,12 +2051,14 @@ export declare const GrantedCapabilitySchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1900
2051
|
scope: "*" | {
|
|
1901
2052
|
contract?: any;
|
|
1902
2053
|
function: string;
|
|
2054
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1903
2055
|
}[];
|
|
1904
2056
|
} | undefined;
|
|
1905
2057
|
utilities?: {
|
|
1906
2058
|
scope: "*" | {
|
|
1907
2059
|
contract?: any;
|
|
1908
2060
|
function: string;
|
|
2061
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1909
2062
|
}[];
|
|
1910
2063
|
} | undefined;
|
|
1911
2064
|
}>, z.ZodObject<{
|
|
@@ -1913,24 +2066,29 @@ export declare const GrantedCapabilitySchema: z.ZodDiscriminatedUnion<"type", [z
|
|
|
1913
2066
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1914
2067
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1915
2068
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2069
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
1916
2070
|
}, "strip", z.ZodTypeAny, {
|
|
1917
2071
|
contract: "*" | AztecAddress;
|
|
1918
2072
|
function: string;
|
|
2073
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1919
2074
|
}, {
|
|
1920
2075
|
contract?: any;
|
|
1921
2076
|
function: string;
|
|
2077
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1922
2078
|
}>, "many">]>;
|
|
1923
2079
|
}, "strip", z.ZodTypeAny, {
|
|
1924
2080
|
type: "transaction";
|
|
1925
2081
|
scope: "*" | {
|
|
1926
2082
|
contract: "*" | AztecAddress;
|
|
1927
2083
|
function: string;
|
|
2084
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
1928
2085
|
}[];
|
|
1929
2086
|
}, {
|
|
1930
2087
|
type: "transaction";
|
|
1931
2088
|
scope: "*" | {
|
|
1932
2089
|
contract?: any;
|
|
1933
2090
|
function: string;
|
|
2091
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
1934
2092
|
}[];
|
|
1935
2093
|
}>, z.ZodObject<{
|
|
1936
2094
|
type: z.ZodLiteral<"data">;
|
|
@@ -2021,44 +2179,54 @@ export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
|
2021
2179
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2022
2180
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2023
2181
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2182
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
2024
2183
|
}, "strip", z.ZodTypeAny, {
|
|
2025
2184
|
contract: "*" | AztecAddress;
|
|
2026
2185
|
function: string;
|
|
2186
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2027
2187
|
}, {
|
|
2028
2188
|
contract?: any;
|
|
2029
2189
|
function: string;
|
|
2190
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2030
2191
|
}>, "many">]>;
|
|
2031
2192
|
}, "strip", z.ZodTypeAny, {
|
|
2032
2193
|
scope: "*" | {
|
|
2033
2194
|
contract: "*" | AztecAddress;
|
|
2034
2195
|
function: string;
|
|
2196
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2035
2197
|
}[];
|
|
2036
2198
|
}, {
|
|
2037
2199
|
scope: "*" | {
|
|
2038
2200
|
contract?: any;
|
|
2039
2201
|
function: string;
|
|
2202
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2040
2203
|
}[];
|
|
2041
2204
|
}>>;
|
|
2042
2205
|
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2043
2206
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2044
2207
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2045
2208
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2209
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
2046
2210
|
}, "strip", z.ZodTypeAny, {
|
|
2047
2211
|
contract: "*" | AztecAddress;
|
|
2048
2212
|
function: string;
|
|
2213
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2049
2214
|
}, {
|
|
2050
2215
|
contract?: any;
|
|
2051
2216
|
function: string;
|
|
2217
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2052
2218
|
}>, "many">]>;
|
|
2053
2219
|
}, "strip", z.ZodTypeAny, {
|
|
2054
2220
|
scope: "*" | {
|
|
2055
2221
|
contract: "*" | AztecAddress;
|
|
2056
2222
|
function: string;
|
|
2223
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2057
2224
|
}[];
|
|
2058
2225
|
}, {
|
|
2059
2226
|
scope: "*" | {
|
|
2060
2227
|
contract?: any;
|
|
2061
2228
|
function: string;
|
|
2229
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2062
2230
|
}[];
|
|
2063
2231
|
}>>;
|
|
2064
2232
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2067,12 +2235,14 @@ export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
|
2067
2235
|
scope: "*" | {
|
|
2068
2236
|
contract: "*" | AztecAddress;
|
|
2069
2237
|
function: string;
|
|
2238
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2070
2239
|
}[];
|
|
2071
2240
|
} | undefined;
|
|
2072
2241
|
utilities?: {
|
|
2073
2242
|
scope: "*" | {
|
|
2074
2243
|
contract: "*" | AztecAddress;
|
|
2075
2244
|
function: string;
|
|
2245
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2076
2246
|
}[];
|
|
2077
2247
|
} | undefined;
|
|
2078
2248
|
}, {
|
|
@@ -2081,12 +2251,14 @@ export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
|
2081
2251
|
scope: "*" | {
|
|
2082
2252
|
contract?: any;
|
|
2083
2253
|
function: string;
|
|
2254
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2084
2255
|
}[];
|
|
2085
2256
|
} | undefined;
|
|
2086
2257
|
utilities?: {
|
|
2087
2258
|
scope: "*" | {
|
|
2088
2259
|
contract?: any;
|
|
2089
2260
|
function: string;
|
|
2261
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2090
2262
|
}[];
|
|
2091
2263
|
} | undefined;
|
|
2092
2264
|
}>, z.ZodObject<{
|
|
@@ -2094,24 +2266,29 @@ export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
|
2094
2266
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2095
2267
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2096
2268
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2269
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
2097
2270
|
}, "strip", z.ZodTypeAny, {
|
|
2098
2271
|
contract: "*" | AztecAddress;
|
|
2099
2272
|
function: string;
|
|
2273
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2100
2274
|
}, {
|
|
2101
2275
|
contract?: any;
|
|
2102
2276
|
function: string;
|
|
2277
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2103
2278
|
}>, "many">]>;
|
|
2104
2279
|
}, "strip", z.ZodTypeAny, {
|
|
2105
2280
|
type: "transaction";
|
|
2106
2281
|
scope: "*" | {
|
|
2107
2282
|
contract: "*" | AztecAddress;
|
|
2108
2283
|
function: string;
|
|
2284
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2109
2285
|
}[];
|
|
2110
2286
|
}, {
|
|
2111
2287
|
type: "transaction";
|
|
2112
2288
|
scope: "*" | {
|
|
2113
2289
|
contract?: any;
|
|
2114
2290
|
function: string;
|
|
2291
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2115
2292
|
}[];
|
|
2116
2293
|
}>, z.ZodObject<{
|
|
2117
2294
|
type: z.ZodLiteral<"data">;
|
|
@@ -2174,12 +2351,14 @@ export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
|
2174
2351
|
scope: "*" | {
|
|
2175
2352
|
contract: "*" | AztecAddress;
|
|
2176
2353
|
function: string;
|
|
2354
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2177
2355
|
}[];
|
|
2178
2356
|
} | undefined;
|
|
2179
2357
|
utilities?: {
|
|
2180
2358
|
scope: "*" | {
|
|
2181
2359
|
contract: "*" | AztecAddress;
|
|
2182
2360
|
function: string;
|
|
2361
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2183
2362
|
}[];
|
|
2184
2363
|
} | undefined;
|
|
2185
2364
|
} | {
|
|
@@ -2187,6 +2366,7 @@ export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
|
2187
2366
|
scope: "*" | {
|
|
2188
2367
|
contract: "*" | AztecAddress;
|
|
2189
2368
|
function: string;
|
|
2369
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2190
2370
|
}[];
|
|
2191
2371
|
} | {
|
|
2192
2372
|
type: "data";
|
|
@@ -2227,12 +2407,14 @@ export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
|
2227
2407
|
scope: "*" | {
|
|
2228
2408
|
contract?: any;
|
|
2229
2409
|
function: string;
|
|
2410
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2230
2411
|
}[];
|
|
2231
2412
|
} | undefined;
|
|
2232
2413
|
utilities?: {
|
|
2233
2414
|
scope: "*" | {
|
|
2234
2415
|
contract?: any;
|
|
2235
2416
|
function: string;
|
|
2417
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2236
2418
|
}[];
|
|
2237
2419
|
} | undefined;
|
|
2238
2420
|
} | {
|
|
@@ -2240,6 +2422,7 @@ export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
|
2240
2422
|
scope: "*" | {
|
|
2241
2423
|
contract?: any;
|
|
2242
2424
|
function: string;
|
|
2425
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2243
2426
|
}[];
|
|
2244
2427
|
} | {
|
|
2245
2428
|
type: "data";
|
|
@@ -2319,44 +2502,54 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2319
2502
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2320
2503
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2321
2504
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2505
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
2322
2506
|
}, "strip", z.ZodTypeAny, {
|
|
2323
2507
|
contract: "*" | AztecAddress;
|
|
2324
2508
|
function: string;
|
|
2509
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2325
2510
|
}, {
|
|
2326
2511
|
contract?: any;
|
|
2327
2512
|
function: string;
|
|
2513
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2328
2514
|
}>, "many">]>;
|
|
2329
2515
|
}, "strip", z.ZodTypeAny, {
|
|
2330
2516
|
scope: "*" | {
|
|
2331
2517
|
contract: "*" | AztecAddress;
|
|
2332
2518
|
function: string;
|
|
2519
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2333
2520
|
}[];
|
|
2334
2521
|
}, {
|
|
2335
2522
|
scope: "*" | {
|
|
2336
2523
|
contract?: any;
|
|
2337
2524
|
function: string;
|
|
2525
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2338
2526
|
}[];
|
|
2339
2527
|
}>>;
|
|
2340
2528
|
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2341
2529
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2342
2530
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2343
2531
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2532
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
2344
2533
|
}, "strip", z.ZodTypeAny, {
|
|
2345
2534
|
contract: "*" | AztecAddress;
|
|
2346
2535
|
function: string;
|
|
2536
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2347
2537
|
}, {
|
|
2348
2538
|
contract?: any;
|
|
2349
2539
|
function: string;
|
|
2540
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2350
2541
|
}>, "many">]>;
|
|
2351
2542
|
}, "strip", z.ZodTypeAny, {
|
|
2352
2543
|
scope: "*" | {
|
|
2353
2544
|
contract: "*" | AztecAddress;
|
|
2354
2545
|
function: string;
|
|
2546
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2355
2547
|
}[];
|
|
2356
2548
|
}, {
|
|
2357
2549
|
scope: "*" | {
|
|
2358
2550
|
contract?: any;
|
|
2359
2551
|
function: string;
|
|
2552
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2360
2553
|
}[];
|
|
2361
2554
|
}>>;
|
|
2362
2555
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2365,12 +2558,14 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2365
2558
|
scope: "*" | {
|
|
2366
2559
|
contract: "*" | AztecAddress;
|
|
2367
2560
|
function: string;
|
|
2561
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2368
2562
|
}[];
|
|
2369
2563
|
} | undefined;
|
|
2370
2564
|
utilities?: {
|
|
2371
2565
|
scope: "*" | {
|
|
2372
2566
|
contract: "*" | AztecAddress;
|
|
2373
2567
|
function: string;
|
|
2568
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2374
2569
|
}[];
|
|
2375
2570
|
} | undefined;
|
|
2376
2571
|
}, {
|
|
@@ -2379,12 +2574,14 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2379
2574
|
scope: "*" | {
|
|
2380
2575
|
contract?: any;
|
|
2381
2576
|
function: string;
|
|
2577
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2382
2578
|
}[];
|
|
2383
2579
|
} | undefined;
|
|
2384
2580
|
utilities?: {
|
|
2385
2581
|
scope: "*" | {
|
|
2386
2582
|
contract?: any;
|
|
2387
2583
|
function: string;
|
|
2584
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2388
2585
|
}[];
|
|
2389
2586
|
} | undefined;
|
|
2390
2587
|
}>, z.ZodObject<{
|
|
@@ -2392,24 +2589,29 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2392
2589
|
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2393
2590
|
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2394
2591
|
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2592
|
+
additionalScopes: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">, z.ZodLiteral<"*">]>>;
|
|
2395
2593
|
}, "strip", z.ZodTypeAny, {
|
|
2396
2594
|
contract: "*" | AztecAddress;
|
|
2397
2595
|
function: string;
|
|
2596
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2398
2597
|
}, {
|
|
2399
2598
|
contract?: any;
|
|
2400
2599
|
function: string;
|
|
2600
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2401
2601
|
}>, "many">]>;
|
|
2402
2602
|
}, "strip", z.ZodTypeAny, {
|
|
2403
2603
|
type: "transaction";
|
|
2404
2604
|
scope: "*" | {
|
|
2405
2605
|
contract: "*" | AztecAddress;
|
|
2406
2606
|
function: string;
|
|
2607
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2407
2608
|
}[];
|
|
2408
2609
|
}, {
|
|
2409
2610
|
type: "transaction";
|
|
2410
2611
|
scope: "*" | {
|
|
2411
2612
|
contract?: any;
|
|
2412
2613
|
function: string;
|
|
2614
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2413
2615
|
}[];
|
|
2414
2616
|
}>, z.ZodObject<{
|
|
2415
2617
|
type: z.ZodLiteral<"data">;
|
|
@@ -2470,12 +2672,14 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2470
2672
|
scope: "*" | {
|
|
2471
2673
|
contract: "*" | AztecAddress;
|
|
2472
2674
|
function: string;
|
|
2675
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2473
2676
|
}[];
|
|
2474
2677
|
} | undefined;
|
|
2475
2678
|
utilities?: {
|
|
2476
2679
|
scope: "*" | {
|
|
2477
2680
|
contract: "*" | AztecAddress;
|
|
2478
2681
|
function: string;
|
|
2682
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2479
2683
|
}[];
|
|
2480
2684
|
} | undefined;
|
|
2481
2685
|
} | {
|
|
@@ -2483,6 +2687,7 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2483
2687
|
scope: "*" | {
|
|
2484
2688
|
contract: "*" | AztecAddress;
|
|
2485
2689
|
function: string;
|
|
2690
|
+
additionalScopes?: "*" | AztecAddress[] | undefined;
|
|
2486
2691
|
}[];
|
|
2487
2692
|
} | {
|
|
2488
2693
|
type: "data";
|
|
@@ -2521,12 +2726,14 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2521
2726
|
scope: "*" | {
|
|
2522
2727
|
contract?: any;
|
|
2523
2728
|
function: string;
|
|
2729
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2524
2730
|
}[];
|
|
2525
2731
|
} | undefined;
|
|
2526
2732
|
utilities?: {
|
|
2527
2733
|
scope: "*" | {
|
|
2528
2734
|
contract?: any;
|
|
2529
2735
|
function: string;
|
|
2736
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2530
2737
|
}[];
|
|
2531
2738
|
} | undefined;
|
|
2532
2739
|
} | {
|
|
@@ -2534,6 +2741,7 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2534
2741
|
scope: "*" | {
|
|
2535
2742
|
contract?: any;
|
|
2536
2743
|
function: string;
|
|
2744
|
+
additionalScopes?: "*" | any[] | undefined;
|
|
2537
2745
|
}[];
|
|
2538
2746
|
} | {
|
|
2539
2747
|
type: "data";
|
|
@@ -2549,42 +2757,42 @@ export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
|
2549
2757
|
expiresAt?: number | undefined;
|
|
2550
2758
|
}>;
|
|
2551
2759
|
declare const BatchedMethodSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObject<{
|
|
2552
|
-
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2760
|
+
name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
|
|
2553
2761
|
args: z.ZodTuple<any, any>;
|
|
2554
2762
|
}, "strip", z.ZodTypeAny, {
|
|
2555
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2763
|
+
name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
|
|
2556
2764
|
args: any[];
|
|
2557
2765
|
}, {
|
|
2558
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2766
|
+
name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
|
|
2559
2767
|
args: any[];
|
|
2560
2768
|
}>, ...z.ZodObject<{
|
|
2561
|
-
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2769
|
+
name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
|
|
2562
2770
|
args: z.ZodTuple<any, any>;
|
|
2563
2771
|
}, "strip", z.ZodTypeAny, {
|
|
2564
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2772
|
+
name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
|
|
2565
2773
|
args: any[];
|
|
2566
2774
|
}, {
|
|
2567
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2775
|
+
name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
|
|
2568
2776
|
args: any[];
|
|
2569
2777
|
}>[]]>, BatchedResultSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObject<{
|
|
2570
|
-
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2778
|
+
name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
|
|
2571
2779
|
result: z.ZodTypeAny;
|
|
2572
2780
|
}, "strip", z.ZodTypeAny, {
|
|
2573
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2781
|
+
name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
|
|
2574
2782
|
result?: any;
|
|
2575
2783
|
}, {
|
|
2576
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2784
|
+
name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
|
|
2577
2785
|
result?: any;
|
|
2578
2786
|
}>, ...z.ZodObject<{
|
|
2579
|
-
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2787
|
+
name: z.ZodLiteral<"createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx">;
|
|
2580
2788
|
result: z.ZodTypeAny;
|
|
2581
2789
|
}, "strip", z.ZodTypeAny, {
|
|
2582
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2790
|
+
name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
|
|
2583
2791
|
result?: any;
|
|
2584
2792
|
}, {
|
|
2585
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx"
|
|
2793
|
+
name: "createAuthWit" | "executeUtility" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx";
|
|
2586
2794
|
result?: any;
|
|
2587
2795
|
}>[]]>;
|
|
2588
2796
|
export { BatchedMethodSchema, BatchedResultSchema };
|
|
2589
2797
|
export declare const WalletSchema: ApiSchemaFor<Wallet>;
|
|
2590
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFHTCxLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLFlBQVksRUFDakIsWUFBWSxFQUNiLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3pELE9BQU8sS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxLQUFLLDJCQUEyQixFQUFxQyxNQUFNLHdCQUF3QixDQUFDO0FBQzdHLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN4QyxPQUFPLEVBQW9CLEtBQUssWUFBWSxFQUE2QixNQUFNLHVCQUF1QixDQUFDO0FBQ3ZHLE9BQU8sS0FBSyxFQUFFLGdCQUFnQixFQUFFLElBQUksRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQy9ELE9BQU8sRUFDTCxPQUFPLEVBQ1AsWUFBWSxFQUNaLE1BQU0sRUFDTixlQUFlLEVBRWYsa0JBQWtCLEVBQ2xCLHVCQUF1QixFQUV4QixNQUFNLGtCQUFrQixDQUFDO0FBRTFCLE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxFQUNMLEtBQUssb0JBQW9CLEVBQ3pCLEtBQUssaUJBQWlCLEVBQ3RCLEtBQUssc0JBQXNCLEVBRTNCLEtBQUsseUJBQXlCLEVBQzlCLEtBQUssaUNBQWlDLEVBQ3RDLEtBQUssVUFBVSxF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
|
|
2798
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFDTCxLQUFLLFVBQVUsRUFFZixLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixZQUFZLEVBQ2IsTUFBTSxtQkFBbUIsQ0FBQztBQUMzQixPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDekQsT0FBTyxLQUFLLEVBQUUsWUFBWSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDaEUsT0FBTyxFQUFFLEtBQUssMkJBQTJCLEVBQXFDLE1BQU0sd0JBQXdCLENBQUM7QUFDN0csT0FBTyxFQUFFLEdBQUcsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ3hDLE9BQU8sRUFBb0IsS0FBSyxZQUFZLEVBQTZCLE1BQU0sdUJBQXVCLENBQUM7QUFDdkcsT0FBTyxLQUFLLEVBQUUsZ0JBQWdCLEVBQUUsSUFBSSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDL0QsT0FBTyxFQUNMLE9BQU8sRUFDUCxZQUFZLEVBQ1osTUFBTSxFQUNOLGVBQWUsRUFFZixrQkFBa0IsRUFDbEIsc0JBQXNCLEVBRXZCLE1BQU0sa0JBQWtCLENBQUM7QUFFMUIsT0FBTyxFQUFFLENBQUMsRUFBRSxNQUFNLEtBQUssQ0FBQztBQUV4QixPQUFPLEVBQ0wsS0FBSyxvQkFBb0IsRUFDekIsS0FBSyxpQkFBaUIsRUFDdEIsS0FBSyxzQkFBc0IsRUFFM0IsS0FBSyx5QkFBeUIsRUFDOUIsS0FBSyxpQ0FBaUMsRUFDdEMsS0FBSyxVQUFVLEVB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
|