@aztec/aztec.js 0.0.1-commit.d431d1c → 0.0.1-commit.e310a4c8
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/block.d.ts +2 -2
- package/dest/api/block.d.ts.map +1 -1
- package/dest/api/block.js +1 -1
- package/dest/api/contract.d.ts +16 -10
- package/dest/api/contract.d.ts.map +1 -1
- package/dest/api/contract.js +14 -8
- package/dest/api/keys.d.ts +1 -1
- package/dest/api/keys.js +1 -1
- package/dest/api/node.d.ts +8 -4
- package/dest/api/node.d.ts.map +1 -1
- package/dest/api/node.js +7 -3
- package/dest/api/tx.d.ts +2 -2
- package/dest/api/tx.d.ts.map +1 -1
- package/dest/api/tx.js +1 -1
- package/dest/api/wallet.d.ts +3 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +2 -1
- package/dest/contract/base_contract_interaction.d.ts +8 -10
- package/dest/contract/base_contract_interaction.d.ts.map +1 -1
- package/dest/contract/base_contract_interaction.js +5 -17
- package/dest/contract/deploy_method.d.ts +63 -16
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +36 -19
- package/dest/contract/interaction_options.d.ts +42 -5
- package/dest/contract/interaction_options.d.ts.map +1 -1
- package/dest/contract/interaction_options.js +8 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts +1 -10
- package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.js +61 -479
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-class-registry.js +10 -422
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-instance-registry.js +80 -486
- package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -10
- package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/fee-juice.js +0 -414
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +3 -3
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.js +13 -14
- package/dest/contract/protocol_contracts/public-checks.d.ts +3 -3
- package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/public-checks.js +13 -22
- package/dest/contract/wait_for_proven.js +1 -1
- package/dest/contract/wait_opts.d.ts +16 -0
- package/dest/contract/wait_opts.d.ts.map +1 -0
- package/dest/contract/wait_opts.js +5 -0
- package/dest/utils/authwit.d.ts +6 -6
- package/dest/utils/authwit.d.ts.map +1 -1
- package/dest/utils/authwit.js +2 -6
- package/dest/utils/node.d.ts +12 -1
- package/dest/utils/node.d.ts.map +1 -1
- package/dest/utils/node.js +46 -0
- package/dest/wallet/capabilities.d.ts +444 -0
- package/dest/wallet/capabilities.d.ts.map +1 -0
- package/dest/wallet/capabilities.js +3 -0
- package/dest/wallet/deploy_account_method.d.ts +19 -5
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/index.d.ts +2 -1
- package/dest/wallet/index.d.ts.map +1 -1
- package/dest/wallet/index.js +1 -0
- package/dest/wallet/wallet.d.ts +1356 -18
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +136 -4
- package/package.json +9 -9
- package/src/api/block.ts +1 -1
- package/src/api/contract.ts +22 -7
- package/src/api/keys.ts +2 -2
- package/src/api/node.ts +7 -3
- package/src/api/tx.ts +2 -0
- package/src/api/wallet.ts +43 -0
- package/src/contract/base_contract_interaction.ts +27 -15
- package/src/contract/deploy_method.ts +115 -23
- package/src/contract/interaction_options.ts +49 -4
- package/src/contract/protocol_contracts/auth-registry.ts +37 -240
- package/src/contract/protocol_contracts/contract-class-registry.ts +3 -204
- package/src/contract/protocol_contracts/contract-instance-registry.ts +34 -234
- package/src/contract/protocol_contracts/fee-juice.ts +0 -202
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +6 -12
- package/src/contract/protocol_contracts/public-checks.ts +6 -14
- package/src/contract/wait_for_proven.ts +1 -1
- package/src/contract/wait_opts.ts +21 -0
- package/src/utils/authwit.ts +16 -4
- package/src/utils/node.ts +62 -0
- package/src/wallet/capabilities.ts +491 -0
- package/src/wallet/deploy_account_method.ts +19 -4
- package/src/wallet/index.ts +1 -0
- package/src/wallet/wallet.ts +148 -12
- package/dest/contract/deploy_sent_tx.d.ts +0 -48
- package/dest/contract/deploy_sent_tx.d.ts.map +0 -1
- package/dest/contract/deploy_sent_tx.js +0 -46
- package/dest/contract/sent_tx.d.ts +0 -50
- package/dest/contract/sent_tx.d.ts.map +0 -1
- package/dest/contract/sent_tx.js +0 -90
- package/src/contract/deploy_sent_tx.ts +0 -75
- package/src/contract/sent_tx.ts +0 -129
package/dest/wallet/wallet.d.ts
CHANGED
|
@@ -7,11 +7,12 @@ 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
|
-
import { Capsule, HashedValues, TxHash, TxProfileResult, TxReceipt, TxSimulationResult, UtilitySimulationResult } from '@aztec/stdlib/tx';
|
|
11
10
|
import type { ExecutionPayload, InTx } from '@aztec/stdlib/tx';
|
|
11
|
+
import { Capsule, HashedValues, TxHash, TxProfileResult, TxSimulationResult, UtilitySimulationResult } from '@aztec/stdlib/tx';
|
|
12
12
|
import { z } from 'zod';
|
|
13
|
-
import type
|
|
13
|
+
import { type FeeEstimationOptions, type GasSettingsOption, type InteractionWaitOptions, type ProfileInteractionOptions, type SendInteractionOptionsWithoutWait, type SendReturn, type SimulateInteractionOptions } from '../contract/interaction_options.js';
|
|
14
14
|
import type { CallIntent, IntentInnerHash } from '../utils/authwit.js';
|
|
15
|
+
import type { AppCapabilities, WalletCapabilities } from './capabilities.js';
|
|
15
16
|
/**
|
|
16
17
|
* A wrapper type that allows any item to be associated with an alias.
|
|
17
18
|
*/
|
|
@@ -48,9 +49,11 @@ export type ProfileOptions = Omit<ProfileInteractionOptions, 'fee'> & {
|
|
|
48
49
|
* a simplified version that only hints at the wallet whether the interaction contains a
|
|
49
50
|
* fee payment method or not
|
|
50
51
|
*/
|
|
51
|
-
export type SendOptions = Omit<
|
|
52
|
+
export type SendOptions<W extends InteractionWaitOptions = undefined> = Omit<SendInteractionOptionsWithoutWait, 'fee'> & {
|
|
52
53
|
/** The fee options */
|
|
53
54
|
fee?: GasSettingsOption;
|
|
55
|
+
/** Whether to wait for the transaction to be mined */
|
|
56
|
+
wait?: W;
|
|
54
57
|
};
|
|
55
58
|
/**
|
|
56
59
|
* Helper type that represents all methods that can be batched (all methods except batch itself).
|
|
@@ -153,7 +156,6 @@ export type ContractClassMetadata = {
|
|
|
153
156
|
export type Wallet = {
|
|
154
157
|
getPrivateEvents<T>(eventMetadata: EventMetadataDefinition, eventFilter: PrivateEventFilter): Promise<PrivateEvent<T>[]>;
|
|
155
158
|
getChainInfo(): Promise<ChainInfo>;
|
|
156
|
-
getTxReceipt(txHash: TxHash): Promise<TxReceipt>;
|
|
157
159
|
getContractMetadata(address: AztecAddress): Promise<ContractMetadata>;
|
|
158
160
|
getContractClassMetadata(id: Fr): Promise<ContractClassMetadata>;
|
|
159
161
|
registerSender(address: AztecAddress, alias?: string): Promise<AztecAddress>;
|
|
@@ -163,8 +165,9 @@ export type Wallet = {
|
|
|
163
165
|
simulateTx(exec: ExecutionPayload, opts: SimulateOptions): Promise<TxSimulationResult>;
|
|
164
166
|
simulateUtility(call: FunctionCall, authwits?: AuthWitness[]): Promise<UtilitySimulationResult>;
|
|
165
167
|
profileTx(exec: ExecutionPayload, opts: ProfileOptions): Promise<TxProfileResult>;
|
|
166
|
-
sendTx(exec: ExecutionPayload, opts: SendOptions): Promise<
|
|
168
|
+
sendTx<W extends InteractionWaitOptions = undefined>(exec: ExecutionPayload, opts: SendOptions<W>): Promise<SendReturn<W>>;
|
|
167
169
|
createAuthWit(from: AztecAddress, messageHashOrIntent: IntentInnerHash | CallIntent): Promise<AuthWitness>;
|
|
170
|
+
requestCapabilities(manifest: AppCapabilities): Promise<WalletCapabilities>;
|
|
168
171
|
batch<const T extends readonly BatchedMethod[]>(methods: T): Promise<BatchResults<T>>;
|
|
169
172
|
};
|
|
170
173
|
export declare const FunctionCallSchema: z.ZodObject<{
|
|
@@ -486,6 +489,22 @@ export declare const WalletSimulationFeeOptionSchema: z.ZodObject<{
|
|
|
486
489
|
estimatedGasPadding?: number | undefined;
|
|
487
490
|
estimateGas?: boolean | undefined;
|
|
488
491
|
}>;
|
|
492
|
+
export declare const WaitOptsSchema: z.ZodObject<{
|
|
493
|
+
ignoreDroppedReceiptsFor: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
|
|
494
|
+
timeout: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
|
|
495
|
+
interval: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
|
|
496
|
+
dontThrowOnRevert: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
497
|
+
}, "strip", z.ZodTypeAny, {
|
|
498
|
+
ignoreDroppedReceiptsFor?: number | undefined;
|
|
499
|
+
timeout?: number | undefined;
|
|
500
|
+
interval?: number | undefined;
|
|
501
|
+
dontThrowOnRevert?: boolean | undefined;
|
|
502
|
+
}, {
|
|
503
|
+
ignoreDroppedReceiptsFor?: number | undefined;
|
|
504
|
+
timeout?: number | undefined;
|
|
505
|
+
interval?: number | undefined;
|
|
506
|
+
dontThrowOnRevert?: boolean | undefined;
|
|
507
|
+
}>;
|
|
489
508
|
export declare const SendOptionsSchema: z.ZodObject<{
|
|
490
509
|
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
491
510
|
authWitnesses: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">>;
|
|
@@ -600,6 +619,22 @@ export declare const SendOptionsSchema: z.ZodObject<{
|
|
|
600
619
|
} | undefined;
|
|
601
620
|
} | undefined;
|
|
602
621
|
}>>;
|
|
622
|
+
wait: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodLiteral<"NO_WAIT">, z.ZodObject<{
|
|
623
|
+
ignoreDroppedReceiptsFor: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
|
|
624
|
+
timeout: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
|
|
625
|
+
interval: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
|
|
626
|
+
dontThrowOnRevert: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
627
|
+
}, "strip", z.ZodTypeAny, {
|
|
628
|
+
ignoreDroppedReceiptsFor?: number | undefined;
|
|
629
|
+
timeout?: number | undefined;
|
|
630
|
+
interval?: number | undefined;
|
|
631
|
+
dontThrowOnRevert?: boolean | undefined;
|
|
632
|
+
}, {
|
|
633
|
+
ignoreDroppedReceiptsFor?: number | undefined;
|
|
634
|
+
timeout?: number | undefined;
|
|
635
|
+
interval?: number | undefined;
|
|
636
|
+
dontThrowOnRevert?: boolean | undefined;
|
|
637
|
+
}>]>>;
|
|
603
638
|
}, "strip", z.ZodTypeAny, {
|
|
604
639
|
from: AztecAddress;
|
|
605
640
|
authWitnesses?: AuthWitness[] | undefined;
|
|
@@ -618,6 +653,12 @@ export declare const SendOptionsSchema: z.ZodObject<{
|
|
|
618
653
|
} | undefined;
|
|
619
654
|
} | undefined;
|
|
620
655
|
} | undefined;
|
|
656
|
+
wait?: "NO_WAIT" | {
|
|
657
|
+
ignoreDroppedReceiptsFor?: number | undefined;
|
|
658
|
+
timeout?: number | undefined;
|
|
659
|
+
interval?: number | undefined;
|
|
660
|
+
dontThrowOnRevert?: boolean | undefined;
|
|
661
|
+
} | undefined;
|
|
621
662
|
}, {
|
|
622
663
|
from?: any;
|
|
623
664
|
authWitnesses?: string[] | undefined;
|
|
@@ -642,6 +683,12 @@ export declare const SendOptionsSchema: z.ZodObject<{
|
|
|
642
683
|
} | undefined;
|
|
643
684
|
} | undefined;
|
|
644
685
|
} | undefined;
|
|
686
|
+
wait?: "NO_WAIT" | {
|
|
687
|
+
ignoreDroppedReceiptsFor?: number | undefined;
|
|
688
|
+
timeout?: number | undefined;
|
|
689
|
+
interval?: number | undefined;
|
|
690
|
+
dontThrowOnRevert?: boolean | undefined;
|
|
691
|
+
} | undefined;
|
|
645
692
|
}>;
|
|
646
693
|
export declare const SimulateOptionsSchema: z.ZodObject<{
|
|
647
694
|
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
@@ -1210,43 +1257,1334 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
|
|
|
1210
1257
|
isArtifactRegistered: boolean;
|
|
1211
1258
|
isContractClassPubliclyRegistered: boolean;
|
|
1212
1259
|
}>;
|
|
1260
|
+
export declare const ContractFunctionPatternSchema: z.ZodObject<{
|
|
1261
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1262
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1263
|
+
}, "strip", z.ZodTypeAny, {
|
|
1264
|
+
contract: "*" | AztecAddress;
|
|
1265
|
+
function: string;
|
|
1266
|
+
}, {
|
|
1267
|
+
contract?: any;
|
|
1268
|
+
function: string;
|
|
1269
|
+
}>;
|
|
1270
|
+
export declare const AccountsCapabilitySchema: z.ZodObject<{
|
|
1271
|
+
type: z.ZodLiteral<"accounts">;
|
|
1272
|
+
canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1273
|
+
canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1274
|
+
}, "strip", z.ZodTypeAny, {
|
|
1275
|
+
type: "accounts";
|
|
1276
|
+
canGet?: boolean | undefined;
|
|
1277
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1278
|
+
}, {
|
|
1279
|
+
type: "accounts";
|
|
1280
|
+
canGet?: boolean | undefined;
|
|
1281
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1282
|
+
}>;
|
|
1283
|
+
export declare const GrantedAccountsCapabilitySchema: z.ZodObject<{
|
|
1284
|
+
type: z.ZodLiteral<"accounts">;
|
|
1285
|
+
canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1286
|
+
canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1287
|
+
} & {
|
|
1288
|
+
accounts: z.ZodArray<z.ZodObject<{
|
|
1289
|
+
alias: z.ZodString;
|
|
1290
|
+
item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1291
|
+
}, "strip", z.ZodTypeAny, {
|
|
1292
|
+
alias: string;
|
|
1293
|
+
item: AztecAddress;
|
|
1294
|
+
}, {
|
|
1295
|
+
alias: string;
|
|
1296
|
+
item?: any;
|
|
1297
|
+
}>, "many">;
|
|
1298
|
+
}, "strip", z.ZodTypeAny, {
|
|
1299
|
+
type: "accounts";
|
|
1300
|
+
canGet?: boolean | undefined;
|
|
1301
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1302
|
+
accounts: {
|
|
1303
|
+
alias: string;
|
|
1304
|
+
item: AztecAddress;
|
|
1305
|
+
}[];
|
|
1306
|
+
}, {
|
|
1307
|
+
type: "accounts";
|
|
1308
|
+
canGet?: boolean | undefined;
|
|
1309
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1310
|
+
accounts: {
|
|
1311
|
+
alias: string;
|
|
1312
|
+
item?: any;
|
|
1313
|
+
}[];
|
|
1314
|
+
}>;
|
|
1315
|
+
export declare const ContractsCapabilitySchema: z.ZodObject<{
|
|
1316
|
+
type: z.ZodLiteral<"contracts">;
|
|
1317
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1318
|
+
canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1319
|
+
canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1320
|
+
}, "strip", z.ZodTypeAny, {
|
|
1321
|
+
type: "contracts";
|
|
1322
|
+
contracts: "*" | AztecAddress[];
|
|
1323
|
+
canRegister?: boolean | undefined;
|
|
1324
|
+
canGetMetadata?: boolean | undefined;
|
|
1325
|
+
}, {
|
|
1326
|
+
type: "contracts";
|
|
1327
|
+
contracts: "*" | any[];
|
|
1328
|
+
canRegister?: boolean | undefined;
|
|
1329
|
+
canGetMetadata?: boolean | undefined;
|
|
1330
|
+
}>;
|
|
1331
|
+
export declare const GrantedContractsCapabilitySchema: z.ZodObject<{
|
|
1332
|
+
type: z.ZodLiteral<"contracts">;
|
|
1333
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1334
|
+
canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1335
|
+
canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1336
|
+
}, "strip", z.ZodTypeAny, {
|
|
1337
|
+
type: "contracts";
|
|
1338
|
+
contracts: "*" | AztecAddress[];
|
|
1339
|
+
canRegister?: boolean | undefined;
|
|
1340
|
+
canGetMetadata?: boolean | undefined;
|
|
1341
|
+
}, {
|
|
1342
|
+
type: "contracts";
|
|
1343
|
+
contracts: "*" | any[];
|
|
1344
|
+
canRegister?: boolean | undefined;
|
|
1345
|
+
canGetMetadata?: boolean | undefined;
|
|
1346
|
+
}>;
|
|
1347
|
+
export declare const ContractClassesCapabilitySchema: z.ZodObject<{
|
|
1348
|
+
type: z.ZodLiteral<"contractClasses">;
|
|
1349
|
+
classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
|
|
1350
|
+
canGetMetadata: z.ZodBoolean;
|
|
1351
|
+
}, "strip", z.ZodTypeAny, {
|
|
1352
|
+
type: "contractClasses";
|
|
1353
|
+
classes: "*" | Fr[];
|
|
1354
|
+
canGetMetadata: boolean;
|
|
1355
|
+
}, {
|
|
1356
|
+
type: "contractClasses";
|
|
1357
|
+
classes: "*" | any[];
|
|
1358
|
+
canGetMetadata: boolean;
|
|
1359
|
+
}>;
|
|
1360
|
+
export declare const GrantedContractClassesCapabilitySchema: z.ZodObject<{
|
|
1361
|
+
type: z.ZodLiteral<"contractClasses">;
|
|
1362
|
+
classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
|
|
1363
|
+
canGetMetadata: z.ZodBoolean;
|
|
1364
|
+
}, "strip", z.ZodTypeAny, {
|
|
1365
|
+
type: "contractClasses";
|
|
1366
|
+
classes: "*" | Fr[];
|
|
1367
|
+
canGetMetadata: boolean;
|
|
1368
|
+
}, {
|
|
1369
|
+
type: "contractClasses";
|
|
1370
|
+
classes: "*" | any[];
|
|
1371
|
+
canGetMetadata: boolean;
|
|
1372
|
+
}>;
|
|
1373
|
+
export declare const SimulationCapabilitySchema: z.ZodObject<{
|
|
1374
|
+
type: z.ZodLiteral<"simulation">;
|
|
1375
|
+
transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1376
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1377
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1378
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1379
|
+
}, "strip", z.ZodTypeAny, {
|
|
1380
|
+
contract: "*" | AztecAddress;
|
|
1381
|
+
function: string;
|
|
1382
|
+
}, {
|
|
1383
|
+
contract?: any;
|
|
1384
|
+
function: string;
|
|
1385
|
+
}>, "many">]>;
|
|
1386
|
+
}, "strip", z.ZodTypeAny, {
|
|
1387
|
+
scope: "*" | {
|
|
1388
|
+
contract: "*" | AztecAddress;
|
|
1389
|
+
function: string;
|
|
1390
|
+
}[];
|
|
1391
|
+
}, {
|
|
1392
|
+
scope: "*" | {
|
|
1393
|
+
contract?: any;
|
|
1394
|
+
function: string;
|
|
1395
|
+
}[];
|
|
1396
|
+
}>>;
|
|
1397
|
+
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1398
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1399
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1400
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1401
|
+
}, "strip", z.ZodTypeAny, {
|
|
1402
|
+
contract: "*" | AztecAddress;
|
|
1403
|
+
function: string;
|
|
1404
|
+
}, {
|
|
1405
|
+
contract?: any;
|
|
1406
|
+
function: string;
|
|
1407
|
+
}>, "many">]>;
|
|
1408
|
+
}, "strip", z.ZodTypeAny, {
|
|
1409
|
+
scope: "*" | {
|
|
1410
|
+
contract: "*" | AztecAddress;
|
|
1411
|
+
function: string;
|
|
1412
|
+
}[];
|
|
1413
|
+
}, {
|
|
1414
|
+
scope: "*" | {
|
|
1415
|
+
contract?: any;
|
|
1416
|
+
function: string;
|
|
1417
|
+
}[];
|
|
1418
|
+
}>>;
|
|
1419
|
+
}, "strip", z.ZodTypeAny, {
|
|
1420
|
+
type: "simulation";
|
|
1421
|
+
transactions?: {
|
|
1422
|
+
scope: "*" | {
|
|
1423
|
+
contract: "*" | AztecAddress;
|
|
1424
|
+
function: string;
|
|
1425
|
+
}[];
|
|
1426
|
+
} | undefined;
|
|
1427
|
+
utilities?: {
|
|
1428
|
+
scope: "*" | {
|
|
1429
|
+
contract: "*" | AztecAddress;
|
|
1430
|
+
function: string;
|
|
1431
|
+
}[];
|
|
1432
|
+
} | undefined;
|
|
1433
|
+
}, {
|
|
1434
|
+
type: "simulation";
|
|
1435
|
+
transactions?: {
|
|
1436
|
+
scope: "*" | {
|
|
1437
|
+
contract?: any;
|
|
1438
|
+
function: string;
|
|
1439
|
+
}[];
|
|
1440
|
+
} | undefined;
|
|
1441
|
+
utilities?: {
|
|
1442
|
+
scope: "*" | {
|
|
1443
|
+
contract?: any;
|
|
1444
|
+
function: string;
|
|
1445
|
+
}[];
|
|
1446
|
+
} | undefined;
|
|
1447
|
+
}>;
|
|
1448
|
+
export declare const GrantedSimulationCapabilitySchema: z.ZodObject<{
|
|
1449
|
+
type: z.ZodLiteral<"simulation">;
|
|
1450
|
+
transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1451
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1452
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1453
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1454
|
+
}, "strip", z.ZodTypeAny, {
|
|
1455
|
+
contract: "*" | AztecAddress;
|
|
1456
|
+
function: string;
|
|
1457
|
+
}, {
|
|
1458
|
+
contract?: any;
|
|
1459
|
+
function: string;
|
|
1460
|
+
}>, "many">]>;
|
|
1461
|
+
}, "strip", z.ZodTypeAny, {
|
|
1462
|
+
scope: "*" | {
|
|
1463
|
+
contract: "*" | AztecAddress;
|
|
1464
|
+
function: string;
|
|
1465
|
+
}[];
|
|
1466
|
+
}, {
|
|
1467
|
+
scope: "*" | {
|
|
1468
|
+
contract?: any;
|
|
1469
|
+
function: string;
|
|
1470
|
+
}[];
|
|
1471
|
+
}>>;
|
|
1472
|
+
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1473
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1474
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1475
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1476
|
+
}, "strip", z.ZodTypeAny, {
|
|
1477
|
+
contract: "*" | AztecAddress;
|
|
1478
|
+
function: string;
|
|
1479
|
+
}, {
|
|
1480
|
+
contract?: any;
|
|
1481
|
+
function: string;
|
|
1482
|
+
}>, "many">]>;
|
|
1483
|
+
}, "strip", z.ZodTypeAny, {
|
|
1484
|
+
scope: "*" | {
|
|
1485
|
+
contract: "*" | AztecAddress;
|
|
1486
|
+
function: string;
|
|
1487
|
+
}[];
|
|
1488
|
+
}, {
|
|
1489
|
+
scope: "*" | {
|
|
1490
|
+
contract?: any;
|
|
1491
|
+
function: string;
|
|
1492
|
+
}[];
|
|
1493
|
+
}>>;
|
|
1494
|
+
}, "strip", z.ZodTypeAny, {
|
|
1495
|
+
type: "simulation";
|
|
1496
|
+
transactions?: {
|
|
1497
|
+
scope: "*" | {
|
|
1498
|
+
contract: "*" | AztecAddress;
|
|
1499
|
+
function: string;
|
|
1500
|
+
}[];
|
|
1501
|
+
} | undefined;
|
|
1502
|
+
utilities?: {
|
|
1503
|
+
scope: "*" | {
|
|
1504
|
+
contract: "*" | AztecAddress;
|
|
1505
|
+
function: string;
|
|
1506
|
+
}[];
|
|
1507
|
+
} | undefined;
|
|
1508
|
+
}, {
|
|
1509
|
+
type: "simulation";
|
|
1510
|
+
transactions?: {
|
|
1511
|
+
scope: "*" | {
|
|
1512
|
+
contract?: any;
|
|
1513
|
+
function: string;
|
|
1514
|
+
}[];
|
|
1515
|
+
} | undefined;
|
|
1516
|
+
utilities?: {
|
|
1517
|
+
scope: "*" | {
|
|
1518
|
+
contract?: any;
|
|
1519
|
+
function: string;
|
|
1520
|
+
}[];
|
|
1521
|
+
} | undefined;
|
|
1522
|
+
}>;
|
|
1523
|
+
export declare const TransactionCapabilitySchema: z.ZodObject<{
|
|
1524
|
+
type: z.ZodLiteral<"transaction">;
|
|
1525
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1526
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1527
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1528
|
+
}, "strip", z.ZodTypeAny, {
|
|
1529
|
+
contract: "*" | AztecAddress;
|
|
1530
|
+
function: string;
|
|
1531
|
+
}, {
|
|
1532
|
+
contract?: any;
|
|
1533
|
+
function: string;
|
|
1534
|
+
}>, "many">]>;
|
|
1535
|
+
}, "strip", z.ZodTypeAny, {
|
|
1536
|
+
type: "transaction";
|
|
1537
|
+
scope: "*" | {
|
|
1538
|
+
contract: "*" | AztecAddress;
|
|
1539
|
+
function: string;
|
|
1540
|
+
}[];
|
|
1541
|
+
}, {
|
|
1542
|
+
type: "transaction";
|
|
1543
|
+
scope: "*" | {
|
|
1544
|
+
contract?: any;
|
|
1545
|
+
function: string;
|
|
1546
|
+
}[];
|
|
1547
|
+
}>;
|
|
1548
|
+
export declare const GrantedTransactionCapabilitySchema: z.ZodObject<{
|
|
1549
|
+
type: z.ZodLiteral<"transaction">;
|
|
1550
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1551
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1552
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1553
|
+
}, "strip", z.ZodTypeAny, {
|
|
1554
|
+
contract: "*" | AztecAddress;
|
|
1555
|
+
function: string;
|
|
1556
|
+
}, {
|
|
1557
|
+
contract?: any;
|
|
1558
|
+
function: string;
|
|
1559
|
+
}>, "many">]>;
|
|
1560
|
+
}, "strip", z.ZodTypeAny, {
|
|
1561
|
+
type: "transaction";
|
|
1562
|
+
scope: "*" | {
|
|
1563
|
+
contract: "*" | AztecAddress;
|
|
1564
|
+
function: string;
|
|
1565
|
+
}[];
|
|
1566
|
+
}, {
|
|
1567
|
+
type: "transaction";
|
|
1568
|
+
scope: "*" | {
|
|
1569
|
+
contract?: any;
|
|
1570
|
+
function: string;
|
|
1571
|
+
}[];
|
|
1572
|
+
}>;
|
|
1573
|
+
export declare const DataCapabilitySchema: z.ZodObject<{
|
|
1574
|
+
type: z.ZodLiteral<"data">;
|
|
1575
|
+
addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1576
|
+
privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1577
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1578
|
+
}, "strip", z.ZodTypeAny, {
|
|
1579
|
+
contracts: "*" | AztecAddress[];
|
|
1580
|
+
}, {
|
|
1581
|
+
contracts: "*" | any[];
|
|
1582
|
+
}>>;
|
|
1583
|
+
}, "strip", z.ZodTypeAny, {
|
|
1584
|
+
type: "data";
|
|
1585
|
+
addressBook?: boolean | undefined;
|
|
1586
|
+
privateEvents?: {
|
|
1587
|
+
contracts: "*" | AztecAddress[];
|
|
1588
|
+
} | undefined;
|
|
1589
|
+
}, {
|
|
1590
|
+
type: "data";
|
|
1591
|
+
addressBook?: boolean | undefined;
|
|
1592
|
+
privateEvents?: {
|
|
1593
|
+
contracts: "*" | any[];
|
|
1594
|
+
} | undefined;
|
|
1595
|
+
}>;
|
|
1596
|
+
export declare const GrantedDataCapabilitySchema: z.ZodObject<{
|
|
1597
|
+
type: z.ZodLiteral<"data">;
|
|
1598
|
+
addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1599
|
+
privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1600
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1601
|
+
}, "strip", z.ZodTypeAny, {
|
|
1602
|
+
contracts: "*" | AztecAddress[];
|
|
1603
|
+
}, {
|
|
1604
|
+
contracts: "*" | any[];
|
|
1605
|
+
}>>;
|
|
1606
|
+
}, "strip", z.ZodTypeAny, {
|
|
1607
|
+
type: "data";
|
|
1608
|
+
addressBook?: boolean | undefined;
|
|
1609
|
+
privateEvents?: {
|
|
1610
|
+
contracts: "*" | AztecAddress[];
|
|
1611
|
+
} | undefined;
|
|
1612
|
+
}, {
|
|
1613
|
+
type: "data";
|
|
1614
|
+
addressBook?: boolean | undefined;
|
|
1615
|
+
privateEvents?: {
|
|
1616
|
+
contracts: "*" | any[];
|
|
1617
|
+
} | undefined;
|
|
1618
|
+
}>;
|
|
1619
|
+
export declare const CapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1620
|
+
type: z.ZodLiteral<"accounts">;
|
|
1621
|
+
canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1622
|
+
canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1623
|
+
}, "strip", z.ZodTypeAny, {
|
|
1624
|
+
type: "accounts";
|
|
1625
|
+
canGet?: boolean | undefined;
|
|
1626
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1627
|
+
}, {
|
|
1628
|
+
type: "accounts";
|
|
1629
|
+
canGet?: boolean | undefined;
|
|
1630
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1631
|
+
}>, z.ZodObject<{
|
|
1632
|
+
type: z.ZodLiteral<"contracts">;
|
|
1633
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1634
|
+
canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1635
|
+
canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1636
|
+
}, "strip", z.ZodTypeAny, {
|
|
1637
|
+
type: "contracts";
|
|
1638
|
+
contracts: "*" | AztecAddress[];
|
|
1639
|
+
canRegister?: boolean | undefined;
|
|
1640
|
+
canGetMetadata?: boolean | undefined;
|
|
1641
|
+
}, {
|
|
1642
|
+
type: "contracts";
|
|
1643
|
+
contracts: "*" | any[];
|
|
1644
|
+
canRegister?: boolean | undefined;
|
|
1645
|
+
canGetMetadata?: boolean | undefined;
|
|
1646
|
+
}>, z.ZodObject<{
|
|
1647
|
+
type: z.ZodLiteral<"contractClasses">;
|
|
1648
|
+
classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
|
|
1649
|
+
canGetMetadata: z.ZodBoolean;
|
|
1650
|
+
}, "strip", z.ZodTypeAny, {
|
|
1651
|
+
type: "contractClasses";
|
|
1652
|
+
classes: "*" | Fr[];
|
|
1653
|
+
canGetMetadata: boolean;
|
|
1654
|
+
}, {
|
|
1655
|
+
type: "contractClasses";
|
|
1656
|
+
classes: "*" | any[];
|
|
1657
|
+
canGetMetadata: boolean;
|
|
1658
|
+
}>, z.ZodObject<{
|
|
1659
|
+
type: z.ZodLiteral<"simulation">;
|
|
1660
|
+
transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1661
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1662
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1663
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1664
|
+
}, "strip", z.ZodTypeAny, {
|
|
1665
|
+
contract: "*" | AztecAddress;
|
|
1666
|
+
function: string;
|
|
1667
|
+
}, {
|
|
1668
|
+
contract?: any;
|
|
1669
|
+
function: string;
|
|
1670
|
+
}>, "many">]>;
|
|
1671
|
+
}, "strip", z.ZodTypeAny, {
|
|
1672
|
+
scope: "*" | {
|
|
1673
|
+
contract: "*" | AztecAddress;
|
|
1674
|
+
function: string;
|
|
1675
|
+
}[];
|
|
1676
|
+
}, {
|
|
1677
|
+
scope: "*" | {
|
|
1678
|
+
contract?: any;
|
|
1679
|
+
function: string;
|
|
1680
|
+
}[];
|
|
1681
|
+
}>>;
|
|
1682
|
+
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1683
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1684
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1685
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1686
|
+
}, "strip", z.ZodTypeAny, {
|
|
1687
|
+
contract: "*" | AztecAddress;
|
|
1688
|
+
function: string;
|
|
1689
|
+
}, {
|
|
1690
|
+
contract?: any;
|
|
1691
|
+
function: string;
|
|
1692
|
+
}>, "many">]>;
|
|
1693
|
+
}, "strip", z.ZodTypeAny, {
|
|
1694
|
+
scope: "*" | {
|
|
1695
|
+
contract: "*" | AztecAddress;
|
|
1696
|
+
function: string;
|
|
1697
|
+
}[];
|
|
1698
|
+
}, {
|
|
1699
|
+
scope: "*" | {
|
|
1700
|
+
contract?: any;
|
|
1701
|
+
function: string;
|
|
1702
|
+
}[];
|
|
1703
|
+
}>>;
|
|
1704
|
+
}, "strip", z.ZodTypeAny, {
|
|
1705
|
+
type: "simulation";
|
|
1706
|
+
transactions?: {
|
|
1707
|
+
scope: "*" | {
|
|
1708
|
+
contract: "*" | AztecAddress;
|
|
1709
|
+
function: string;
|
|
1710
|
+
}[];
|
|
1711
|
+
} | undefined;
|
|
1712
|
+
utilities?: {
|
|
1713
|
+
scope: "*" | {
|
|
1714
|
+
contract: "*" | AztecAddress;
|
|
1715
|
+
function: string;
|
|
1716
|
+
}[];
|
|
1717
|
+
} | undefined;
|
|
1718
|
+
}, {
|
|
1719
|
+
type: "simulation";
|
|
1720
|
+
transactions?: {
|
|
1721
|
+
scope: "*" | {
|
|
1722
|
+
contract?: any;
|
|
1723
|
+
function: string;
|
|
1724
|
+
}[];
|
|
1725
|
+
} | undefined;
|
|
1726
|
+
utilities?: {
|
|
1727
|
+
scope: "*" | {
|
|
1728
|
+
contract?: any;
|
|
1729
|
+
function: string;
|
|
1730
|
+
}[];
|
|
1731
|
+
} | undefined;
|
|
1732
|
+
}>, z.ZodObject<{
|
|
1733
|
+
type: z.ZodLiteral<"transaction">;
|
|
1734
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1735
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1736
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1737
|
+
}, "strip", z.ZodTypeAny, {
|
|
1738
|
+
contract: "*" | AztecAddress;
|
|
1739
|
+
function: string;
|
|
1740
|
+
}, {
|
|
1741
|
+
contract?: any;
|
|
1742
|
+
function: string;
|
|
1743
|
+
}>, "many">]>;
|
|
1744
|
+
}, "strip", z.ZodTypeAny, {
|
|
1745
|
+
type: "transaction";
|
|
1746
|
+
scope: "*" | {
|
|
1747
|
+
contract: "*" | AztecAddress;
|
|
1748
|
+
function: string;
|
|
1749
|
+
}[];
|
|
1750
|
+
}, {
|
|
1751
|
+
type: "transaction";
|
|
1752
|
+
scope: "*" | {
|
|
1753
|
+
contract?: any;
|
|
1754
|
+
function: string;
|
|
1755
|
+
}[];
|
|
1756
|
+
}>, z.ZodObject<{
|
|
1757
|
+
type: z.ZodLiteral<"data">;
|
|
1758
|
+
addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1759
|
+
privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1760
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1761
|
+
}, "strip", z.ZodTypeAny, {
|
|
1762
|
+
contracts: "*" | AztecAddress[];
|
|
1763
|
+
}, {
|
|
1764
|
+
contracts: "*" | any[];
|
|
1765
|
+
}>>;
|
|
1766
|
+
}, "strip", z.ZodTypeAny, {
|
|
1767
|
+
type: "data";
|
|
1768
|
+
addressBook?: boolean | undefined;
|
|
1769
|
+
privateEvents?: {
|
|
1770
|
+
contracts: "*" | AztecAddress[];
|
|
1771
|
+
} | undefined;
|
|
1772
|
+
}, {
|
|
1773
|
+
type: "data";
|
|
1774
|
+
addressBook?: boolean | undefined;
|
|
1775
|
+
privateEvents?: {
|
|
1776
|
+
contracts: "*" | any[];
|
|
1777
|
+
} | undefined;
|
|
1778
|
+
}>]>;
|
|
1779
|
+
export declare const GrantedCapabilitySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1780
|
+
type: z.ZodLiteral<"accounts">;
|
|
1781
|
+
canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1782
|
+
canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1783
|
+
} & {
|
|
1784
|
+
accounts: z.ZodArray<z.ZodObject<{
|
|
1785
|
+
alias: z.ZodString;
|
|
1786
|
+
item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1787
|
+
}, "strip", z.ZodTypeAny, {
|
|
1788
|
+
alias: string;
|
|
1789
|
+
item: AztecAddress;
|
|
1790
|
+
}, {
|
|
1791
|
+
alias: string;
|
|
1792
|
+
item?: any;
|
|
1793
|
+
}>, "many">;
|
|
1794
|
+
}, "strip", z.ZodTypeAny, {
|
|
1795
|
+
type: "accounts";
|
|
1796
|
+
canGet?: boolean | undefined;
|
|
1797
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1798
|
+
accounts: {
|
|
1799
|
+
alias: string;
|
|
1800
|
+
item: AztecAddress;
|
|
1801
|
+
}[];
|
|
1802
|
+
}, {
|
|
1803
|
+
type: "accounts";
|
|
1804
|
+
canGet?: boolean | undefined;
|
|
1805
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1806
|
+
accounts: {
|
|
1807
|
+
alias: string;
|
|
1808
|
+
item?: any;
|
|
1809
|
+
}[];
|
|
1810
|
+
}>, z.ZodObject<{
|
|
1811
|
+
type: z.ZodLiteral<"contracts">;
|
|
1812
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1813
|
+
canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1814
|
+
canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1815
|
+
}, "strip", z.ZodTypeAny, {
|
|
1816
|
+
type: "contracts";
|
|
1817
|
+
contracts: "*" | AztecAddress[];
|
|
1818
|
+
canRegister?: boolean | undefined;
|
|
1819
|
+
canGetMetadata?: boolean | undefined;
|
|
1820
|
+
}, {
|
|
1821
|
+
type: "contracts";
|
|
1822
|
+
contracts: "*" | any[];
|
|
1823
|
+
canRegister?: boolean | undefined;
|
|
1824
|
+
canGetMetadata?: boolean | undefined;
|
|
1825
|
+
}>, z.ZodObject<{
|
|
1826
|
+
type: z.ZodLiteral<"contractClasses">;
|
|
1827
|
+
classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
|
|
1828
|
+
canGetMetadata: z.ZodBoolean;
|
|
1829
|
+
}, "strip", z.ZodTypeAny, {
|
|
1830
|
+
type: "contractClasses";
|
|
1831
|
+
classes: "*" | Fr[];
|
|
1832
|
+
canGetMetadata: boolean;
|
|
1833
|
+
}, {
|
|
1834
|
+
type: "contractClasses";
|
|
1835
|
+
classes: "*" | any[];
|
|
1836
|
+
canGetMetadata: boolean;
|
|
1837
|
+
}>, z.ZodObject<{
|
|
1838
|
+
type: z.ZodLiteral<"simulation">;
|
|
1839
|
+
transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1840
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1841
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1842
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1843
|
+
}, "strip", z.ZodTypeAny, {
|
|
1844
|
+
contract: "*" | AztecAddress;
|
|
1845
|
+
function: string;
|
|
1846
|
+
}, {
|
|
1847
|
+
contract?: any;
|
|
1848
|
+
function: string;
|
|
1849
|
+
}>, "many">]>;
|
|
1850
|
+
}, "strip", z.ZodTypeAny, {
|
|
1851
|
+
scope: "*" | {
|
|
1852
|
+
contract: "*" | AztecAddress;
|
|
1853
|
+
function: string;
|
|
1854
|
+
}[];
|
|
1855
|
+
}, {
|
|
1856
|
+
scope: "*" | {
|
|
1857
|
+
contract?: any;
|
|
1858
|
+
function: string;
|
|
1859
|
+
}[];
|
|
1860
|
+
}>>;
|
|
1861
|
+
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1862
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1863
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1864
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1865
|
+
}, "strip", z.ZodTypeAny, {
|
|
1866
|
+
contract: "*" | AztecAddress;
|
|
1867
|
+
function: string;
|
|
1868
|
+
}, {
|
|
1869
|
+
contract?: any;
|
|
1870
|
+
function: string;
|
|
1871
|
+
}>, "many">]>;
|
|
1872
|
+
}, "strip", z.ZodTypeAny, {
|
|
1873
|
+
scope: "*" | {
|
|
1874
|
+
contract: "*" | AztecAddress;
|
|
1875
|
+
function: string;
|
|
1876
|
+
}[];
|
|
1877
|
+
}, {
|
|
1878
|
+
scope: "*" | {
|
|
1879
|
+
contract?: any;
|
|
1880
|
+
function: string;
|
|
1881
|
+
}[];
|
|
1882
|
+
}>>;
|
|
1883
|
+
}, "strip", z.ZodTypeAny, {
|
|
1884
|
+
type: "simulation";
|
|
1885
|
+
transactions?: {
|
|
1886
|
+
scope: "*" | {
|
|
1887
|
+
contract: "*" | AztecAddress;
|
|
1888
|
+
function: string;
|
|
1889
|
+
}[];
|
|
1890
|
+
} | undefined;
|
|
1891
|
+
utilities?: {
|
|
1892
|
+
scope: "*" | {
|
|
1893
|
+
contract: "*" | AztecAddress;
|
|
1894
|
+
function: string;
|
|
1895
|
+
}[];
|
|
1896
|
+
} | undefined;
|
|
1897
|
+
}, {
|
|
1898
|
+
type: "simulation";
|
|
1899
|
+
transactions?: {
|
|
1900
|
+
scope: "*" | {
|
|
1901
|
+
contract?: any;
|
|
1902
|
+
function: string;
|
|
1903
|
+
}[];
|
|
1904
|
+
} | undefined;
|
|
1905
|
+
utilities?: {
|
|
1906
|
+
scope: "*" | {
|
|
1907
|
+
contract?: any;
|
|
1908
|
+
function: string;
|
|
1909
|
+
}[];
|
|
1910
|
+
} | undefined;
|
|
1911
|
+
}>, z.ZodObject<{
|
|
1912
|
+
type: z.ZodLiteral<"transaction">;
|
|
1913
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
1914
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
1915
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
1916
|
+
}, "strip", z.ZodTypeAny, {
|
|
1917
|
+
contract: "*" | AztecAddress;
|
|
1918
|
+
function: string;
|
|
1919
|
+
}, {
|
|
1920
|
+
contract?: any;
|
|
1921
|
+
function: string;
|
|
1922
|
+
}>, "many">]>;
|
|
1923
|
+
}, "strip", z.ZodTypeAny, {
|
|
1924
|
+
type: "transaction";
|
|
1925
|
+
scope: "*" | {
|
|
1926
|
+
contract: "*" | AztecAddress;
|
|
1927
|
+
function: string;
|
|
1928
|
+
}[];
|
|
1929
|
+
}, {
|
|
1930
|
+
type: "transaction";
|
|
1931
|
+
scope: "*" | {
|
|
1932
|
+
contract?: any;
|
|
1933
|
+
function: string;
|
|
1934
|
+
}[];
|
|
1935
|
+
}>, z.ZodObject<{
|
|
1936
|
+
type: z.ZodLiteral<"data">;
|
|
1937
|
+
addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1938
|
+
privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
1939
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1940
|
+
}, "strip", z.ZodTypeAny, {
|
|
1941
|
+
contracts: "*" | AztecAddress[];
|
|
1942
|
+
}, {
|
|
1943
|
+
contracts: "*" | any[];
|
|
1944
|
+
}>>;
|
|
1945
|
+
}, "strip", z.ZodTypeAny, {
|
|
1946
|
+
type: "data";
|
|
1947
|
+
addressBook?: boolean | undefined;
|
|
1948
|
+
privateEvents?: {
|
|
1949
|
+
contracts: "*" | AztecAddress[];
|
|
1950
|
+
} | undefined;
|
|
1951
|
+
}, {
|
|
1952
|
+
type: "data";
|
|
1953
|
+
addressBook?: boolean | undefined;
|
|
1954
|
+
privateEvents?: {
|
|
1955
|
+
contracts: "*" | any[];
|
|
1956
|
+
} | undefined;
|
|
1957
|
+
}>]>;
|
|
1958
|
+
export declare const AppCapabilitiesSchema: z.ZodObject<{
|
|
1959
|
+
version: z.ZodLiteral<"1.0">;
|
|
1960
|
+
metadata: z.ZodObject<{
|
|
1961
|
+
name: z.ZodString;
|
|
1962
|
+
version: z.ZodString;
|
|
1963
|
+
description: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
1964
|
+
url: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
1965
|
+
icon: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
1966
|
+
}, "strip", z.ZodTypeAny, {
|
|
1967
|
+
name: string;
|
|
1968
|
+
version: string;
|
|
1969
|
+
description?: string | undefined;
|
|
1970
|
+
url?: string | undefined;
|
|
1971
|
+
icon?: string | undefined;
|
|
1972
|
+
}, {
|
|
1973
|
+
name: string;
|
|
1974
|
+
version: string;
|
|
1975
|
+
description?: string | undefined;
|
|
1976
|
+
url?: string | undefined;
|
|
1977
|
+
icon?: string | undefined;
|
|
1978
|
+
}>;
|
|
1979
|
+
capabilities: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1980
|
+
type: z.ZodLiteral<"accounts">;
|
|
1981
|
+
canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1982
|
+
canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1983
|
+
}, "strip", z.ZodTypeAny, {
|
|
1984
|
+
type: "accounts";
|
|
1985
|
+
canGet?: boolean | undefined;
|
|
1986
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1987
|
+
}, {
|
|
1988
|
+
type: "accounts";
|
|
1989
|
+
canGet?: boolean | undefined;
|
|
1990
|
+
canCreateAuthWit?: boolean | undefined;
|
|
1991
|
+
}>, z.ZodObject<{
|
|
1992
|
+
type: z.ZodLiteral<"contracts">;
|
|
1993
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
1994
|
+
canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1995
|
+
canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
1996
|
+
}, "strip", z.ZodTypeAny, {
|
|
1997
|
+
type: "contracts";
|
|
1998
|
+
contracts: "*" | AztecAddress[];
|
|
1999
|
+
canRegister?: boolean | undefined;
|
|
2000
|
+
canGetMetadata?: boolean | undefined;
|
|
2001
|
+
}, {
|
|
2002
|
+
type: "contracts";
|
|
2003
|
+
contracts: "*" | any[];
|
|
2004
|
+
canRegister?: boolean | undefined;
|
|
2005
|
+
canGetMetadata?: boolean | undefined;
|
|
2006
|
+
}>, z.ZodObject<{
|
|
2007
|
+
type: z.ZodLiteral<"contractClasses">;
|
|
2008
|
+
classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
|
|
2009
|
+
canGetMetadata: z.ZodBoolean;
|
|
2010
|
+
}, "strip", z.ZodTypeAny, {
|
|
2011
|
+
type: "contractClasses";
|
|
2012
|
+
classes: "*" | Fr[];
|
|
2013
|
+
canGetMetadata: boolean;
|
|
2014
|
+
}, {
|
|
2015
|
+
type: "contractClasses";
|
|
2016
|
+
classes: "*" | any[];
|
|
2017
|
+
canGetMetadata: boolean;
|
|
2018
|
+
}>, z.ZodObject<{
|
|
2019
|
+
type: z.ZodLiteral<"simulation">;
|
|
2020
|
+
transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2021
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2022
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2023
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2024
|
+
}, "strip", z.ZodTypeAny, {
|
|
2025
|
+
contract: "*" | AztecAddress;
|
|
2026
|
+
function: string;
|
|
2027
|
+
}, {
|
|
2028
|
+
contract?: any;
|
|
2029
|
+
function: string;
|
|
2030
|
+
}>, "many">]>;
|
|
2031
|
+
}, "strip", z.ZodTypeAny, {
|
|
2032
|
+
scope: "*" | {
|
|
2033
|
+
contract: "*" | AztecAddress;
|
|
2034
|
+
function: string;
|
|
2035
|
+
}[];
|
|
2036
|
+
}, {
|
|
2037
|
+
scope: "*" | {
|
|
2038
|
+
contract?: any;
|
|
2039
|
+
function: string;
|
|
2040
|
+
}[];
|
|
2041
|
+
}>>;
|
|
2042
|
+
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2043
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2044
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2045
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2046
|
+
}, "strip", z.ZodTypeAny, {
|
|
2047
|
+
contract: "*" | AztecAddress;
|
|
2048
|
+
function: string;
|
|
2049
|
+
}, {
|
|
2050
|
+
contract?: any;
|
|
2051
|
+
function: string;
|
|
2052
|
+
}>, "many">]>;
|
|
2053
|
+
}, "strip", z.ZodTypeAny, {
|
|
2054
|
+
scope: "*" | {
|
|
2055
|
+
contract: "*" | AztecAddress;
|
|
2056
|
+
function: string;
|
|
2057
|
+
}[];
|
|
2058
|
+
}, {
|
|
2059
|
+
scope: "*" | {
|
|
2060
|
+
contract?: any;
|
|
2061
|
+
function: string;
|
|
2062
|
+
}[];
|
|
2063
|
+
}>>;
|
|
2064
|
+
}, "strip", z.ZodTypeAny, {
|
|
2065
|
+
type: "simulation";
|
|
2066
|
+
transactions?: {
|
|
2067
|
+
scope: "*" | {
|
|
2068
|
+
contract: "*" | AztecAddress;
|
|
2069
|
+
function: string;
|
|
2070
|
+
}[];
|
|
2071
|
+
} | undefined;
|
|
2072
|
+
utilities?: {
|
|
2073
|
+
scope: "*" | {
|
|
2074
|
+
contract: "*" | AztecAddress;
|
|
2075
|
+
function: string;
|
|
2076
|
+
}[];
|
|
2077
|
+
} | undefined;
|
|
2078
|
+
}, {
|
|
2079
|
+
type: "simulation";
|
|
2080
|
+
transactions?: {
|
|
2081
|
+
scope: "*" | {
|
|
2082
|
+
contract?: any;
|
|
2083
|
+
function: string;
|
|
2084
|
+
}[];
|
|
2085
|
+
} | undefined;
|
|
2086
|
+
utilities?: {
|
|
2087
|
+
scope: "*" | {
|
|
2088
|
+
contract?: any;
|
|
2089
|
+
function: string;
|
|
2090
|
+
}[];
|
|
2091
|
+
} | undefined;
|
|
2092
|
+
}>, z.ZodObject<{
|
|
2093
|
+
type: z.ZodLiteral<"transaction">;
|
|
2094
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2095
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2096
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2097
|
+
}, "strip", z.ZodTypeAny, {
|
|
2098
|
+
contract: "*" | AztecAddress;
|
|
2099
|
+
function: string;
|
|
2100
|
+
}, {
|
|
2101
|
+
contract?: any;
|
|
2102
|
+
function: string;
|
|
2103
|
+
}>, "many">]>;
|
|
2104
|
+
}, "strip", z.ZodTypeAny, {
|
|
2105
|
+
type: "transaction";
|
|
2106
|
+
scope: "*" | {
|
|
2107
|
+
contract: "*" | AztecAddress;
|
|
2108
|
+
function: string;
|
|
2109
|
+
}[];
|
|
2110
|
+
}, {
|
|
2111
|
+
type: "transaction";
|
|
2112
|
+
scope: "*" | {
|
|
2113
|
+
contract?: any;
|
|
2114
|
+
function: string;
|
|
2115
|
+
}[];
|
|
2116
|
+
}>, z.ZodObject<{
|
|
2117
|
+
type: z.ZodLiteral<"data">;
|
|
2118
|
+
addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
2119
|
+
privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2120
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
2121
|
+
}, "strip", z.ZodTypeAny, {
|
|
2122
|
+
contracts: "*" | AztecAddress[];
|
|
2123
|
+
}, {
|
|
2124
|
+
contracts: "*" | any[];
|
|
2125
|
+
}>>;
|
|
2126
|
+
}, "strip", z.ZodTypeAny, {
|
|
2127
|
+
type: "data";
|
|
2128
|
+
addressBook?: boolean | undefined;
|
|
2129
|
+
privateEvents?: {
|
|
2130
|
+
contracts: "*" | AztecAddress[];
|
|
2131
|
+
} | undefined;
|
|
2132
|
+
}, {
|
|
2133
|
+
type: "data";
|
|
2134
|
+
addressBook?: boolean | undefined;
|
|
2135
|
+
privateEvents?: {
|
|
2136
|
+
contracts: "*" | any[];
|
|
2137
|
+
} | undefined;
|
|
2138
|
+
}>]>, "many">;
|
|
2139
|
+
behavior: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2140
|
+
mode: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodEnum<["strict", "permissive"]>>;
|
|
2141
|
+
expiration: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
|
|
2142
|
+
}, "strip", z.ZodTypeAny, {
|
|
2143
|
+
mode?: "permissive" | "strict" | undefined;
|
|
2144
|
+
expiration?: number | undefined;
|
|
2145
|
+
}, {
|
|
2146
|
+
mode?: "permissive" | "strict" | undefined;
|
|
2147
|
+
expiration?: number | undefined;
|
|
2148
|
+
}>>;
|
|
2149
|
+
}, "strip", z.ZodTypeAny, {
|
|
2150
|
+
version: "1.0";
|
|
2151
|
+
metadata: {
|
|
2152
|
+
name: string;
|
|
2153
|
+
version: string;
|
|
2154
|
+
description?: string | undefined;
|
|
2155
|
+
url?: string | undefined;
|
|
2156
|
+
icon?: string | undefined;
|
|
2157
|
+
};
|
|
2158
|
+
capabilities: ({
|
|
2159
|
+
type: "accounts";
|
|
2160
|
+
canGet?: boolean | undefined;
|
|
2161
|
+
canCreateAuthWit?: boolean | undefined;
|
|
2162
|
+
} | {
|
|
2163
|
+
type: "contracts";
|
|
2164
|
+
contracts: "*" | AztecAddress[];
|
|
2165
|
+
canRegister?: boolean | undefined;
|
|
2166
|
+
canGetMetadata?: boolean | undefined;
|
|
2167
|
+
} | {
|
|
2168
|
+
type: "contractClasses";
|
|
2169
|
+
classes: "*" | Fr[];
|
|
2170
|
+
canGetMetadata: boolean;
|
|
2171
|
+
} | {
|
|
2172
|
+
type: "simulation";
|
|
2173
|
+
transactions?: {
|
|
2174
|
+
scope: "*" | {
|
|
2175
|
+
contract: "*" | AztecAddress;
|
|
2176
|
+
function: string;
|
|
2177
|
+
}[];
|
|
2178
|
+
} | undefined;
|
|
2179
|
+
utilities?: {
|
|
2180
|
+
scope: "*" | {
|
|
2181
|
+
contract: "*" | AztecAddress;
|
|
2182
|
+
function: string;
|
|
2183
|
+
}[];
|
|
2184
|
+
} | undefined;
|
|
2185
|
+
} | {
|
|
2186
|
+
type: "transaction";
|
|
2187
|
+
scope: "*" | {
|
|
2188
|
+
contract: "*" | AztecAddress;
|
|
2189
|
+
function: string;
|
|
2190
|
+
}[];
|
|
2191
|
+
} | {
|
|
2192
|
+
type: "data";
|
|
2193
|
+
addressBook?: boolean | undefined;
|
|
2194
|
+
privateEvents?: {
|
|
2195
|
+
contracts: "*" | AztecAddress[];
|
|
2196
|
+
} | undefined;
|
|
2197
|
+
})[];
|
|
2198
|
+
behavior?: {
|
|
2199
|
+
mode?: "permissive" | "strict" | undefined;
|
|
2200
|
+
expiration?: number | undefined;
|
|
2201
|
+
} | undefined;
|
|
2202
|
+
}, {
|
|
2203
|
+
version: "1.0";
|
|
2204
|
+
metadata: {
|
|
2205
|
+
name: string;
|
|
2206
|
+
version: string;
|
|
2207
|
+
description?: string | undefined;
|
|
2208
|
+
url?: string | undefined;
|
|
2209
|
+
icon?: string | undefined;
|
|
2210
|
+
};
|
|
2211
|
+
capabilities: ({
|
|
2212
|
+
type: "accounts";
|
|
2213
|
+
canGet?: boolean | undefined;
|
|
2214
|
+
canCreateAuthWit?: boolean | undefined;
|
|
2215
|
+
} | {
|
|
2216
|
+
type: "contracts";
|
|
2217
|
+
contracts: "*" | any[];
|
|
2218
|
+
canRegister?: boolean | undefined;
|
|
2219
|
+
canGetMetadata?: boolean | undefined;
|
|
2220
|
+
} | {
|
|
2221
|
+
type: "contractClasses";
|
|
2222
|
+
classes: "*" | any[];
|
|
2223
|
+
canGetMetadata: boolean;
|
|
2224
|
+
} | {
|
|
2225
|
+
type: "simulation";
|
|
2226
|
+
transactions?: {
|
|
2227
|
+
scope: "*" | {
|
|
2228
|
+
contract?: any;
|
|
2229
|
+
function: string;
|
|
2230
|
+
}[];
|
|
2231
|
+
} | undefined;
|
|
2232
|
+
utilities?: {
|
|
2233
|
+
scope: "*" | {
|
|
2234
|
+
contract?: any;
|
|
2235
|
+
function: string;
|
|
2236
|
+
}[];
|
|
2237
|
+
} | undefined;
|
|
2238
|
+
} | {
|
|
2239
|
+
type: "transaction";
|
|
2240
|
+
scope: "*" | {
|
|
2241
|
+
contract?: any;
|
|
2242
|
+
function: string;
|
|
2243
|
+
}[];
|
|
2244
|
+
} | {
|
|
2245
|
+
type: "data";
|
|
2246
|
+
addressBook?: boolean | undefined;
|
|
2247
|
+
privateEvents?: {
|
|
2248
|
+
contracts: "*" | any[];
|
|
2249
|
+
} | undefined;
|
|
2250
|
+
})[];
|
|
2251
|
+
behavior?: {
|
|
2252
|
+
mode?: "permissive" | "strict" | undefined;
|
|
2253
|
+
expiration?: number | undefined;
|
|
2254
|
+
} | undefined;
|
|
2255
|
+
}>;
|
|
2256
|
+
export declare const WalletCapabilitiesSchema: z.ZodObject<{
|
|
2257
|
+
version: z.ZodLiteral<"1.0">;
|
|
2258
|
+
granted: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2259
|
+
type: z.ZodLiteral<"accounts">;
|
|
2260
|
+
canGet: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
2261
|
+
canCreateAuthWit: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
2262
|
+
} & {
|
|
2263
|
+
accounts: z.ZodArray<z.ZodObject<{
|
|
2264
|
+
alias: z.ZodString;
|
|
2265
|
+
item: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
2266
|
+
}, "strip", z.ZodTypeAny, {
|
|
2267
|
+
alias: string;
|
|
2268
|
+
item: AztecAddress;
|
|
2269
|
+
}, {
|
|
2270
|
+
alias: string;
|
|
2271
|
+
item?: any;
|
|
2272
|
+
}>, "many">;
|
|
2273
|
+
}, "strip", z.ZodTypeAny, {
|
|
2274
|
+
type: "accounts";
|
|
2275
|
+
canGet?: boolean | undefined;
|
|
2276
|
+
canCreateAuthWit?: boolean | undefined;
|
|
2277
|
+
accounts: {
|
|
2278
|
+
alias: string;
|
|
2279
|
+
item: AztecAddress;
|
|
2280
|
+
}[];
|
|
2281
|
+
}, {
|
|
2282
|
+
type: "accounts";
|
|
2283
|
+
canGet?: boolean | undefined;
|
|
2284
|
+
canCreateAuthWit?: boolean | undefined;
|
|
2285
|
+
accounts: {
|
|
2286
|
+
alias: string;
|
|
2287
|
+
item?: any;
|
|
2288
|
+
}[];
|
|
2289
|
+
}>, z.ZodObject<{
|
|
2290
|
+
type: z.ZodLiteral<"contracts">;
|
|
2291
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
2292
|
+
canRegister: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
2293
|
+
canGetMetadata: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
2294
|
+
}, "strip", z.ZodTypeAny, {
|
|
2295
|
+
type: "contracts";
|
|
2296
|
+
contracts: "*" | AztecAddress[];
|
|
2297
|
+
canRegister?: boolean | undefined;
|
|
2298
|
+
canGetMetadata?: boolean | undefined;
|
|
2299
|
+
}, {
|
|
2300
|
+
type: "contracts";
|
|
2301
|
+
contracts: "*" | any[];
|
|
2302
|
+
canRegister?: boolean | undefined;
|
|
2303
|
+
canGetMetadata?: boolean | undefined;
|
|
2304
|
+
}>, z.ZodObject<{
|
|
2305
|
+
type: z.ZodLiteral<"contractClasses">;
|
|
2306
|
+
classes: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">]>;
|
|
2307
|
+
canGetMetadata: z.ZodBoolean;
|
|
2308
|
+
}, "strip", z.ZodTypeAny, {
|
|
2309
|
+
type: "contractClasses";
|
|
2310
|
+
classes: "*" | Fr[];
|
|
2311
|
+
canGetMetadata: boolean;
|
|
2312
|
+
}, {
|
|
2313
|
+
type: "contractClasses";
|
|
2314
|
+
classes: "*" | any[];
|
|
2315
|
+
canGetMetadata: boolean;
|
|
2316
|
+
}>, z.ZodObject<{
|
|
2317
|
+
type: z.ZodLiteral<"simulation">;
|
|
2318
|
+
transactions: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2319
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2320
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2321
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2322
|
+
}, "strip", z.ZodTypeAny, {
|
|
2323
|
+
contract: "*" | AztecAddress;
|
|
2324
|
+
function: string;
|
|
2325
|
+
}, {
|
|
2326
|
+
contract?: any;
|
|
2327
|
+
function: string;
|
|
2328
|
+
}>, "many">]>;
|
|
2329
|
+
}, "strip", z.ZodTypeAny, {
|
|
2330
|
+
scope: "*" | {
|
|
2331
|
+
contract: "*" | AztecAddress;
|
|
2332
|
+
function: string;
|
|
2333
|
+
}[];
|
|
2334
|
+
}, {
|
|
2335
|
+
scope: "*" | {
|
|
2336
|
+
contract?: any;
|
|
2337
|
+
function: string;
|
|
2338
|
+
}[];
|
|
2339
|
+
}>>;
|
|
2340
|
+
utilities: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2341
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2342
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2343
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2344
|
+
}, "strip", z.ZodTypeAny, {
|
|
2345
|
+
contract: "*" | AztecAddress;
|
|
2346
|
+
function: string;
|
|
2347
|
+
}, {
|
|
2348
|
+
contract?: any;
|
|
2349
|
+
function: string;
|
|
2350
|
+
}>, "many">]>;
|
|
2351
|
+
}, "strip", z.ZodTypeAny, {
|
|
2352
|
+
scope: "*" | {
|
|
2353
|
+
contract: "*" | AztecAddress;
|
|
2354
|
+
function: string;
|
|
2355
|
+
}[];
|
|
2356
|
+
}, {
|
|
2357
|
+
scope: "*" | {
|
|
2358
|
+
contract?: any;
|
|
2359
|
+
function: string;
|
|
2360
|
+
}[];
|
|
2361
|
+
}>>;
|
|
2362
|
+
}, "strip", z.ZodTypeAny, {
|
|
2363
|
+
type: "simulation";
|
|
2364
|
+
transactions?: {
|
|
2365
|
+
scope: "*" | {
|
|
2366
|
+
contract: "*" | AztecAddress;
|
|
2367
|
+
function: string;
|
|
2368
|
+
}[];
|
|
2369
|
+
} | undefined;
|
|
2370
|
+
utilities?: {
|
|
2371
|
+
scope: "*" | {
|
|
2372
|
+
contract: "*" | AztecAddress;
|
|
2373
|
+
function: string;
|
|
2374
|
+
}[];
|
|
2375
|
+
} | undefined;
|
|
2376
|
+
}, {
|
|
2377
|
+
type: "simulation";
|
|
2378
|
+
transactions?: {
|
|
2379
|
+
scope: "*" | {
|
|
2380
|
+
contract?: any;
|
|
2381
|
+
function: string;
|
|
2382
|
+
}[];
|
|
2383
|
+
} | undefined;
|
|
2384
|
+
utilities?: {
|
|
2385
|
+
scope: "*" | {
|
|
2386
|
+
contract?: any;
|
|
2387
|
+
function: string;
|
|
2388
|
+
}[];
|
|
2389
|
+
} | undefined;
|
|
2390
|
+
}>, z.ZodObject<{
|
|
2391
|
+
type: z.ZodLiteral<"transaction">;
|
|
2392
|
+
scope: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<z.ZodObject<{
|
|
2393
|
+
contract: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, z.ZodLiteral<"*">]>;
|
|
2394
|
+
function: z.ZodUnion<[z.ZodString, z.ZodLiteral<"*">]>;
|
|
2395
|
+
}, "strip", z.ZodTypeAny, {
|
|
2396
|
+
contract: "*" | AztecAddress;
|
|
2397
|
+
function: string;
|
|
2398
|
+
}, {
|
|
2399
|
+
contract?: any;
|
|
2400
|
+
function: string;
|
|
2401
|
+
}>, "many">]>;
|
|
2402
|
+
}, "strip", z.ZodTypeAny, {
|
|
2403
|
+
type: "transaction";
|
|
2404
|
+
scope: "*" | {
|
|
2405
|
+
contract: "*" | AztecAddress;
|
|
2406
|
+
function: string;
|
|
2407
|
+
}[];
|
|
2408
|
+
}, {
|
|
2409
|
+
type: "transaction";
|
|
2410
|
+
scope: "*" | {
|
|
2411
|
+
contract?: any;
|
|
2412
|
+
function: string;
|
|
2413
|
+
}[];
|
|
2414
|
+
}>, z.ZodObject<{
|
|
2415
|
+
type: z.ZodLiteral<"data">;
|
|
2416
|
+
addressBook: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodBoolean>;
|
|
2417
|
+
privateEvents: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodObject<{
|
|
2418
|
+
contracts: z.ZodUnion<[z.ZodLiteral<"*">, z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">]>;
|
|
2419
|
+
}, "strip", z.ZodTypeAny, {
|
|
2420
|
+
contracts: "*" | AztecAddress[];
|
|
2421
|
+
}, {
|
|
2422
|
+
contracts: "*" | any[];
|
|
2423
|
+
}>>;
|
|
2424
|
+
}, "strip", z.ZodTypeAny, {
|
|
2425
|
+
type: "data";
|
|
2426
|
+
addressBook?: boolean | undefined;
|
|
2427
|
+
privateEvents?: {
|
|
2428
|
+
contracts: "*" | AztecAddress[];
|
|
2429
|
+
} | undefined;
|
|
2430
|
+
}, {
|
|
2431
|
+
type: "data";
|
|
2432
|
+
addressBook?: boolean | undefined;
|
|
2433
|
+
privateEvents?: {
|
|
2434
|
+
contracts: "*" | any[];
|
|
2435
|
+
} | undefined;
|
|
2436
|
+
}>]>, "many">;
|
|
2437
|
+
wallet: z.ZodObject<{
|
|
2438
|
+
name: z.ZodString;
|
|
2439
|
+
version: z.ZodString;
|
|
2440
|
+
}, "strip", z.ZodTypeAny, {
|
|
2441
|
+
name: string;
|
|
2442
|
+
version: string;
|
|
2443
|
+
}, {
|
|
2444
|
+
name: string;
|
|
2445
|
+
version: string;
|
|
2446
|
+
}>;
|
|
2447
|
+
expiresAt: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodNumber>;
|
|
2448
|
+
}, "strip", z.ZodTypeAny, {
|
|
2449
|
+
version: "1.0";
|
|
2450
|
+
granted: ({
|
|
2451
|
+
type: "accounts";
|
|
2452
|
+
canGet?: boolean | undefined;
|
|
2453
|
+
canCreateAuthWit?: boolean | undefined;
|
|
2454
|
+
accounts: {
|
|
2455
|
+
alias: string;
|
|
2456
|
+
item: AztecAddress;
|
|
2457
|
+
}[];
|
|
2458
|
+
} | {
|
|
2459
|
+
type: "contracts";
|
|
2460
|
+
contracts: "*" | AztecAddress[];
|
|
2461
|
+
canRegister?: boolean | undefined;
|
|
2462
|
+
canGetMetadata?: boolean | undefined;
|
|
2463
|
+
} | {
|
|
2464
|
+
type: "contractClasses";
|
|
2465
|
+
classes: "*" | Fr[];
|
|
2466
|
+
canGetMetadata: boolean;
|
|
2467
|
+
} | {
|
|
2468
|
+
type: "simulation";
|
|
2469
|
+
transactions?: {
|
|
2470
|
+
scope: "*" | {
|
|
2471
|
+
contract: "*" | AztecAddress;
|
|
2472
|
+
function: string;
|
|
2473
|
+
}[];
|
|
2474
|
+
} | undefined;
|
|
2475
|
+
utilities?: {
|
|
2476
|
+
scope: "*" | {
|
|
2477
|
+
contract: "*" | AztecAddress;
|
|
2478
|
+
function: string;
|
|
2479
|
+
}[];
|
|
2480
|
+
} | undefined;
|
|
2481
|
+
} | {
|
|
2482
|
+
type: "transaction";
|
|
2483
|
+
scope: "*" | {
|
|
2484
|
+
contract: "*" | AztecAddress;
|
|
2485
|
+
function: string;
|
|
2486
|
+
}[];
|
|
2487
|
+
} | {
|
|
2488
|
+
type: "data";
|
|
2489
|
+
addressBook?: boolean | undefined;
|
|
2490
|
+
privateEvents?: {
|
|
2491
|
+
contracts: "*" | AztecAddress[];
|
|
2492
|
+
} | undefined;
|
|
2493
|
+
})[];
|
|
2494
|
+
wallet: {
|
|
2495
|
+
name: string;
|
|
2496
|
+
version: string;
|
|
2497
|
+
};
|
|
2498
|
+
expiresAt?: number | undefined;
|
|
2499
|
+
}, {
|
|
2500
|
+
version: "1.0";
|
|
2501
|
+
granted: ({
|
|
2502
|
+
type: "accounts";
|
|
2503
|
+
canGet?: boolean | undefined;
|
|
2504
|
+
canCreateAuthWit?: boolean | undefined;
|
|
2505
|
+
accounts: {
|
|
2506
|
+
alias: string;
|
|
2507
|
+
item?: any;
|
|
2508
|
+
}[];
|
|
2509
|
+
} | {
|
|
2510
|
+
type: "contracts";
|
|
2511
|
+
contracts: "*" | any[];
|
|
2512
|
+
canRegister?: boolean | undefined;
|
|
2513
|
+
canGetMetadata?: boolean | undefined;
|
|
2514
|
+
} | {
|
|
2515
|
+
type: "contractClasses";
|
|
2516
|
+
classes: "*" | any[];
|
|
2517
|
+
canGetMetadata: boolean;
|
|
2518
|
+
} | {
|
|
2519
|
+
type: "simulation";
|
|
2520
|
+
transactions?: {
|
|
2521
|
+
scope: "*" | {
|
|
2522
|
+
contract?: any;
|
|
2523
|
+
function: string;
|
|
2524
|
+
}[];
|
|
2525
|
+
} | undefined;
|
|
2526
|
+
utilities?: {
|
|
2527
|
+
scope: "*" | {
|
|
2528
|
+
contract?: any;
|
|
2529
|
+
function: string;
|
|
2530
|
+
}[];
|
|
2531
|
+
} | undefined;
|
|
2532
|
+
} | {
|
|
2533
|
+
type: "transaction";
|
|
2534
|
+
scope: "*" | {
|
|
2535
|
+
contract?: any;
|
|
2536
|
+
function: string;
|
|
2537
|
+
}[];
|
|
2538
|
+
} | {
|
|
2539
|
+
type: "data";
|
|
2540
|
+
addressBook?: boolean | undefined;
|
|
2541
|
+
privateEvents?: {
|
|
2542
|
+
contracts: "*" | any[];
|
|
2543
|
+
} | undefined;
|
|
2544
|
+
})[];
|
|
2545
|
+
wallet: {
|
|
2546
|
+
name: string;
|
|
2547
|
+
version: string;
|
|
2548
|
+
};
|
|
2549
|
+
expiresAt?: number | undefined;
|
|
2550
|
+
}>;
|
|
1213
2551
|
declare const BatchedMethodSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObject<{
|
|
1214
|
-
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2552
|
+
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility">;
|
|
1215
2553
|
args: z.ZodTuple<any, any>;
|
|
1216
2554
|
}, "strip", z.ZodTypeAny, {
|
|
1217
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2555
|
+
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility";
|
|
1218
2556
|
args: any[];
|
|
1219
2557
|
}, {
|
|
1220
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2558
|
+
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility";
|
|
1221
2559
|
args: any[];
|
|
1222
2560
|
}>, ...z.ZodObject<{
|
|
1223
|
-
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2561
|
+
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility">;
|
|
1224
2562
|
args: z.ZodTuple<any, any>;
|
|
1225
2563
|
}, "strip", z.ZodTypeAny, {
|
|
1226
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2564
|
+
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility";
|
|
1227
2565
|
args: any[];
|
|
1228
2566
|
}, {
|
|
1229
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2567
|
+
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility";
|
|
1230
2568
|
args: any[];
|
|
1231
2569
|
}>[]]>, BatchedResultSchema: z.ZodDiscriminatedUnion<"name", [z.ZodObject<{
|
|
1232
|
-
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2570
|
+
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility">;
|
|
1233
2571
|
result: z.ZodTypeAny;
|
|
1234
2572
|
}, "strip", z.ZodTypeAny, {
|
|
1235
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2573
|
+
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility";
|
|
1236
2574
|
result?: any;
|
|
1237
2575
|
}, {
|
|
1238
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2576
|
+
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility";
|
|
1239
2577
|
result?: any;
|
|
1240
2578
|
}>, ...z.ZodObject<{
|
|
1241
|
-
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2579
|
+
name: z.ZodLiteral<"createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility">;
|
|
1242
2580
|
result: z.ZodTypeAny;
|
|
1243
2581
|
}, "strip", z.ZodTypeAny, {
|
|
1244
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2582
|
+
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility";
|
|
1245
2583
|
result?: any;
|
|
1246
2584
|
}, {
|
|
1247
|
-
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "
|
|
2585
|
+
name: "createAuthWit" | "getAccounts" | "getAddressBook" | "getChainInfo" | "getContractClassMetadata" | "getContractMetadata" | "getPrivateEvents" | "profileTx" | "registerContract" | "registerSender" | "requestCapabilities" | "sendTx" | "simulateTx" | "simulateUtility";
|
|
1248
2586
|
result?: any;
|
|
1249
2587
|
}>[]]>;
|
|
1250
2588
|
export { BatchedMethodSchema, BatchedResultSchema };
|
|
1251
2589
|
export declare const WalletSchema: ApiSchemaFor<Wallet>;
|
|
1252
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFHTCxLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLFlBQVksRUFDakIsWUFBWSxFQUNiLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3pELE9BQU8sS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxLQUFLLDJCQUEyQixFQUFxQyxNQUFNLHdCQUF3QixDQUFDO0FBQzdHLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN4QyxPQUFPLEVBQW9CLEtBQUssWUFBWSxFQUE2QixNQUFNLHVCQUF1QixDQUFDO0FBQ3ZHLE9BQU8sRUFDTCxPQUFPLEVBQ1AsWUFBWSxFQUNaLE1BQU0sRUFDTixlQUFlLEVBQ2YsU0FBUyxFQUNULGtCQUFrQixFQUNsQix1QkFBdUIsRUFFeEIsTUFBTSxrQkFBa0IsQ0FBQztBQUMxQixPQUFPLEtBQUssRUFBRSxnQkFBZ0IsRUFBRSxJQUFJLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUUvRCxPQUFPLEVBQUUsQ0FBQyxFQUFFLE1BQU0sS0FBSyxDQUFDO0FBRXhCLE9BQU8sS0FBSyxFQUNWLG9CQUFvQixFQUNwQixpQkFBaUIsRUFDakIseUJBQXlCLEVBQ3pCLHNCQUFzQixFQUN0QiwwQkFBMEIsRUFDM0IsTUFBTSxvQ0FBb0MsQ0FBQztBQUM1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
|
|
2590
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFHTCxLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLFlBQVksRUFDakIsWUFBWSxFQUNiLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3pELE9BQU8sS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxLQUFLLDJCQUEyQixFQUFxQyxNQUFNLHdCQUF3QixDQUFDO0FBQzdHLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN4QyxPQUFPLEVBQW9CLEtBQUssWUFBWSxFQUE2QixNQUFNLHVCQUF1QixDQUFDO0FBQ3ZHLE9BQU8sS0FBSyxFQUFFLGdCQUFnQixFQUFFLElBQUksRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQy9ELE9BQU8sRUFDTCxPQUFPLEVBQ1AsWUFBWSxFQUNaLE1BQU0sRUFDTixlQUFlLEVBRWYsa0JBQWtCLEVBQ2xCLHVCQUF1QixFQUV4QixNQUFNLGtCQUFrQixDQUFDO0FBRTFCLE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxFQUNMLEtBQUssb0JBQW9CLEVBQ3pCLEtBQUssaUJBQWlCLEVBQ3RCLEtBQUssc0JBQXNCLEVBRTNCLEtBQUsseUJBQXlCLEVBQzlCLEtBQUssaUNBQWlDLEVBQ3RDLEtBQUssVUFBVSxF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
|