@aztec/aztec.js 0.0.1-commit.9b94fc1 → 0.0.1-commit.c7c42ec
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/account/account.d.ts +2 -2
- package/dest/account/account.d.ts.map +1 -1
- package/dest/account/account.js +1 -1
- package/dest/account/account_contract.d.ts +2 -2
- package/dest/account/account_contract.d.ts.map +1 -1
- package/dest/account/account_with_secret_key.d.ts +3 -3
- package/dest/account/account_with_secret_key.d.ts.map +1 -1
- package/dest/account/index.d.ts +2 -2
- package/dest/account/index.d.ts.map +1 -1
- package/dest/account/interface.d.ts +2 -2
- package/dest/account/interface.d.ts.map +1 -1
- package/dest/account/signerless_account.d.ts +2 -2
- package/dest/account/signerless_account.d.ts.map +1 -1
- package/dest/api/fields.d.ts +3 -2
- package/dest/api/fields.d.ts.map +1 -1
- package/dest/api/fields.js +2 -1
- 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/authorization/call_authorization_request.d.ts +2 -2
- package/dest/authorization/call_authorization_request.d.ts.map +1 -1
- package/dest/contract/deploy_method.d.ts +2 -2
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +1 -1
- package/dest/contract/sent_tx.d.ts +2 -3
- package/dest/contract/sent_tx.d.ts.map +1 -1
- package/dest/contract/sent_tx.js +1 -1
- package/dest/contract/wait_for_proven.d.ts +2 -2
- package/dest/contract/wait_for_proven.d.ts.map +1 -1
- package/dest/deployment/broadcast_function.js +1 -1
- package/dest/deployment/publish_class.js +1 -1
- package/dest/ethereum/portal_manager.d.ts +4 -4
- package/dest/ethereum/portal_manager.d.ts.map +1 -1
- package/dest/ethereum/portal_manager.js +7 -8
- package/dest/fee/fee_juice_payment_method_with_claim.js +1 -1
- package/dest/fee/private_fee_payment_method.js +1 -1
- package/dest/fee/public_fee_payment_method.js +1 -1
- package/dest/utils/abi_types.d.ts +2 -2
- package/dest/utils/abi_types.d.ts.map +1 -1
- package/dest/utils/authwit.d.ts +2 -2
- package/dest/utils/authwit.d.ts.map +1 -1
- package/dest/utils/authwit.js +1 -1
- package/dest/utils/cross_chain.d.ts +2 -2
- package/dest/utils/cross_chain.d.ts.map +1 -1
- package/dest/utils/fee_juice.js +1 -1
- package/dest/utils/field_compressed_string.js +1 -1
- package/dest/utils/pub_key.d.ts +2 -2
- package/dest/utils/pub_key.d.ts.map +1 -1
- package/dest/utils/pub_key.js +1 -1
- package/dest/wallet/account_manager.d.ts +2 -2
- package/dest/wallet/account_manager.d.ts.map +1 -1
- package/dest/wallet/account_manager.js +1 -1
- package/dest/wallet/deploy_account_method.d.ts +2 -2
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.js +1 -1
- package/dest/wallet/wallet.d.ts +1664 -75
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +19 -7
- package/package.json +10 -10
- package/src/account/account.ts +1 -1
- package/src/account/account_contract.ts +1 -1
- package/src/account/account_with_secret_key.ts +1 -1
- package/src/account/index.ts +1 -1
- package/src/account/interface.ts +1 -1
- package/src/account/signerless_account.ts +1 -1
- package/src/api/fields.ts +2 -1
- package/src/api/wallet.ts +4 -0
- package/src/authorization/call_authorization_request.ts +1 -1
- package/src/contract/deploy_method.ts +1 -1
- package/src/contract/sent_tx.ts +2 -3
- package/src/deployment/broadcast_function.ts +1 -1
- package/src/deployment/publish_class.ts +1 -1
- package/src/ethereum/portal_manager.ts +11 -16
- package/src/fee/fee_juice_payment_method_with_claim.ts +1 -1
- package/src/fee/private_fee_payment_method.ts +1 -1
- package/src/fee/public_fee_payment_method.ts +1 -1
- package/src/utils/abi_types.ts +1 -1
- package/src/utils/authwit.ts +1 -1
- package/src/utils/cross_chain.ts +1 -1
- package/src/utils/fee_juice.ts +1 -1
- package/src/utils/field_compressed_string.ts +1 -1
- package/src/utils/pub_key.ts +2 -2
- package/src/wallet/account_manager.ts +1 -1
- package/src/wallet/deploy_account_method.ts +1 -1
- package/src/wallet/wallet.ts +71 -20
package/dest/wallet/wallet.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import type { ChainInfo } from '@aztec/entrypoints/interfaces';
|
|
2
|
-
import
|
|
2
|
+
import { BlockNumber } from '@aztec/foundation/branded-types';
|
|
3
|
+
import type { Fr } from '@aztec/foundation/curves/bn254';
|
|
3
4
|
import { type ContractArtifact, type EventMetadataDefinition, type FunctionCall, FunctionType } from '@aztec/stdlib/abi';
|
|
4
5
|
import { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
5
6
|
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
6
7
|
import { type ContractClassMetadata, type ContractInstanceWithAddress, type ContractMetadata } from '@aztec/stdlib/contract';
|
|
7
8
|
import { Gas } from '@aztec/stdlib/gas';
|
|
8
|
-
import { type ApiSchemaFor
|
|
9
|
+
import { type ApiSchemaFor } from '@aztec/stdlib/schemas';
|
|
9
10
|
import { Capsule, HashedValues, TxHash, TxProfileResult, TxReceipt, TxSimulationResult, UtilitySimulationResult } from '@aztec/stdlib/tx';
|
|
10
|
-
import type { ExecutionPayload } from '@aztec/stdlib/tx';
|
|
11
|
+
import type { ExecutionPayload, InTx } from '@aztec/stdlib/tx';
|
|
11
12
|
import { z } from 'zod';
|
|
12
13
|
import type { FeeEstimationOptions, GasSettingsOption, ProfileInteractionOptions, SendInteractionOptions, SimulateInteractionOptions } from '../contract/interaction_options.js';
|
|
13
14
|
import type { CallIntent, IntentInnerHash } from '../utils/authwit.js';
|
|
@@ -86,13 +87,43 @@ export type BatchedMethodResultWrapper<T extends BatchedMethod<keyof BatchableMe
|
|
|
86
87
|
export type BatchResults<T extends readonly BatchedMethod<keyof BatchableMethods>[]> = {
|
|
87
88
|
[K in keyof T]: BatchedMethodResultWrapper<T[K]>;
|
|
88
89
|
};
|
|
90
|
+
/**
|
|
91
|
+
* Filter options when querying private events.
|
|
92
|
+
*/
|
|
93
|
+
export type PrivateEventFilter = {
|
|
94
|
+
/** The address of the contract that emitted the events. */
|
|
95
|
+
contractAddress: AztecAddress;
|
|
96
|
+
/** Addresses of accounts that are in scope for this filter. */
|
|
97
|
+
scopes: AztecAddress[];
|
|
98
|
+
/** Transaction in which the events were emitted. */
|
|
99
|
+
txHash?: TxHash;
|
|
100
|
+
/** The block number from which to start fetching events (inclusive).
|
|
101
|
+
* Optional. If provided, it must be greater or equal than 1.
|
|
102
|
+
* Defaults to the initial L2 block number (INITIAL_L2_BLOCK_NUM).
|
|
103
|
+
* */
|
|
104
|
+
fromBlock?: BlockNumber;
|
|
105
|
+
/** The block number until which to fetch logs (not inclusive).
|
|
106
|
+
* Optional. If provided, it must be greater than fromBlock.
|
|
107
|
+
* Defaults to the latest known block to PXE + 1.
|
|
108
|
+
*/
|
|
109
|
+
toBlock?: BlockNumber;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* An ABI decoded private event with associated metadata.
|
|
113
|
+
*/
|
|
114
|
+
export type PrivateEvent<T> = {
|
|
115
|
+
/** The ABI decoded event */
|
|
116
|
+
event: T;
|
|
117
|
+
/** Metadata describing event context information such as tx and block */
|
|
118
|
+
metadata: InTx;
|
|
119
|
+
};
|
|
89
120
|
/**
|
|
90
121
|
* The wallet interface.
|
|
91
122
|
*/
|
|
92
123
|
export type Wallet = {
|
|
93
124
|
getContractClassMetadata(id: Fr, includeArtifact?: boolean): Promise<ContractClassMetadata>;
|
|
94
125
|
getContractMetadata(address: AztecAddress): Promise<ContractMetadata>;
|
|
95
|
-
getPrivateEvents<T>(
|
|
126
|
+
getPrivateEvents<T>(eventMetadata: EventMetadataDefinition, eventFilter: PrivateEventFilter): Promise<PrivateEvent<T>[]>;
|
|
96
127
|
getChainInfo(): Promise<ChainInfo>;
|
|
97
128
|
getTxReceipt(txHash: TxHash): Promise<TxReceipt>;
|
|
98
129
|
registerSender(address: AztecAddress, alias?: string): Promise<AztecAddress>;
|
|
@@ -108,12 +139,12 @@ export type Wallet = {
|
|
|
108
139
|
};
|
|
109
140
|
export declare const FunctionCallSchema: z.ZodObject<{
|
|
110
141
|
name: z.ZodString;
|
|
111
|
-
to: ZodFor<AztecAddress>;
|
|
112
|
-
selector: ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
142
|
+
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
143
|
+
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
113
144
|
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
114
145
|
isStatic: z.ZodBoolean;
|
|
115
146
|
hideMsgSender: z.ZodBoolean;
|
|
116
|
-
args: z.ZodArray<ZodFor<Fr>, "many">;
|
|
147
|
+
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
117
148
|
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
118
149
|
}, "strip", z.ZodTypeAny, {
|
|
119
150
|
name: string;
|
|
@@ -137,12 +168,12 @@ export declare const FunctionCallSchema: z.ZodObject<{
|
|
|
137
168
|
export declare const ExecutionPayloadSchema: z.ZodObject<{
|
|
138
169
|
calls: z.ZodArray<z.ZodObject<{
|
|
139
170
|
name: z.ZodString;
|
|
140
|
-
to: ZodFor<AztecAddress>;
|
|
141
|
-
selector: ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
171
|
+
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
172
|
+
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
142
173
|
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
143
174
|
isStatic: z.ZodBoolean;
|
|
144
175
|
hideMsgSender: z.ZodBoolean;
|
|
145
|
-
args: z.ZodArray<ZodFor<Fr>, "many">;
|
|
176
|
+
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
146
177
|
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
147
178
|
}, "strip", z.ZodTypeAny, {
|
|
148
179
|
name: string;
|
|
@@ -165,8 +196,8 @@ export declare const ExecutionPayloadSchema: z.ZodObject<{
|
|
|
165
196
|
}>, "many">;
|
|
166
197
|
authWitnesses: z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">;
|
|
167
198
|
capsules: z.ZodArray<z.ZodType<Capsule, any, string>, "many">;
|
|
168
|
-
extraHashedArgs: z.ZodArray<ZodFor<HashedValues>, "many">;
|
|
169
|
-
feePayer: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<ZodFor<AztecAddress>>;
|
|
199
|
+
extraHashedArgs: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<HashedValues>, "many">;
|
|
200
|
+
feePayer: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
|
|
170
201
|
}, "strip", z.ZodTypeAny, {
|
|
171
202
|
calls: {
|
|
172
203
|
name: string;
|
|
@@ -426,7 +457,7 @@ export declare const WalletSimulationFeeOptionSchema: z.ZodObject<{
|
|
|
426
457
|
estimateGas?: boolean | undefined;
|
|
427
458
|
}>;
|
|
428
459
|
export declare const SendOptionsSchema: z.ZodObject<{
|
|
429
|
-
from: ZodFor<AztecAddress>;
|
|
460
|
+
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
430
461
|
authWitnesses: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">>;
|
|
431
462
|
capsules: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<Capsule, any, string>, "many">>;
|
|
432
463
|
fee: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodObject<{
|
|
@@ -583,7 +614,7 @@ export declare const SendOptionsSchema: z.ZodObject<{
|
|
|
583
614
|
} | undefined;
|
|
584
615
|
}>;
|
|
585
616
|
export declare const SimulateOptionsSchema: z.ZodObject<{
|
|
586
|
-
from: ZodFor<AztecAddress>;
|
|
617
|
+
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
587
618
|
authWitnesses: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">>;
|
|
588
619
|
capsules: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<Capsule, any, string>, "many">>;
|
|
589
620
|
fee: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodObject<{
|
|
@@ -760,7 +791,7 @@ export declare const SimulateOptionsSchema: z.ZodObject<{
|
|
|
760
791
|
includeMetadata?: boolean | undefined;
|
|
761
792
|
}>;
|
|
762
793
|
export declare const ProfileOptionsSchema: z.ZodObject<{
|
|
763
|
-
from: ZodFor<AztecAddress>;
|
|
794
|
+
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
764
795
|
authWitnesses: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">>;
|
|
765
796
|
capsules: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<Capsule, any, string>, "many">>;
|
|
766
797
|
fee: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodObject<{
|
|
@@ -943,9 +974,9 @@ export declare const ProfileOptionsSchema: z.ZodObject<{
|
|
|
943
974
|
profileMode: "execution-steps" | "full" | "gates";
|
|
944
975
|
skipProofGeneration?: boolean | undefined;
|
|
945
976
|
}>;
|
|
946
|
-
export declare const MessageHashOrIntentSchema: z.ZodUnion<[ZodFor<Fr>, z.ZodObject<{
|
|
947
|
-
consumer: ZodFor<AztecAddress>;
|
|
948
|
-
innerHash: ZodFor<Fr>;
|
|
977
|
+
export declare const MessageHashOrIntentSchema: z.ZodUnion<[import("@aztec/stdlib/schemas").ZodFor<Fr>, z.ZodObject<{
|
|
978
|
+
consumer: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
979
|
+
innerHash: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
949
980
|
}, "strip", z.ZodTypeAny, {
|
|
950
981
|
consumer: AztecAddress;
|
|
951
982
|
innerHash: Fr;
|
|
@@ -953,15 +984,15 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[ZodFor<Fr>, z.ZodObj
|
|
|
953
984
|
consumer?: any;
|
|
954
985
|
innerHash?: any;
|
|
955
986
|
}>, z.ZodObject<{
|
|
956
|
-
caller: ZodFor<AztecAddress>;
|
|
987
|
+
caller: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
957
988
|
call: z.ZodObject<{
|
|
958
989
|
name: z.ZodString;
|
|
959
|
-
to: ZodFor<AztecAddress>;
|
|
960
|
-
selector: ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
990
|
+
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
991
|
+
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
961
992
|
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
962
993
|
isStatic: z.ZodBoolean;
|
|
963
994
|
hideMsgSender: z.ZodBoolean;
|
|
964
|
-
args: z.ZodArray<ZodFor<Fr>, "many">;
|
|
995
|
+
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
965
996
|
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
966
997
|
}, "strip", z.ZodTypeAny, {
|
|
967
998
|
name: string;
|
|
@@ -1009,7 +1040,7 @@ export declare const MessageHashOrIntentSchema: z.ZodUnion<[ZodFor<Fr>, z.ZodObj
|
|
|
1009
1040
|
}>]>;
|
|
1010
1041
|
export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
1011
1042
|
name: z.ZodLiteral<"registerSender">;
|
|
1012
|
-
args: z.ZodTuple<[ZodFor<AztecAddress>, import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodString>], null>;
|
|
1043
|
+
args: z.ZodTuple<[import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodString>], null>;
|
|
1013
1044
|
}, "strip", z.ZodTypeAny, {
|
|
1014
1045
|
name: "registerSender";
|
|
1015
1046
|
args: [AztecAddress, string | undefined];
|
|
@@ -1020,21 +1051,21 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1020
1051
|
name: z.ZodLiteral<"registerContract">;
|
|
1021
1052
|
args: z.ZodTuple<[z.ZodIntersection<z.ZodObject<{
|
|
1022
1053
|
version: z.ZodLiteral<1>;
|
|
1023
|
-
salt: ZodFor<Fr>;
|
|
1024
|
-
deployer: ZodFor<AztecAddress>;
|
|
1025
|
-
currentContractClassId: ZodFor<Fr>;
|
|
1026
|
-
originalContractClassId: ZodFor<Fr>;
|
|
1027
|
-
initializationHash: ZodFor<Fr>;
|
|
1054
|
+
salt: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
1055
|
+
deployer: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1056
|
+
currentContractClassId: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
1057
|
+
originalContractClassId: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
1058
|
+
initializationHash: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
1028
1059
|
publicKeys: z.ZodEffects<z.ZodObject<{
|
|
1029
|
-
masterNullifierPublicKey: z.ZodType<import("
|
|
1030
|
-
masterIncomingViewingPublicKey: z.ZodType<import("
|
|
1031
|
-
masterOutgoingViewingPublicKey: z.ZodType<import("
|
|
1032
|
-
masterTaggingPublicKey: z.ZodType<import("
|
|
1060
|
+
masterNullifierPublicKey: z.ZodType<import("../api/fields.js").Point, any, string>;
|
|
1061
|
+
masterIncomingViewingPublicKey: z.ZodType<import("../api/fields.js").Point, any, string>;
|
|
1062
|
+
masterOutgoingViewingPublicKey: z.ZodType<import("../api/fields.js").Point, any, string>;
|
|
1063
|
+
masterTaggingPublicKey: z.ZodType<import("../api/fields.js").Point, any, string>;
|
|
1033
1064
|
}, "strip", z.ZodTypeAny, {
|
|
1034
|
-
masterNullifierPublicKey: import("
|
|
1035
|
-
masterIncomingViewingPublicKey: import("
|
|
1036
|
-
masterOutgoingViewingPublicKey: import("
|
|
1037
|
-
masterTaggingPublicKey: import("
|
|
1065
|
+
masterNullifierPublicKey: import("../api/fields.js").Point;
|
|
1066
|
+
masterIncomingViewingPublicKey: import("../api/fields.js").Point;
|
|
1067
|
+
masterOutgoingViewingPublicKey: import("../api/fields.js").Point;
|
|
1068
|
+
masterTaggingPublicKey: import("../api/fields.js").Point;
|
|
1038
1069
|
}, {
|
|
1039
1070
|
masterNullifierPublicKey: string;
|
|
1040
1071
|
masterIncomingViewingPublicKey: string;
|
|
@@ -1068,12 +1099,611 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1068
1099
|
masterTaggingPublicKey: string;
|
|
1069
1100
|
};
|
|
1070
1101
|
}>, z.ZodObject<{
|
|
1071
|
-
address: ZodFor<AztecAddress>;
|
|
1102
|
+
address: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1072
1103
|
}, "strip", z.ZodTypeAny, {
|
|
1073
1104
|
address: AztecAddress;
|
|
1074
1105
|
}, {
|
|
1075
1106
|
address?: any;
|
|
1076
|
-
}>>, import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<
|
|
1107
|
+
}>>, import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodObject<{
|
|
1108
|
+
name: z.ZodString;
|
|
1109
|
+
functions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
1110
|
+
name: z.ZodString;
|
|
1111
|
+
functionType: z.ZodNativeEnum<typeof FunctionType>;
|
|
1112
|
+
isOnlySelf: z.ZodBoolean;
|
|
1113
|
+
isStatic: z.ZodBoolean;
|
|
1114
|
+
isInitializer: z.ZodBoolean;
|
|
1115
|
+
parameters: z.ZodArray<z.ZodObject<{
|
|
1116
|
+
name: z.ZodString;
|
|
1117
|
+
type: z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>;
|
|
1118
|
+
visibility: z.ZodEnum<["public", "private", "databus"]>;
|
|
1119
|
+
}, "strip", z.ZodTypeAny, {
|
|
1120
|
+
name: string;
|
|
1121
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1122
|
+
visibility: "databus" | "private" | "public";
|
|
1123
|
+
}, {
|
|
1124
|
+
name: string;
|
|
1125
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1126
|
+
visibility: "databus" | "private" | "public";
|
|
1127
|
+
}>, "many">;
|
|
1128
|
+
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
1129
|
+
errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1130
|
+
error_kind: z.ZodLiteral<"string">;
|
|
1131
|
+
string: z.ZodString;
|
|
1132
|
+
}, "strip", z.ZodTypeAny, {
|
|
1133
|
+
error_kind: "string";
|
|
1134
|
+
string: string;
|
|
1135
|
+
}, {
|
|
1136
|
+
error_kind: "string";
|
|
1137
|
+
string: string;
|
|
1138
|
+
}>, z.ZodObject<{
|
|
1139
|
+
error_kind: z.ZodLiteral<"fmtstring">;
|
|
1140
|
+
length: z.ZodNumber;
|
|
1141
|
+
item_types: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
1142
|
+
}, "strip", z.ZodTypeAny, {
|
|
1143
|
+
error_kind: "fmtstring";
|
|
1144
|
+
length: number;
|
|
1145
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1146
|
+
}, {
|
|
1147
|
+
error_kind: "fmtstring";
|
|
1148
|
+
length: number;
|
|
1149
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1150
|
+
}>, z.ZodIntersection<z.ZodObject<{
|
|
1151
|
+
error_kind: z.ZodLiteral<"custom">;
|
|
1152
|
+
}, "strip", z.ZodTypeAny, {
|
|
1153
|
+
error_kind: "custom";
|
|
1154
|
+
}, {
|
|
1155
|
+
error_kind: "custom";
|
|
1156
|
+
}>, z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>>]>>>;
|
|
1157
|
+
}, "strip", z.ZodTypeAny, {
|
|
1158
|
+
name: string;
|
|
1159
|
+
functionType: FunctionType;
|
|
1160
|
+
isOnlySelf: boolean;
|
|
1161
|
+
isStatic: boolean;
|
|
1162
|
+
isInitializer: boolean;
|
|
1163
|
+
parameters: {
|
|
1164
|
+
name: string;
|
|
1165
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1166
|
+
visibility: "databus" | "private" | "public";
|
|
1167
|
+
}[];
|
|
1168
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1169
|
+
errorTypes: Record<string, {
|
|
1170
|
+
error_kind: "string";
|
|
1171
|
+
string: string;
|
|
1172
|
+
} | {
|
|
1173
|
+
error_kind: "fmtstring";
|
|
1174
|
+
length: number;
|
|
1175
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1176
|
+
} | ({
|
|
1177
|
+
error_kind: "custom";
|
|
1178
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1179
|
+
}, {
|
|
1180
|
+
name: string;
|
|
1181
|
+
functionType: FunctionType;
|
|
1182
|
+
isOnlySelf: boolean;
|
|
1183
|
+
isStatic: boolean;
|
|
1184
|
+
isInitializer: boolean;
|
|
1185
|
+
parameters: {
|
|
1186
|
+
name: string;
|
|
1187
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1188
|
+
visibility: "databus" | "private" | "public";
|
|
1189
|
+
}[];
|
|
1190
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1191
|
+
errorTypes: Record<string, {
|
|
1192
|
+
error_kind: "string";
|
|
1193
|
+
string: string;
|
|
1194
|
+
} | {
|
|
1195
|
+
error_kind: "fmtstring";
|
|
1196
|
+
length: number;
|
|
1197
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1198
|
+
} | ({
|
|
1199
|
+
error_kind: "custom";
|
|
1200
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1201
|
+
}>, z.ZodObject<{
|
|
1202
|
+
bytecode: import("@aztec/stdlib/schemas").ZodFor<Buffer<ArrayBufferLike>>;
|
|
1203
|
+
verificationKey: z.ZodOptional<z.ZodString>;
|
|
1204
|
+
debugSymbols: z.ZodString;
|
|
1205
|
+
debug: z.ZodOptional<z.ZodObject<{
|
|
1206
|
+
debugSymbols: z.ZodObject<{
|
|
1207
|
+
location_tree: z.ZodObject<{
|
|
1208
|
+
locations: z.ZodArray<z.ZodObject<{
|
|
1209
|
+
parent: z.ZodNullable<z.ZodNumber>;
|
|
1210
|
+
value: z.ZodObject<{
|
|
1211
|
+
span: z.ZodObject<{
|
|
1212
|
+
start: z.ZodNumber;
|
|
1213
|
+
end: z.ZodNumber;
|
|
1214
|
+
}, "strip", z.ZodTypeAny, {
|
|
1215
|
+
start: number;
|
|
1216
|
+
end: number;
|
|
1217
|
+
}, {
|
|
1218
|
+
start: number;
|
|
1219
|
+
end: number;
|
|
1220
|
+
}>;
|
|
1221
|
+
file: z.ZodNumber;
|
|
1222
|
+
}, "strip", z.ZodTypeAny, {
|
|
1223
|
+
span: {
|
|
1224
|
+
start: number;
|
|
1225
|
+
end: number;
|
|
1226
|
+
};
|
|
1227
|
+
file: number;
|
|
1228
|
+
}, {
|
|
1229
|
+
span: {
|
|
1230
|
+
start: number;
|
|
1231
|
+
end: number;
|
|
1232
|
+
};
|
|
1233
|
+
file: number;
|
|
1234
|
+
}>;
|
|
1235
|
+
}, "strip", z.ZodTypeAny, {
|
|
1236
|
+
parent: number | null;
|
|
1237
|
+
value: {
|
|
1238
|
+
span: {
|
|
1239
|
+
start: number;
|
|
1240
|
+
end: number;
|
|
1241
|
+
};
|
|
1242
|
+
file: number;
|
|
1243
|
+
};
|
|
1244
|
+
}, {
|
|
1245
|
+
parent: number | null;
|
|
1246
|
+
value: {
|
|
1247
|
+
span: {
|
|
1248
|
+
start: number;
|
|
1249
|
+
end: number;
|
|
1250
|
+
};
|
|
1251
|
+
file: number;
|
|
1252
|
+
};
|
|
1253
|
+
}>, "many">;
|
|
1254
|
+
}, "strip", z.ZodTypeAny, {
|
|
1255
|
+
locations: {
|
|
1256
|
+
parent: number | null;
|
|
1257
|
+
value: {
|
|
1258
|
+
span: {
|
|
1259
|
+
start: number;
|
|
1260
|
+
end: number;
|
|
1261
|
+
};
|
|
1262
|
+
file: number;
|
|
1263
|
+
};
|
|
1264
|
+
}[];
|
|
1265
|
+
}, {
|
|
1266
|
+
locations: {
|
|
1267
|
+
parent: number | null;
|
|
1268
|
+
value: {
|
|
1269
|
+
span: {
|
|
1270
|
+
start: number;
|
|
1271
|
+
end: number;
|
|
1272
|
+
};
|
|
1273
|
+
file: number;
|
|
1274
|
+
};
|
|
1275
|
+
}[];
|
|
1276
|
+
}>;
|
|
1277
|
+
acir_locations: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1278
|
+
brillig_locations: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1279
|
+
}, "strip", z.ZodTypeAny, {
|
|
1280
|
+
location_tree: {
|
|
1281
|
+
locations: {
|
|
1282
|
+
parent: number | null;
|
|
1283
|
+
value: {
|
|
1284
|
+
span: {
|
|
1285
|
+
start: number;
|
|
1286
|
+
end: number;
|
|
1287
|
+
};
|
|
1288
|
+
file: number;
|
|
1289
|
+
};
|
|
1290
|
+
}[];
|
|
1291
|
+
};
|
|
1292
|
+
acir_locations: Record<string, number>;
|
|
1293
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1294
|
+
}, {
|
|
1295
|
+
location_tree: {
|
|
1296
|
+
locations: {
|
|
1297
|
+
parent: number | null;
|
|
1298
|
+
value: {
|
|
1299
|
+
span: {
|
|
1300
|
+
start: number;
|
|
1301
|
+
end: number;
|
|
1302
|
+
};
|
|
1303
|
+
file: number;
|
|
1304
|
+
};
|
|
1305
|
+
}[];
|
|
1306
|
+
};
|
|
1307
|
+
acir_locations: Record<string, number>;
|
|
1308
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1309
|
+
}>;
|
|
1310
|
+
files: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1311
|
+
source: z.ZodString;
|
|
1312
|
+
path: z.ZodString;
|
|
1313
|
+
}, "strip", z.ZodTypeAny, {
|
|
1314
|
+
source: string;
|
|
1315
|
+
path: string;
|
|
1316
|
+
}, {
|
|
1317
|
+
source: string;
|
|
1318
|
+
path: string;
|
|
1319
|
+
}>>;
|
|
1320
|
+
}, "strip", z.ZodTypeAny, {
|
|
1321
|
+
debugSymbols: {
|
|
1322
|
+
location_tree: {
|
|
1323
|
+
locations: {
|
|
1324
|
+
parent: number | null;
|
|
1325
|
+
value: {
|
|
1326
|
+
span: {
|
|
1327
|
+
start: number;
|
|
1328
|
+
end: number;
|
|
1329
|
+
};
|
|
1330
|
+
file: number;
|
|
1331
|
+
};
|
|
1332
|
+
}[];
|
|
1333
|
+
};
|
|
1334
|
+
acir_locations: Record<string, number>;
|
|
1335
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1336
|
+
};
|
|
1337
|
+
files: Record<string, {
|
|
1338
|
+
source: string;
|
|
1339
|
+
path: string;
|
|
1340
|
+
}>;
|
|
1341
|
+
}, {
|
|
1342
|
+
debugSymbols: {
|
|
1343
|
+
location_tree: {
|
|
1344
|
+
locations: {
|
|
1345
|
+
parent: number | null;
|
|
1346
|
+
value: {
|
|
1347
|
+
span: {
|
|
1348
|
+
start: number;
|
|
1349
|
+
end: number;
|
|
1350
|
+
};
|
|
1351
|
+
file: number;
|
|
1352
|
+
};
|
|
1353
|
+
}[];
|
|
1354
|
+
};
|
|
1355
|
+
acir_locations: Record<string, number>;
|
|
1356
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1357
|
+
};
|
|
1358
|
+
files: Record<string, {
|
|
1359
|
+
source: string;
|
|
1360
|
+
path: string;
|
|
1361
|
+
}>;
|
|
1362
|
+
}>>;
|
|
1363
|
+
}, "strip", z.ZodTypeAny, {
|
|
1364
|
+
bytecode: Buffer<ArrayBufferLike>;
|
|
1365
|
+
verificationKey?: string | undefined;
|
|
1366
|
+
debugSymbols: string;
|
|
1367
|
+
debug?: {
|
|
1368
|
+
debugSymbols: {
|
|
1369
|
+
location_tree: {
|
|
1370
|
+
locations: {
|
|
1371
|
+
parent: number | null;
|
|
1372
|
+
value: {
|
|
1373
|
+
span: {
|
|
1374
|
+
start: number;
|
|
1375
|
+
end: number;
|
|
1376
|
+
};
|
|
1377
|
+
file: number;
|
|
1378
|
+
};
|
|
1379
|
+
}[];
|
|
1380
|
+
};
|
|
1381
|
+
acir_locations: Record<string, number>;
|
|
1382
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1383
|
+
};
|
|
1384
|
+
files: Record<string, {
|
|
1385
|
+
source: string;
|
|
1386
|
+
path: string;
|
|
1387
|
+
}>;
|
|
1388
|
+
} | undefined;
|
|
1389
|
+
}, {
|
|
1390
|
+
bytecode?: any;
|
|
1391
|
+
verificationKey?: string | undefined;
|
|
1392
|
+
debugSymbols: string;
|
|
1393
|
+
debug?: {
|
|
1394
|
+
debugSymbols: {
|
|
1395
|
+
location_tree: {
|
|
1396
|
+
locations: {
|
|
1397
|
+
parent: number | null;
|
|
1398
|
+
value: {
|
|
1399
|
+
span: {
|
|
1400
|
+
start: number;
|
|
1401
|
+
end: number;
|
|
1402
|
+
};
|
|
1403
|
+
file: number;
|
|
1404
|
+
};
|
|
1405
|
+
}[];
|
|
1406
|
+
};
|
|
1407
|
+
acir_locations: Record<string, number>;
|
|
1408
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1409
|
+
};
|
|
1410
|
+
files: Record<string, {
|
|
1411
|
+
source: string;
|
|
1412
|
+
path: string;
|
|
1413
|
+
}>;
|
|
1414
|
+
} | undefined;
|
|
1415
|
+
}>>, "many">;
|
|
1416
|
+
nonDispatchPublicFunctions: z.ZodArray<z.ZodObject<{
|
|
1417
|
+
name: z.ZodString;
|
|
1418
|
+
functionType: z.ZodNativeEnum<typeof FunctionType>;
|
|
1419
|
+
isOnlySelf: z.ZodBoolean;
|
|
1420
|
+
isStatic: z.ZodBoolean;
|
|
1421
|
+
isInitializer: z.ZodBoolean;
|
|
1422
|
+
parameters: z.ZodArray<z.ZodObject<{
|
|
1423
|
+
name: z.ZodString;
|
|
1424
|
+
type: z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>;
|
|
1425
|
+
visibility: z.ZodEnum<["public", "private", "databus"]>;
|
|
1426
|
+
}, "strip", z.ZodTypeAny, {
|
|
1427
|
+
name: string;
|
|
1428
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1429
|
+
visibility: "databus" | "private" | "public";
|
|
1430
|
+
}, {
|
|
1431
|
+
name: string;
|
|
1432
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1433
|
+
visibility: "databus" | "private" | "public";
|
|
1434
|
+
}>, "many">;
|
|
1435
|
+
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
1436
|
+
errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1437
|
+
error_kind: z.ZodLiteral<"string">;
|
|
1438
|
+
string: z.ZodString;
|
|
1439
|
+
}, "strip", z.ZodTypeAny, {
|
|
1440
|
+
error_kind: "string";
|
|
1441
|
+
string: string;
|
|
1442
|
+
}, {
|
|
1443
|
+
error_kind: "string";
|
|
1444
|
+
string: string;
|
|
1445
|
+
}>, z.ZodObject<{
|
|
1446
|
+
error_kind: z.ZodLiteral<"fmtstring">;
|
|
1447
|
+
length: z.ZodNumber;
|
|
1448
|
+
item_types: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
1449
|
+
}, "strip", z.ZodTypeAny, {
|
|
1450
|
+
error_kind: "fmtstring";
|
|
1451
|
+
length: number;
|
|
1452
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1453
|
+
}, {
|
|
1454
|
+
error_kind: "fmtstring";
|
|
1455
|
+
length: number;
|
|
1456
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1457
|
+
}>, z.ZodIntersection<z.ZodObject<{
|
|
1458
|
+
error_kind: z.ZodLiteral<"custom">;
|
|
1459
|
+
}, "strip", z.ZodTypeAny, {
|
|
1460
|
+
error_kind: "custom";
|
|
1461
|
+
}, {
|
|
1462
|
+
error_kind: "custom";
|
|
1463
|
+
}>, z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>>]>>>;
|
|
1464
|
+
}, "strip", z.ZodTypeAny, {
|
|
1465
|
+
name: string;
|
|
1466
|
+
functionType: FunctionType;
|
|
1467
|
+
isOnlySelf: boolean;
|
|
1468
|
+
isStatic: boolean;
|
|
1469
|
+
isInitializer: boolean;
|
|
1470
|
+
parameters: {
|
|
1471
|
+
name: string;
|
|
1472
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1473
|
+
visibility: "databus" | "private" | "public";
|
|
1474
|
+
}[];
|
|
1475
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1476
|
+
errorTypes: Record<string, {
|
|
1477
|
+
error_kind: "string";
|
|
1478
|
+
string: string;
|
|
1479
|
+
} | {
|
|
1480
|
+
error_kind: "fmtstring";
|
|
1481
|
+
length: number;
|
|
1482
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1483
|
+
} | ({
|
|
1484
|
+
error_kind: "custom";
|
|
1485
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1486
|
+
}, {
|
|
1487
|
+
name: string;
|
|
1488
|
+
functionType: FunctionType;
|
|
1489
|
+
isOnlySelf: boolean;
|
|
1490
|
+
isStatic: boolean;
|
|
1491
|
+
isInitializer: boolean;
|
|
1492
|
+
parameters: {
|
|
1493
|
+
name: string;
|
|
1494
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1495
|
+
visibility: "databus" | "private" | "public";
|
|
1496
|
+
}[];
|
|
1497
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1498
|
+
errorTypes: Record<string, {
|
|
1499
|
+
error_kind: "string";
|
|
1500
|
+
string: string;
|
|
1501
|
+
} | {
|
|
1502
|
+
error_kind: "fmtstring";
|
|
1503
|
+
length: number;
|
|
1504
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1505
|
+
} | ({
|
|
1506
|
+
error_kind: "custom";
|
|
1507
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1508
|
+
}>, "many">;
|
|
1509
|
+
outputs: z.ZodObject<{
|
|
1510
|
+
structs: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">>, Record<string, import("@aztec/stdlib/abi").AbiType[]>, Record<string, import("@aztec/stdlib/abi").AbiType[]>>;
|
|
1511
|
+
globals: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiValue, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiValue>, "many">>;
|
|
1512
|
+
}, "strip", z.ZodTypeAny, {
|
|
1513
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
1514
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
1515
|
+
}, {
|
|
1516
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
1517
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
1518
|
+
}>;
|
|
1519
|
+
storageLayout: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1520
|
+
slot: z.ZodType<Fr, any, string>;
|
|
1521
|
+
}, "strip", z.ZodTypeAny, {
|
|
1522
|
+
slot: Fr;
|
|
1523
|
+
}, {
|
|
1524
|
+
slot: string;
|
|
1525
|
+
}>>;
|
|
1526
|
+
fileMap: z.ZodRecord<z.ZodNumber, z.ZodObject<{
|
|
1527
|
+
source: z.ZodString;
|
|
1528
|
+
path: z.ZodString;
|
|
1529
|
+
}, "strip", z.ZodTypeAny, {
|
|
1530
|
+
source: string;
|
|
1531
|
+
path: string;
|
|
1532
|
+
}, {
|
|
1533
|
+
source: string;
|
|
1534
|
+
path: string;
|
|
1535
|
+
}>>;
|
|
1536
|
+
}, "strip", z.ZodTypeAny, {
|
|
1537
|
+
name: string;
|
|
1538
|
+
functions: ({
|
|
1539
|
+
name: string;
|
|
1540
|
+
functionType: FunctionType;
|
|
1541
|
+
isOnlySelf: boolean;
|
|
1542
|
+
isStatic: boolean;
|
|
1543
|
+
isInitializer: boolean;
|
|
1544
|
+
parameters: {
|
|
1545
|
+
name: string;
|
|
1546
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1547
|
+
visibility: "databus" | "private" | "public";
|
|
1548
|
+
}[];
|
|
1549
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1550
|
+
errorTypes: Record<string, {
|
|
1551
|
+
error_kind: "string";
|
|
1552
|
+
string: string;
|
|
1553
|
+
} | {
|
|
1554
|
+
error_kind: "fmtstring";
|
|
1555
|
+
length: number;
|
|
1556
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1557
|
+
} | ({
|
|
1558
|
+
error_kind: "custom";
|
|
1559
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1560
|
+
} & {
|
|
1561
|
+
bytecode: Buffer<ArrayBufferLike>;
|
|
1562
|
+
verificationKey?: string | undefined;
|
|
1563
|
+
debugSymbols: string;
|
|
1564
|
+
debug?: {
|
|
1565
|
+
debugSymbols: {
|
|
1566
|
+
location_tree: {
|
|
1567
|
+
locations: {
|
|
1568
|
+
parent: number | null;
|
|
1569
|
+
value: {
|
|
1570
|
+
span: {
|
|
1571
|
+
start: number;
|
|
1572
|
+
end: number;
|
|
1573
|
+
};
|
|
1574
|
+
file: number;
|
|
1575
|
+
};
|
|
1576
|
+
}[];
|
|
1577
|
+
};
|
|
1578
|
+
acir_locations: Record<string, number>;
|
|
1579
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1580
|
+
};
|
|
1581
|
+
files: Record<string, {
|
|
1582
|
+
source: string;
|
|
1583
|
+
path: string;
|
|
1584
|
+
}>;
|
|
1585
|
+
} | undefined;
|
|
1586
|
+
})[];
|
|
1587
|
+
nonDispatchPublicFunctions: {
|
|
1588
|
+
name: string;
|
|
1589
|
+
functionType: FunctionType;
|
|
1590
|
+
isOnlySelf: boolean;
|
|
1591
|
+
isStatic: boolean;
|
|
1592
|
+
isInitializer: boolean;
|
|
1593
|
+
parameters: {
|
|
1594
|
+
name: string;
|
|
1595
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1596
|
+
visibility: "databus" | "private" | "public";
|
|
1597
|
+
}[];
|
|
1598
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1599
|
+
errorTypes: Record<string, {
|
|
1600
|
+
error_kind: "string";
|
|
1601
|
+
string: string;
|
|
1602
|
+
} | {
|
|
1603
|
+
error_kind: "fmtstring";
|
|
1604
|
+
length: number;
|
|
1605
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1606
|
+
} | ({
|
|
1607
|
+
error_kind: "custom";
|
|
1608
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1609
|
+
}[];
|
|
1610
|
+
outputs: {
|
|
1611
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
1612
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
1613
|
+
};
|
|
1614
|
+
storageLayout: Record<string, {
|
|
1615
|
+
slot: Fr;
|
|
1616
|
+
}>;
|
|
1617
|
+
fileMap: Record<number, {
|
|
1618
|
+
source: string;
|
|
1619
|
+
path: string;
|
|
1620
|
+
}>;
|
|
1621
|
+
}, {
|
|
1622
|
+
name: string;
|
|
1623
|
+
functions: ({
|
|
1624
|
+
name: string;
|
|
1625
|
+
functionType: FunctionType;
|
|
1626
|
+
isOnlySelf: boolean;
|
|
1627
|
+
isStatic: boolean;
|
|
1628
|
+
isInitializer: boolean;
|
|
1629
|
+
parameters: {
|
|
1630
|
+
name: string;
|
|
1631
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1632
|
+
visibility: "databus" | "private" | "public";
|
|
1633
|
+
}[];
|
|
1634
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1635
|
+
errorTypes: Record<string, {
|
|
1636
|
+
error_kind: "string";
|
|
1637
|
+
string: string;
|
|
1638
|
+
} | {
|
|
1639
|
+
error_kind: "fmtstring";
|
|
1640
|
+
length: number;
|
|
1641
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1642
|
+
} | ({
|
|
1643
|
+
error_kind: "custom";
|
|
1644
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1645
|
+
} & {
|
|
1646
|
+
bytecode?: any;
|
|
1647
|
+
verificationKey?: string | undefined;
|
|
1648
|
+
debugSymbols: string;
|
|
1649
|
+
debug?: {
|
|
1650
|
+
debugSymbols: {
|
|
1651
|
+
location_tree: {
|
|
1652
|
+
locations: {
|
|
1653
|
+
parent: number | null;
|
|
1654
|
+
value: {
|
|
1655
|
+
span: {
|
|
1656
|
+
start: number;
|
|
1657
|
+
end: number;
|
|
1658
|
+
};
|
|
1659
|
+
file: number;
|
|
1660
|
+
};
|
|
1661
|
+
}[];
|
|
1662
|
+
};
|
|
1663
|
+
acir_locations: Record<string, number>;
|
|
1664
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1665
|
+
};
|
|
1666
|
+
files: Record<string, {
|
|
1667
|
+
source: string;
|
|
1668
|
+
path: string;
|
|
1669
|
+
}>;
|
|
1670
|
+
} | undefined;
|
|
1671
|
+
})[];
|
|
1672
|
+
nonDispatchPublicFunctions: {
|
|
1673
|
+
name: string;
|
|
1674
|
+
functionType: FunctionType;
|
|
1675
|
+
isOnlySelf: boolean;
|
|
1676
|
+
isStatic: boolean;
|
|
1677
|
+
isInitializer: boolean;
|
|
1678
|
+
parameters: {
|
|
1679
|
+
name: string;
|
|
1680
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1681
|
+
visibility: "databus" | "private" | "public";
|
|
1682
|
+
}[];
|
|
1683
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1684
|
+
errorTypes: Record<string, {
|
|
1685
|
+
error_kind: "string";
|
|
1686
|
+
string: string;
|
|
1687
|
+
} | {
|
|
1688
|
+
error_kind: "fmtstring";
|
|
1689
|
+
length: number;
|
|
1690
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1691
|
+
} | ({
|
|
1692
|
+
error_kind: "custom";
|
|
1693
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1694
|
+
}[];
|
|
1695
|
+
outputs: {
|
|
1696
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
1697
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
1698
|
+
};
|
|
1699
|
+
storageLayout: Record<string, {
|
|
1700
|
+
slot: string;
|
|
1701
|
+
}>;
|
|
1702
|
+
fileMap: Record<number, {
|
|
1703
|
+
source: string;
|
|
1704
|
+
path: string;
|
|
1705
|
+
}>;
|
|
1706
|
+
}>>, import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<Fr>>], null>;
|
|
1077
1707
|
}, "strip", z.ZodTypeAny, {
|
|
1078
1708
|
name: "registerContract";
|
|
1079
1709
|
args: [{
|
|
@@ -1086,7 +1716,92 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1086
1716
|
publicKeys: import("../api/keys.js").PublicKeys;
|
|
1087
1717
|
} & {
|
|
1088
1718
|
address: AztecAddress;
|
|
1089
|
-
},
|
|
1719
|
+
}, {
|
|
1720
|
+
name: string;
|
|
1721
|
+
functions: ({
|
|
1722
|
+
name: string;
|
|
1723
|
+
functionType: FunctionType;
|
|
1724
|
+
isOnlySelf: boolean;
|
|
1725
|
+
isStatic: boolean;
|
|
1726
|
+
isInitializer: boolean;
|
|
1727
|
+
parameters: {
|
|
1728
|
+
name: string;
|
|
1729
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1730
|
+
visibility: "databus" | "private" | "public";
|
|
1731
|
+
}[];
|
|
1732
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1733
|
+
errorTypes: Record<string, {
|
|
1734
|
+
error_kind: "string";
|
|
1735
|
+
string: string;
|
|
1736
|
+
} | {
|
|
1737
|
+
error_kind: "fmtstring";
|
|
1738
|
+
length: number;
|
|
1739
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1740
|
+
} | ({
|
|
1741
|
+
error_kind: "custom";
|
|
1742
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1743
|
+
} & {
|
|
1744
|
+
bytecode: Buffer<ArrayBufferLike>;
|
|
1745
|
+
verificationKey?: string | undefined;
|
|
1746
|
+
debugSymbols: string;
|
|
1747
|
+
debug?: {
|
|
1748
|
+
debugSymbols: {
|
|
1749
|
+
location_tree: {
|
|
1750
|
+
locations: {
|
|
1751
|
+
parent: number | null;
|
|
1752
|
+
value: {
|
|
1753
|
+
span: {
|
|
1754
|
+
start: number;
|
|
1755
|
+
end: number;
|
|
1756
|
+
};
|
|
1757
|
+
file: number;
|
|
1758
|
+
};
|
|
1759
|
+
}[];
|
|
1760
|
+
};
|
|
1761
|
+
acir_locations: Record<string, number>;
|
|
1762
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1763
|
+
};
|
|
1764
|
+
files: Record<string, {
|
|
1765
|
+
source: string;
|
|
1766
|
+
path: string;
|
|
1767
|
+
}>;
|
|
1768
|
+
} | undefined;
|
|
1769
|
+
})[];
|
|
1770
|
+
nonDispatchPublicFunctions: {
|
|
1771
|
+
name: string;
|
|
1772
|
+
functionType: FunctionType;
|
|
1773
|
+
isOnlySelf: boolean;
|
|
1774
|
+
isStatic: boolean;
|
|
1775
|
+
isInitializer: boolean;
|
|
1776
|
+
parameters: {
|
|
1777
|
+
name: string;
|
|
1778
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1779
|
+
visibility: "databus" | "private" | "public";
|
|
1780
|
+
}[];
|
|
1781
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1782
|
+
errorTypes: Record<string, {
|
|
1783
|
+
error_kind: "string";
|
|
1784
|
+
string: string;
|
|
1785
|
+
} | {
|
|
1786
|
+
error_kind: "fmtstring";
|
|
1787
|
+
length: number;
|
|
1788
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1789
|
+
} | ({
|
|
1790
|
+
error_kind: "custom";
|
|
1791
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1792
|
+
}[];
|
|
1793
|
+
outputs: {
|
|
1794
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
1795
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
1796
|
+
};
|
|
1797
|
+
storageLayout: Record<string, {
|
|
1798
|
+
slot: Fr;
|
|
1799
|
+
}>;
|
|
1800
|
+
fileMap: Record<number, {
|
|
1801
|
+
source: string;
|
|
1802
|
+
path: string;
|
|
1803
|
+
}>;
|
|
1804
|
+
} | undefined, Fr | undefined];
|
|
1090
1805
|
}, {
|
|
1091
1806
|
name: "registerContract";
|
|
1092
1807
|
args: [{
|
|
@@ -1104,18 +1819,103 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1104
1819
|
};
|
|
1105
1820
|
} & {
|
|
1106
1821
|
address?: any;
|
|
1107
|
-
},
|
|
1822
|
+
}, {
|
|
1823
|
+
name: string;
|
|
1824
|
+
functions: ({
|
|
1825
|
+
name: string;
|
|
1826
|
+
functionType: FunctionType;
|
|
1827
|
+
isOnlySelf: boolean;
|
|
1828
|
+
isStatic: boolean;
|
|
1829
|
+
isInitializer: boolean;
|
|
1830
|
+
parameters: {
|
|
1831
|
+
name: string;
|
|
1832
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1833
|
+
visibility: "databus" | "private" | "public";
|
|
1834
|
+
}[];
|
|
1835
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1836
|
+
errorTypes: Record<string, {
|
|
1837
|
+
error_kind: "string";
|
|
1838
|
+
string: string;
|
|
1839
|
+
} | {
|
|
1840
|
+
error_kind: "fmtstring";
|
|
1841
|
+
length: number;
|
|
1842
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1843
|
+
} | ({
|
|
1844
|
+
error_kind: "custom";
|
|
1845
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1846
|
+
} & {
|
|
1847
|
+
bytecode?: any;
|
|
1848
|
+
verificationKey?: string | undefined;
|
|
1849
|
+
debugSymbols: string;
|
|
1850
|
+
debug?: {
|
|
1851
|
+
debugSymbols: {
|
|
1852
|
+
location_tree: {
|
|
1853
|
+
locations: {
|
|
1854
|
+
parent: number | null;
|
|
1855
|
+
value: {
|
|
1856
|
+
span: {
|
|
1857
|
+
start: number;
|
|
1858
|
+
end: number;
|
|
1859
|
+
};
|
|
1860
|
+
file: number;
|
|
1861
|
+
};
|
|
1862
|
+
}[];
|
|
1863
|
+
};
|
|
1864
|
+
acir_locations: Record<string, number>;
|
|
1865
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
1866
|
+
};
|
|
1867
|
+
files: Record<string, {
|
|
1868
|
+
source: string;
|
|
1869
|
+
path: string;
|
|
1870
|
+
}>;
|
|
1871
|
+
} | undefined;
|
|
1872
|
+
})[];
|
|
1873
|
+
nonDispatchPublicFunctions: {
|
|
1874
|
+
name: string;
|
|
1875
|
+
functionType: FunctionType;
|
|
1876
|
+
isOnlySelf: boolean;
|
|
1877
|
+
isStatic: boolean;
|
|
1878
|
+
isInitializer: boolean;
|
|
1879
|
+
parameters: {
|
|
1880
|
+
name: string;
|
|
1881
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
1882
|
+
visibility: "databus" | "private" | "public";
|
|
1883
|
+
}[];
|
|
1884
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
1885
|
+
errorTypes: Record<string, {
|
|
1886
|
+
error_kind: "string";
|
|
1887
|
+
string: string;
|
|
1888
|
+
} | {
|
|
1889
|
+
error_kind: "fmtstring";
|
|
1890
|
+
length: number;
|
|
1891
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
1892
|
+
} | ({
|
|
1893
|
+
error_kind: "custom";
|
|
1894
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
1895
|
+
}[];
|
|
1896
|
+
outputs: {
|
|
1897
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
1898
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
1899
|
+
};
|
|
1900
|
+
storageLayout: Record<string, {
|
|
1901
|
+
slot: string;
|
|
1902
|
+
}>;
|
|
1903
|
+
fileMap: Record<number, {
|
|
1904
|
+
source: string;
|
|
1905
|
+
path: string;
|
|
1906
|
+
}>;
|
|
1907
|
+
} | undefined, any];
|
|
1108
1908
|
}>, z.ZodObject<{
|
|
1109
1909
|
name: z.ZodLiteral<"sendTx">;
|
|
1110
1910
|
args: z.ZodTuple<[z.ZodObject<{
|
|
1111
1911
|
calls: z.ZodArray<z.ZodObject<{
|
|
1112
1912
|
name: z.ZodString;
|
|
1113
|
-
to: ZodFor<AztecAddress>;
|
|
1114
|
-
selector: ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
1913
|
+
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1914
|
+
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
1115
1915
|
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
1116
1916
|
isStatic: z.ZodBoolean;
|
|
1117
1917
|
hideMsgSender: z.ZodBoolean;
|
|
1118
|
-
args: z.ZodArray<ZodFor<Fr>, "many">;
|
|
1918
|
+
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
1119
1919
|
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
1120
1920
|
}, "strip", z.ZodTypeAny, {
|
|
1121
1921
|
name: string;
|
|
@@ -1138,8 +1938,8 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1138
1938
|
}>, "many">;
|
|
1139
1939
|
authWitnesses: z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">;
|
|
1140
1940
|
capsules: z.ZodArray<z.ZodType<Capsule, any, string>, "many">;
|
|
1141
|
-
extraHashedArgs: z.ZodArray<ZodFor<HashedValues>, "many">;
|
|
1142
|
-
feePayer: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<ZodFor<AztecAddress>>;
|
|
1941
|
+
extraHashedArgs: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<HashedValues>, "many">;
|
|
1942
|
+
feePayer: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
|
|
1143
1943
|
}, "strip", z.ZodTypeAny, {
|
|
1144
1944
|
calls: {
|
|
1145
1945
|
name: string;
|
|
@@ -1171,7 +1971,7 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1171
1971
|
extraHashedArgs: any[];
|
|
1172
1972
|
feePayer?: any;
|
|
1173
1973
|
}>, z.ZodObject<{
|
|
1174
|
-
from: ZodFor<AztecAddress>;
|
|
1974
|
+
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1175
1975
|
authWitnesses: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">>;
|
|
1176
1976
|
capsules: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<Capsule, any, string>, "many">>;
|
|
1177
1977
|
fee: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodObject<{
|
|
@@ -1409,12 +2209,12 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1409
2209
|
name: z.ZodLiteral<"simulateUtility">;
|
|
1410
2210
|
args: z.ZodTuple<[z.ZodObject<{
|
|
1411
2211
|
name: z.ZodString;
|
|
1412
|
-
to: ZodFor<AztecAddress>;
|
|
1413
|
-
selector: ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
2212
|
+
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
2213
|
+
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
1414
2214
|
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
1415
2215
|
isStatic: z.ZodBoolean;
|
|
1416
2216
|
hideMsgSender: z.ZodBoolean;
|
|
1417
|
-
args: z.ZodArray<ZodFor<Fr>, "many">;
|
|
2217
|
+
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
1418
2218
|
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
1419
2219
|
}, "strip", z.ZodTypeAny, {
|
|
1420
2220
|
name: string;
|
|
@@ -1464,12 +2264,12 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1464
2264
|
args: z.ZodTuple<[z.ZodObject<{
|
|
1465
2265
|
calls: z.ZodArray<z.ZodObject<{
|
|
1466
2266
|
name: z.ZodString;
|
|
1467
|
-
to: ZodFor<AztecAddress>;
|
|
1468
|
-
selector: ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
2267
|
+
to: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
2268
|
+
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
1469
2269
|
type: z.ZodNativeEnum<typeof FunctionType>;
|
|
1470
2270
|
isStatic: z.ZodBoolean;
|
|
1471
2271
|
hideMsgSender: z.ZodBoolean;
|
|
1472
|
-
args: z.ZodArray<ZodFor<Fr>, "many">;
|
|
2272
|
+
args: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<Fr>, "many">;
|
|
1473
2273
|
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
1474
2274
|
}, "strip", z.ZodTypeAny, {
|
|
1475
2275
|
name: string;
|
|
@@ -1492,8 +2292,8 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1492
2292
|
}>, "many">;
|
|
1493
2293
|
authWitnesses: z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">;
|
|
1494
2294
|
capsules: z.ZodArray<z.ZodType<Capsule, any, string>, "many">;
|
|
1495
|
-
extraHashedArgs: z.ZodArray<ZodFor<HashedValues>, "many">;
|
|
1496
|
-
feePayer: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<ZodFor<AztecAddress>>;
|
|
2295
|
+
extraHashedArgs: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<HashedValues>, "many">;
|
|
2296
|
+
feePayer: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>>;
|
|
1497
2297
|
}, "strip", z.ZodTypeAny, {
|
|
1498
2298
|
calls: {
|
|
1499
2299
|
name: string;
|
|
@@ -1525,7 +2325,7 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1525
2325
|
extraHashedArgs: any[];
|
|
1526
2326
|
feePayer?: any;
|
|
1527
2327
|
}>, z.ZodObject<{
|
|
1528
|
-
from: ZodFor<AztecAddress>;
|
|
2328
|
+
from: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1529
2329
|
authWitnesses: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<AuthWitness, any, string>, "many">>;
|
|
1530
2330
|
capsules: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodArray<z.ZodType<Capsule, any, string>, "many">>;
|
|
1531
2331
|
fee: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodObject<{
|
|
@@ -1793,21 +2593,21 @@ export declare const BatchedMethodSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1793
2593
|
export declare const ContractMetadataSchema: z.ZodObject<{
|
|
1794
2594
|
contractInstance: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
|
|
1795
2595
|
version: z.ZodLiteral<1>;
|
|
1796
|
-
salt: ZodFor<Fr>;
|
|
1797
|
-
deployer: ZodFor<AztecAddress>;
|
|
1798
|
-
currentContractClassId: ZodFor<Fr>;
|
|
1799
|
-
originalContractClassId: ZodFor<Fr>;
|
|
1800
|
-
initializationHash: ZodFor<Fr>;
|
|
2596
|
+
salt: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
2597
|
+
deployer: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
2598
|
+
currentContractClassId: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
2599
|
+
originalContractClassId: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
2600
|
+
initializationHash: import("@aztec/stdlib/schemas").ZodFor<Fr>;
|
|
1801
2601
|
publicKeys: z.ZodEffects<z.ZodObject<{
|
|
1802
|
-
masterNullifierPublicKey: z.ZodType<import("
|
|
1803
|
-
masterIncomingViewingPublicKey: z.ZodType<import("
|
|
1804
|
-
masterOutgoingViewingPublicKey: z.ZodType<import("
|
|
1805
|
-
masterTaggingPublicKey: z.ZodType<import("
|
|
2602
|
+
masterNullifierPublicKey: z.ZodType<import("../api/fields.js").Point, any, string>;
|
|
2603
|
+
masterIncomingViewingPublicKey: z.ZodType<import("../api/fields.js").Point, any, string>;
|
|
2604
|
+
masterOutgoingViewingPublicKey: z.ZodType<import("../api/fields.js").Point, any, string>;
|
|
2605
|
+
masterTaggingPublicKey: z.ZodType<import("../api/fields.js").Point, any, string>;
|
|
1806
2606
|
}, "strip", z.ZodTypeAny, {
|
|
1807
|
-
masterNullifierPublicKey: import("
|
|
1808
|
-
masterIncomingViewingPublicKey: import("
|
|
1809
|
-
masterOutgoingViewingPublicKey: import("
|
|
1810
|
-
masterTaggingPublicKey: import("
|
|
2607
|
+
masterNullifierPublicKey: import("../api/fields.js").Point;
|
|
2608
|
+
masterIncomingViewingPublicKey: import("../api/fields.js").Point;
|
|
2609
|
+
masterOutgoingViewingPublicKey: import("../api/fields.js").Point;
|
|
2610
|
+
masterTaggingPublicKey: import("../api/fields.js").Point;
|
|
1811
2611
|
}, {
|
|
1812
2612
|
masterNullifierPublicKey: string;
|
|
1813
2613
|
masterIncomingViewingPublicKey: string;
|
|
@@ -1841,7 +2641,7 @@ export declare const ContractMetadataSchema: z.ZodObject<{
|
|
|
1841
2641
|
masterTaggingPublicKey: string;
|
|
1842
2642
|
};
|
|
1843
2643
|
}>, z.ZodObject<{
|
|
1844
|
-
address: ZodFor<AztecAddress>;
|
|
2644
|
+
address: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
1845
2645
|
}, "strip", z.ZodTypeAny, {
|
|
1846
2646
|
address: AztecAddress;
|
|
1847
2647
|
}, {
|
|
@@ -1888,7 +2688,7 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
|
|
|
1888
2688
|
version: z.ZodLiteral<1>;
|
|
1889
2689
|
artifactHash: z.ZodType<Fr, any, string>;
|
|
1890
2690
|
privateFunctions: z.ZodArray<z.ZodObject<{
|
|
1891
|
-
selector: ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
2691
|
+
selector: import("@aztec/stdlib/schemas").ZodFor<import("@aztec/stdlib/abi").FunctionSelector>;
|
|
1892
2692
|
vkHash: z.ZodType<Fr, any, string>;
|
|
1893
2693
|
}, "strip", z.ZodTypeAny, {
|
|
1894
2694
|
selector: import("@aztec/stdlib/abi").FunctionSelector;
|
|
@@ -1897,7 +2697,7 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
|
|
|
1897
2697
|
selector?: any;
|
|
1898
2698
|
vkHash: string;
|
|
1899
2699
|
}>, "many">;
|
|
1900
|
-
packedBytecode: ZodFor<Buffer<ArrayBufferLike>>;
|
|
2700
|
+
packedBytecode: import("@aztec/stdlib/schemas").ZodFor<Buffer<ArrayBufferLike>>;
|
|
1901
2701
|
} & {
|
|
1902
2702
|
id: z.ZodType<Fr, any, string>;
|
|
1903
2703
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1920,7 +2720,606 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
|
|
|
1920
2720
|
id: string;
|
|
1921
2721
|
}>, z.ZodUndefined]>;
|
|
1922
2722
|
isContractClassPubliclyRegistered: z.ZodBoolean;
|
|
1923
|
-
artifact: z.ZodUnion<[
|
|
2723
|
+
artifact: z.ZodUnion<[z.ZodObject<{
|
|
2724
|
+
name: z.ZodString;
|
|
2725
|
+
functions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2726
|
+
name: z.ZodString;
|
|
2727
|
+
functionType: z.ZodNativeEnum<typeof FunctionType>;
|
|
2728
|
+
isOnlySelf: z.ZodBoolean;
|
|
2729
|
+
isStatic: z.ZodBoolean;
|
|
2730
|
+
isInitializer: z.ZodBoolean;
|
|
2731
|
+
parameters: z.ZodArray<z.ZodObject<{
|
|
2732
|
+
name: z.ZodString;
|
|
2733
|
+
type: z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>;
|
|
2734
|
+
visibility: z.ZodEnum<["public", "private", "databus"]>;
|
|
2735
|
+
}, "strip", z.ZodTypeAny, {
|
|
2736
|
+
name: string;
|
|
2737
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
2738
|
+
visibility: "databus" | "private" | "public";
|
|
2739
|
+
}, {
|
|
2740
|
+
name: string;
|
|
2741
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
2742
|
+
visibility: "databus" | "private" | "public";
|
|
2743
|
+
}>, "many">;
|
|
2744
|
+
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
2745
|
+
errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2746
|
+
error_kind: z.ZodLiteral<"string">;
|
|
2747
|
+
string: z.ZodString;
|
|
2748
|
+
}, "strip", z.ZodTypeAny, {
|
|
2749
|
+
error_kind: "string";
|
|
2750
|
+
string: string;
|
|
2751
|
+
}, {
|
|
2752
|
+
error_kind: "string";
|
|
2753
|
+
string: string;
|
|
2754
|
+
}>, z.ZodObject<{
|
|
2755
|
+
error_kind: z.ZodLiteral<"fmtstring">;
|
|
2756
|
+
length: z.ZodNumber;
|
|
2757
|
+
item_types: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
2758
|
+
}, "strip", z.ZodTypeAny, {
|
|
2759
|
+
error_kind: "fmtstring";
|
|
2760
|
+
length: number;
|
|
2761
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
2762
|
+
}, {
|
|
2763
|
+
error_kind: "fmtstring";
|
|
2764
|
+
length: number;
|
|
2765
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
2766
|
+
}>, z.ZodIntersection<z.ZodObject<{
|
|
2767
|
+
error_kind: z.ZodLiteral<"custom">;
|
|
2768
|
+
}, "strip", z.ZodTypeAny, {
|
|
2769
|
+
error_kind: "custom";
|
|
2770
|
+
}, {
|
|
2771
|
+
error_kind: "custom";
|
|
2772
|
+
}>, z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>>]>>>;
|
|
2773
|
+
}, "strip", z.ZodTypeAny, {
|
|
2774
|
+
name: string;
|
|
2775
|
+
functionType: FunctionType;
|
|
2776
|
+
isOnlySelf: boolean;
|
|
2777
|
+
isStatic: boolean;
|
|
2778
|
+
isInitializer: boolean;
|
|
2779
|
+
parameters: {
|
|
2780
|
+
name: string;
|
|
2781
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
2782
|
+
visibility: "databus" | "private" | "public";
|
|
2783
|
+
}[];
|
|
2784
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
2785
|
+
errorTypes: Record<string, {
|
|
2786
|
+
error_kind: "string";
|
|
2787
|
+
string: string;
|
|
2788
|
+
} | {
|
|
2789
|
+
error_kind: "fmtstring";
|
|
2790
|
+
length: number;
|
|
2791
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
2792
|
+
} | ({
|
|
2793
|
+
error_kind: "custom";
|
|
2794
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
2795
|
+
}, {
|
|
2796
|
+
name: string;
|
|
2797
|
+
functionType: FunctionType;
|
|
2798
|
+
isOnlySelf: boolean;
|
|
2799
|
+
isStatic: boolean;
|
|
2800
|
+
isInitializer: boolean;
|
|
2801
|
+
parameters: {
|
|
2802
|
+
name: string;
|
|
2803
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
2804
|
+
visibility: "databus" | "private" | "public";
|
|
2805
|
+
}[];
|
|
2806
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
2807
|
+
errorTypes: Record<string, {
|
|
2808
|
+
error_kind: "string";
|
|
2809
|
+
string: string;
|
|
2810
|
+
} | {
|
|
2811
|
+
error_kind: "fmtstring";
|
|
2812
|
+
length: number;
|
|
2813
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
2814
|
+
} | ({
|
|
2815
|
+
error_kind: "custom";
|
|
2816
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
2817
|
+
}>, z.ZodObject<{
|
|
2818
|
+
bytecode: import("@aztec/stdlib/schemas").ZodFor<Buffer<ArrayBufferLike>>;
|
|
2819
|
+
verificationKey: z.ZodOptional<z.ZodString>;
|
|
2820
|
+
debugSymbols: z.ZodString;
|
|
2821
|
+
debug: z.ZodOptional<z.ZodObject<{
|
|
2822
|
+
debugSymbols: z.ZodObject<{
|
|
2823
|
+
location_tree: z.ZodObject<{
|
|
2824
|
+
locations: z.ZodArray<z.ZodObject<{
|
|
2825
|
+
parent: z.ZodNullable<z.ZodNumber>;
|
|
2826
|
+
value: z.ZodObject<{
|
|
2827
|
+
span: z.ZodObject<{
|
|
2828
|
+
start: z.ZodNumber;
|
|
2829
|
+
end: z.ZodNumber;
|
|
2830
|
+
}, "strip", z.ZodTypeAny, {
|
|
2831
|
+
start: number;
|
|
2832
|
+
end: number;
|
|
2833
|
+
}, {
|
|
2834
|
+
start: number;
|
|
2835
|
+
end: number;
|
|
2836
|
+
}>;
|
|
2837
|
+
file: z.ZodNumber;
|
|
2838
|
+
}, "strip", z.ZodTypeAny, {
|
|
2839
|
+
span: {
|
|
2840
|
+
start: number;
|
|
2841
|
+
end: number;
|
|
2842
|
+
};
|
|
2843
|
+
file: number;
|
|
2844
|
+
}, {
|
|
2845
|
+
span: {
|
|
2846
|
+
start: number;
|
|
2847
|
+
end: number;
|
|
2848
|
+
};
|
|
2849
|
+
file: number;
|
|
2850
|
+
}>;
|
|
2851
|
+
}, "strip", z.ZodTypeAny, {
|
|
2852
|
+
parent: number | null;
|
|
2853
|
+
value: {
|
|
2854
|
+
span: {
|
|
2855
|
+
start: number;
|
|
2856
|
+
end: number;
|
|
2857
|
+
};
|
|
2858
|
+
file: number;
|
|
2859
|
+
};
|
|
2860
|
+
}, {
|
|
2861
|
+
parent: number | null;
|
|
2862
|
+
value: {
|
|
2863
|
+
span: {
|
|
2864
|
+
start: number;
|
|
2865
|
+
end: number;
|
|
2866
|
+
};
|
|
2867
|
+
file: number;
|
|
2868
|
+
};
|
|
2869
|
+
}>, "many">;
|
|
2870
|
+
}, "strip", z.ZodTypeAny, {
|
|
2871
|
+
locations: {
|
|
2872
|
+
parent: number | null;
|
|
2873
|
+
value: {
|
|
2874
|
+
span: {
|
|
2875
|
+
start: number;
|
|
2876
|
+
end: number;
|
|
2877
|
+
};
|
|
2878
|
+
file: number;
|
|
2879
|
+
};
|
|
2880
|
+
}[];
|
|
2881
|
+
}, {
|
|
2882
|
+
locations: {
|
|
2883
|
+
parent: number | null;
|
|
2884
|
+
value: {
|
|
2885
|
+
span: {
|
|
2886
|
+
start: number;
|
|
2887
|
+
end: number;
|
|
2888
|
+
};
|
|
2889
|
+
file: number;
|
|
2890
|
+
};
|
|
2891
|
+
}[];
|
|
2892
|
+
}>;
|
|
2893
|
+
acir_locations: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
2894
|
+
brillig_locations: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2895
|
+
}, "strip", z.ZodTypeAny, {
|
|
2896
|
+
location_tree: {
|
|
2897
|
+
locations: {
|
|
2898
|
+
parent: number | null;
|
|
2899
|
+
value: {
|
|
2900
|
+
span: {
|
|
2901
|
+
start: number;
|
|
2902
|
+
end: number;
|
|
2903
|
+
};
|
|
2904
|
+
file: number;
|
|
2905
|
+
};
|
|
2906
|
+
}[];
|
|
2907
|
+
};
|
|
2908
|
+
acir_locations: Record<string, number>;
|
|
2909
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
2910
|
+
}, {
|
|
2911
|
+
location_tree: {
|
|
2912
|
+
locations: {
|
|
2913
|
+
parent: number | null;
|
|
2914
|
+
value: {
|
|
2915
|
+
span: {
|
|
2916
|
+
start: number;
|
|
2917
|
+
end: number;
|
|
2918
|
+
};
|
|
2919
|
+
file: number;
|
|
2920
|
+
};
|
|
2921
|
+
}[];
|
|
2922
|
+
};
|
|
2923
|
+
acir_locations: Record<string, number>;
|
|
2924
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
2925
|
+
}>;
|
|
2926
|
+
files: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2927
|
+
source: z.ZodString;
|
|
2928
|
+
path: z.ZodString;
|
|
2929
|
+
}, "strip", z.ZodTypeAny, {
|
|
2930
|
+
source: string;
|
|
2931
|
+
path: string;
|
|
2932
|
+
}, {
|
|
2933
|
+
source: string;
|
|
2934
|
+
path: string;
|
|
2935
|
+
}>>;
|
|
2936
|
+
}, "strip", z.ZodTypeAny, {
|
|
2937
|
+
debugSymbols: {
|
|
2938
|
+
location_tree: {
|
|
2939
|
+
locations: {
|
|
2940
|
+
parent: number | null;
|
|
2941
|
+
value: {
|
|
2942
|
+
span: {
|
|
2943
|
+
start: number;
|
|
2944
|
+
end: number;
|
|
2945
|
+
};
|
|
2946
|
+
file: number;
|
|
2947
|
+
};
|
|
2948
|
+
}[];
|
|
2949
|
+
};
|
|
2950
|
+
acir_locations: Record<string, number>;
|
|
2951
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
2952
|
+
};
|
|
2953
|
+
files: Record<string, {
|
|
2954
|
+
source: string;
|
|
2955
|
+
path: string;
|
|
2956
|
+
}>;
|
|
2957
|
+
}, {
|
|
2958
|
+
debugSymbols: {
|
|
2959
|
+
location_tree: {
|
|
2960
|
+
locations: {
|
|
2961
|
+
parent: number | null;
|
|
2962
|
+
value: {
|
|
2963
|
+
span: {
|
|
2964
|
+
start: number;
|
|
2965
|
+
end: number;
|
|
2966
|
+
};
|
|
2967
|
+
file: number;
|
|
2968
|
+
};
|
|
2969
|
+
}[];
|
|
2970
|
+
};
|
|
2971
|
+
acir_locations: Record<string, number>;
|
|
2972
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
2973
|
+
};
|
|
2974
|
+
files: Record<string, {
|
|
2975
|
+
source: string;
|
|
2976
|
+
path: string;
|
|
2977
|
+
}>;
|
|
2978
|
+
}>>;
|
|
2979
|
+
}, "strip", z.ZodTypeAny, {
|
|
2980
|
+
bytecode: Buffer<ArrayBufferLike>;
|
|
2981
|
+
verificationKey?: string | undefined;
|
|
2982
|
+
debugSymbols: string;
|
|
2983
|
+
debug?: {
|
|
2984
|
+
debugSymbols: {
|
|
2985
|
+
location_tree: {
|
|
2986
|
+
locations: {
|
|
2987
|
+
parent: number | null;
|
|
2988
|
+
value: {
|
|
2989
|
+
span: {
|
|
2990
|
+
start: number;
|
|
2991
|
+
end: number;
|
|
2992
|
+
};
|
|
2993
|
+
file: number;
|
|
2994
|
+
};
|
|
2995
|
+
}[];
|
|
2996
|
+
};
|
|
2997
|
+
acir_locations: Record<string, number>;
|
|
2998
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
2999
|
+
};
|
|
3000
|
+
files: Record<string, {
|
|
3001
|
+
source: string;
|
|
3002
|
+
path: string;
|
|
3003
|
+
}>;
|
|
3004
|
+
} | undefined;
|
|
3005
|
+
}, {
|
|
3006
|
+
bytecode?: any;
|
|
3007
|
+
verificationKey?: string | undefined;
|
|
3008
|
+
debugSymbols: string;
|
|
3009
|
+
debug?: {
|
|
3010
|
+
debugSymbols: {
|
|
3011
|
+
location_tree: {
|
|
3012
|
+
locations: {
|
|
3013
|
+
parent: number | null;
|
|
3014
|
+
value: {
|
|
3015
|
+
span: {
|
|
3016
|
+
start: number;
|
|
3017
|
+
end: number;
|
|
3018
|
+
};
|
|
3019
|
+
file: number;
|
|
3020
|
+
};
|
|
3021
|
+
}[];
|
|
3022
|
+
};
|
|
3023
|
+
acir_locations: Record<string, number>;
|
|
3024
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
3025
|
+
};
|
|
3026
|
+
files: Record<string, {
|
|
3027
|
+
source: string;
|
|
3028
|
+
path: string;
|
|
3029
|
+
}>;
|
|
3030
|
+
} | undefined;
|
|
3031
|
+
}>>, "many">;
|
|
3032
|
+
nonDispatchPublicFunctions: z.ZodArray<z.ZodObject<{
|
|
3033
|
+
name: z.ZodString;
|
|
3034
|
+
functionType: z.ZodNativeEnum<typeof FunctionType>;
|
|
3035
|
+
isOnlySelf: z.ZodBoolean;
|
|
3036
|
+
isStatic: z.ZodBoolean;
|
|
3037
|
+
isInitializer: z.ZodBoolean;
|
|
3038
|
+
parameters: z.ZodArray<z.ZodObject<{
|
|
3039
|
+
name: z.ZodString;
|
|
3040
|
+
type: z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>;
|
|
3041
|
+
visibility: z.ZodEnum<["public", "private", "databus"]>;
|
|
3042
|
+
}, "strip", z.ZodTypeAny, {
|
|
3043
|
+
name: string;
|
|
3044
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3045
|
+
visibility: "databus" | "private" | "public";
|
|
3046
|
+
}, {
|
|
3047
|
+
name: string;
|
|
3048
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3049
|
+
visibility: "databus" | "private" | "public";
|
|
3050
|
+
}>, "many">;
|
|
3051
|
+
returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
3052
|
+
errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3053
|
+
error_kind: z.ZodLiteral<"string">;
|
|
3054
|
+
string: z.ZodString;
|
|
3055
|
+
}, "strip", z.ZodTypeAny, {
|
|
3056
|
+
error_kind: "string";
|
|
3057
|
+
string: string;
|
|
3058
|
+
}, {
|
|
3059
|
+
error_kind: "string";
|
|
3060
|
+
string: string;
|
|
3061
|
+
}>, z.ZodObject<{
|
|
3062
|
+
error_kind: z.ZodLiteral<"fmtstring">;
|
|
3063
|
+
length: z.ZodNumber;
|
|
3064
|
+
item_types: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
|
|
3065
|
+
}, "strip", z.ZodTypeAny, {
|
|
3066
|
+
error_kind: "fmtstring";
|
|
3067
|
+
length: number;
|
|
3068
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3069
|
+
}, {
|
|
3070
|
+
error_kind: "fmtstring";
|
|
3071
|
+
length: number;
|
|
3072
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3073
|
+
}>, z.ZodIntersection<z.ZodObject<{
|
|
3074
|
+
error_kind: z.ZodLiteral<"custom">;
|
|
3075
|
+
}, "strip", z.ZodTypeAny, {
|
|
3076
|
+
error_kind: "custom";
|
|
3077
|
+
}, {
|
|
3078
|
+
error_kind: "custom";
|
|
3079
|
+
}>, z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>>]>>>;
|
|
3080
|
+
}, "strip", z.ZodTypeAny, {
|
|
3081
|
+
name: string;
|
|
3082
|
+
functionType: FunctionType;
|
|
3083
|
+
isOnlySelf: boolean;
|
|
3084
|
+
isStatic: boolean;
|
|
3085
|
+
isInitializer: boolean;
|
|
3086
|
+
parameters: {
|
|
3087
|
+
name: string;
|
|
3088
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3089
|
+
visibility: "databus" | "private" | "public";
|
|
3090
|
+
}[];
|
|
3091
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3092
|
+
errorTypes: Record<string, {
|
|
3093
|
+
error_kind: "string";
|
|
3094
|
+
string: string;
|
|
3095
|
+
} | {
|
|
3096
|
+
error_kind: "fmtstring";
|
|
3097
|
+
length: number;
|
|
3098
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3099
|
+
} | ({
|
|
3100
|
+
error_kind: "custom";
|
|
3101
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3102
|
+
}, {
|
|
3103
|
+
name: string;
|
|
3104
|
+
functionType: FunctionType;
|
|
3105
|
+
isOnlySelf: boolean;
|
|
3106
|
+
isStatic: boolean;
|
|
3107
|
+
isInitializer: boolean;
|
|
3108
|
+
parameters: {
|
|
3109
|
+
name: string;
|
|
3110
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3111
|
+
visibility: "databus" | "private" | "public";
|
|
3112
|
+
}[];
|
|
3113
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3114
|
+
errorTypes: Record<string, {
|
|
3115
|
+
error_kind: "string";
|
|
3116
|
+
string: string;
|
|
3117
|
+
} | {
|
|
3118
|
+
error_kind: "fmtstring";
|
|
3119
|
+
length: number;
|
|
3120
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3121
|
+
} | ({
|
|
3122
|
+
error_kind: "custom";
|
|
3123
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3124
|
+
}>, "many">;
|
|
3125
|
+
outputs: z.ZodObject<{
|
|
3126
|
+
structs: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">>, Record<string, import("@aztec/stdlib/abi").AbiType[]>, Record<string, import("@aztec/stdlib/abi").AbiType[]>>;
|
|
3127
|
+
globals: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiValue, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiValue>, "many">>;
|
|
3128
|
+
}, "strip", z.ZodTypeAny, {
|
|
3129
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
3130
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
3131
|
+
}, {
|
|
3132
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
3133
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
3134
|
+
}>;
|
|
3135
|
+
storageLayout: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3136
|
+
slot: z.ZodType<Fr, any, string>;
|
|
3137
|
+
}, "strip", z.ZodTypeAny, {
|
|
3138
|
+
slot: Fr;
|
|
3139
|
+
}, {
|
|
3140
|
+
slot: string;
|
|
3141
|
+
}>>;
|
|
3142
|
+
fileMap: z.ZodRecord<z.ZodNumber, z.ZodObject<{
|
|
3143
|
+
source: z.ZodString;
|
|
3144
|
+
path: z.ZodString;
|
|
3145
|
+
}, "strip", z.ZodTypeAny, {
|
|
3146
|
+
source: string;
|
|
3147
|
+
path: string;
|
|
3148
|
+
}, {
|
|
3149
|
+
source: string;
|
|
3150
|
+
path: string;
|
|
3151
|
+
}>>;
|
|
3152
|
+
}, "strip", z.ZodTypeAny, {
|
|
3153
|
+
name: string;
|
|
3154
|
+
functions: ({
|
|
3155
|
+
name: string;
|
|
3156
|
+
functionType: FunctionType;
|
|
3157
|
+
isOnlySelf: boolean;
|
|
3158
|
+
isStatic: boolean;
|
|
3159
|
+
isInitializer: boolean;
|
|
3160
|
+
parameters: {
|
|
3161
|
+
name: string;
|
|
3162
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3163
|
+
visibility: "databus" | "private" | "public";
|
|
3164
|
+
}[];
|
|
3165
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3166
|
+
errorTypes: Record<string, {
|
|
3167
|
+
error_kind: "string";
|
|
3168
|
+
string: string;
|
|
3169
|
+
} | {
|
|
3170
|
+
error_kind: "fmtstring";
|
|
3171
|
+
length: number;
|
|
3172
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3173
|
+
} | ({
|
|
3174
|
+
error_kind: "custom";
|
|
3175
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3176
|
+
} & {
|
|
3177
|
+
bytecode: Buffer<ArrayBufferLike>;
|
|
3178
|
+
verificationKey?: string | undefined;
|
|
3179
|
+
debugSymbols: string;
|
|
3180
|
+
debug?: {
|
|
3181
|
+
debugSymbols: {
|
|
3182
|
+
location_tree: {
|
|
3183
|
+
locations: {
|
|
3184
|
+
parent: number | null;
|
|
3185
|
+
value: {
|
|
3186
|
+
span: {
|
|
3187
|
+
start: number;
|
|
3188
|
+
end: number;
|
|
3189
|
+
};
|
|
3190
|
+
file: number;
|
|
3191
|
+
};
|
|
3192
|
+
}[];
|
|
3193
|
+
};
|
|
3194
|
+
acir_locations: Record<string, number>;
|
|
3195
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
3196
|
+
};
|
|
3197
|
+
files: Record<string, {
|
|
3198
|
+
source: string;
|
|
3199
|
+
path: string;
|
|
3200
|
+
}>;
|
|
3201
|
+
} | undefined;
|
|
3202
|
+
})[];
|
|
3203
|
+
nonDispatchPublicFunctions: {
|
|
3204
|
+
name: string;
|
|
3205
|
+
functionType: FunctionType;
|
|
3206
|
+
isOnlySelf: boolean;
|
|
3207
|
+
isStatic: boolean;
|
|
3208
|
+
isInitializer: boolean;
|
|
3209
|
+
parameters: {
|
|
3210
|
+
name: string;
|
|
3211
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3212
|
+
visibility: "databus" | "private" | "public";
|
|
3213
|
+
}[];
|
|
3214
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3215
|
+
errorTypes: Record<string, {
|
|
3216
|
+
error_kind: "string";
|
|
3217
|
+
string: string;
|
|
3218
|
+
} | {
|
|
3219
|
+
error_kind: "fmtstring";
|
|
3220
|
+
length: number;
|
|
3221
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3222
|
+
} | ({
|
|
3223
|
+
error_kind: "custom";
|
|
3224
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3225
|
+
}[];
|
|
3226
|
+
outputs: {
|
|
3227
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
3228
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
3229
|
+
};
|
|
3230
|
+
storageLayout: Record<string, {
|
|
3231
|
+
slot: Fr;
|
|
3232
|
+
}>;
|
|
3233
|
+
fileMap: Record<number, {
|
|
3234
|
+
source: string;
|
|
3235
|
+
path: string;
|
|
3236
|
+
}>;
|
|
3237
|
+
}, {
|
|
3238
|
+
name: string;
|
|
3239
|
+
functions: ({
|
|
3240
|
+
name: string;
|
|
3241
|
+
functionType: FunctionType;
|
|
3242
|
+
isOnlySelf: boolean;
|
|
3243
|
+
isStatic: boolean;
|
|
3244
|
+
isInitializer: boolean;
|
|
3245
|
+
parameters: {
|
|
3246
|
+
name: string;
|
|
3247
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3248
|
+
visibility: "databus" | "private" | "public";
|
|
3249
|
+
}[];
|
|
3250
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3251
|
+
errorTypes: Record<string, {
|
|
3252
|
+
error_kind: "string";
|
|
3253
|
+
string: string;
|
|
3254
|
+
} | {
|
|
3255
|
+
error_kind: "fmtstring";
|
|
3256
|
+
length: number;
|
|
3257
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3258
|
+
} | ({
|
|
3259
|
+
error_kind: "custom";
|
|
3260
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3261
|
+
} & {
|
|
3262
|
+
bytecode?: any;
|
|
3263
|
+
verificationKey?: string | undefined;
|
|
3264
|
+
debugSymbols: string;
|
|
3265
|
+
debug?: {
|
|
3266
|
+
debugSymbols: {
|
|
3267
|
+
location_tree: {
|
|
3268
|
+
locations: {
|
|
3269
|
+
parent: number | null;
|
|
3270
|
+
value: {
|
|
3271
|
+
span: {
|
|
3272
|
+
start: number;
|
|
3273
|
+
end: number;
|
|
3274
|
+
};
|
|
3275
|
+
file: number;
|
|
3276
|
+
};
|
|
3277
|
+
}[];
|
|
3278
|
+
};
|
|
3279
|
+
acir_locations: Record<string, number>;
|
|
3280
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
3281
|
+
};
|
|
3282
|
+
files: Record<string, {
|
|
3283
|
+
source: string;
|
|
3284
|
+
path: string;
|
|
3285
|
+
}>;
|
|
3286
|
+
} | undefined;
|
|
3287
|
+
})[];
|
|
3288
|
+
nonDispatchPublicFunctions: {
|
|
3289
|
+
name: string;
|
|
3290
|
+
functionType: FunctionType;
|
|
3291
|
+
isOnlySelf: boolean;
|
|
3292
|
+
isStatic: boolean;
|
|
3293
|
+
isInitializer: boolean;
|
|
3294
|
+
parameters: {
|
|
3295
|
+
name: string;
|
|
3296
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3297
|
+
visibility: "databus" | "private" | "public";
|
|
3298
|
+
}[];
|
|
3299
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3300
|
+
errorTypes: Record<string, {
|
|
3301
|
+
error_kind: "string";
|
|
3302
|
+
string: string;
|
|
3303
|
+
} | {
|
|
3304
|
+
error_kind: "fmtstring";
|
|
3305
|
+
length: number;
|
|
3306
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3307
|
+
} | ({
|
|
3308
|
+
error_kind: "custom";
|
|
3309
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3310
|
+
}[];
|
|
3311
|
+
outputs: {
|
|
3312
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
3313
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
3314
|
+
};
|
|
3315
|
+
storageLayout: Record<string, {
|
|
3316
|
+
slot: string;
|
|
3317
|
+
}>;
|
|
3318
|
+
fileMap: Record<number, {
|
|
3319
|
+
source: string;
|
|
3320
|
+
path: string;
|
|
3321
|
+
}>;
|
|
3322
|
+
}>, z.ZodUndefined]>;
|
|
1924
3323
|
}, "strip", z.ZodTypeAny, {
|
|
1925
3324
|
contractClass?: {
|
|
1926
3325
|
version: 1;
|
|
@@ -1933,7 +3332,92 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
|
|
|
1933
3332
|
id: Fr;
|
|
1934
3333
|
} | undefined;
|
|
1935
3334
|
isContractClassPubliclyRegistered: boolean;
|
|
1936
|
-
artifact?:
|
|
3335
|
+
artifact?: {
|
|
3336
|
+
name: string;
|
|
3337
|
+
functions: ({
|
|
3338
|
+
name: string;
|
|
3339
|
+
functionType: FunctionType;
|
|
3340
|
+
isOnlySelf: boolean;
|
|
3341
|
+
isStatic: boolean;
|
|
3342
|
+
isInitializer: boolean;
|
|
3343
|
+
parameters: {
|
|
3344
|
+
name: string;
|
|
3345
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3346
|
+
visibility: "databus" | "private" | "public";
|
|
3347
|
+
}[];
|
|
3348
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3349
|
+
errorTypes: Record<string, {
|
|
3350
|
+
error_kind: "string";
|
|
3351
|
+
string: string;
|
|
3352
|
+
} | {
|
|
3353
|
+
error_kind: "fmtstring";
|
|
3354
|
+
length: number;
|
|
3355
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3356
|
+
} | ({
|
|
3357
|
+
error_kind: "custom";
|
|
3358
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3359
|
+
} & {
|
|
3360
|
+
bytecode: Buffer<ArrayBufferLike>;
|
|
3361
|
+
verificationKey?: string | undefined;
|
|
3362
|
+
debugSymbols: string;
|
|
3363
|
+
debug?: {
|
|
3364
|
+
debugSymbols: {
|
|
3365
|
+
location_tree: {
|
|
3366
|
+
locations: {
|
|
3367
|
+
parent: number | null;
|
|
3368
|
+
value: {
|
|
3369
|
+
span: {
|
|
3370
|
+
start: number;
|
|
3371
|
+
end: number;
|
|
3372
|
+
};
|
|
3373
|
+
file: number;
|
|
3374
|
+
};
|
|
3375
|
+
}[];
|
|
3376
|
+
};
|
|
3377
|
+
acir_locations: Record<string, number>;
|
|
3378
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
3379
|
+
};
|
|
3380
|
+
files: Record<string, {
|
|
3381
|
+
source: string;
|
|
3382
|
+
path: string;
|
|
3383
|
+
}>;
|
|
3384
|
+
} | undefined;
|
|
3385
|
+
})[];
|
|
3386
|
+
nonDispatchPublicFunctions: {
|
|
3387
|
+
name: string;
|
|
3388
|
+
functionType: FunctionType;
|
|
3389
|
+
isOnlySelf: boolean;
|
|
3390
|
+
isStatic: boolean;
|
|
3391
|
+
isInitializer: boolean;
|
|
3392
|
+
parameters: {
|
|
3393
|
+
name: string;
|
|
3394
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3395
|
+
visibility: "databus" | "private" | "public";
|
|
3396
|
+
}[];
|
|
3397
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3398
|
+
errorTypes: Record<string, {
|
|
3399
|
+
error_kind: "string";
|
|
3400
|
+
string: string;
|
|
3401
|
+
} | {
|
|
3402
|
+
error_kind: "fmtstring";
|
|
3403
|
+
length: number;
|
|
3404
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3405
|
+
} | ({
|
|
3406
|
+
error_kind: "custom";
|
|
3407
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3408
|
+
}[];
|
|
3409
|
+
outputs: {
|
|
3410
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
3411
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
3412
|
+
};
|
|
3413
|
+
storageLayout: Record<string, {
|
|
3414
|
+
slot: Fr;
|
|
3415
|
+
}>;
|
|
3416
|
+
fileMap: Record<number, {
|
|
3417
|
+
source: string;
|
|
3418
|
+
path: string;
|
|
3419
|
+
}>;
|
|
3420
|
+
} | undefined;
|
|
1937
3421
|
}, {
|
|
1938
3422
|
contractClass?: {
|
|
1939
3423
|
version: 1;
|
|
@@ -1946,7 +3430,92 @@ export declare const ContractClassMetadataSchema: z.ZodObject<{
|
|
|
1946
3430
|
id: string;
|
|
1947
3431
|
} | undefined;
|
|
1948
3432
|
isContractClassPubliclyRegistered: boolean;
|
|
1949
|
-
artifact?:
|
|
3433
|
+
artifact?: {
|
|
3434
|
+
name: string;
|
|
3435
|
+
functions: ({
|
|
3436
|
+
name: string;
|
|
3437
|
+
functionType: FunctionType;
|
|
3438
|
+
isOnlySelf: boolean;
|
|
3439
|
+
isStatic: boolean;
|
|
3440
|
+
isInitializer: boolean;
|
|
3441
|
+
parameters: {
|
|
3442
|
+
name: string;
|
|
3443
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3444
|
+
visibility: "databus" | "private" | "public";
|
|
3445
|
+
}[];
|
|
3446
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3447
|
+
errorTypes: Record<string, {
|
|
3448
|
+
error_kind: "string";
|
|
3449
|
+
string: string;
|
|
3450
|
+
} | {
|
|
3451
|
+
error_kind: "fmtstring";
|
|
3452
|
+
length: number;
|
|
3453
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3454
|
+
} | ({
|
|
3455
|
+
error_kind: "custom";
|
|
3456
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3457
|
+
} & {
|
|
3458
|
+
bytecode?: any;
|
|
3459
|
+
verificationKey?: string | undefined;
|
|
3460
|
+
debugSymbols: string;
|
|
3461
|
+
debug?: {
|
|
3462
|
+
debugSymbols: {
|
|
3463
|
+
location_tree: {
|
|
3464
|
+
locations: {
|
|
3465
|
+
parent: number | null;
|
|
3466
|
+
value: {
|
|
3467
|
+
span: {
|
|
3468
|
+
start: number;
|
|
3469
|
+
end: number;
|
|
3470
|
+
};
|
|
3471
|
+
file: number;
|
|
3472
|
+
};
|
|
3473
|
+
}[];
|
|
3474
|
+
};
|
|
3475
|
+
acir_locations: Record<string, number>;
|
|
3476
|
+
brillig_locations: Record<string, Record<string, number>>;
|
|
3477
|
+
};
|
|
3478
|
+
files: Record<string, {
|
|
3479
|
+
source: string;
|
|
3480
|
+
path: string;
|
|
3481
|
+
}>;
|
|
3482
|
+
} | undefined;
|
|
3483
|
+
})[];
|
|
3484
|
+
nonDispatchPublicFunctions: {
|
|
3485
|
+
name: string;
|
|
3486
|
+
functionType: FunctionType;
|
|
3487
|
+
isOnlySelf: boolean;
|
|
3488
|
+
isStatic: boolean;
|
|
3489
|
+
isInitializer: boolean;
|
|
3490
|
+
parameters: {
|
|
3491
|
+
name: string;
|
|
3492
|
+
type: import("@aztec/stdlib/abi").AbiType;
|
|
3493
|
+
visibility: "databus" | "private" | "public";
|
|
3494
|
+
}[];
|
|
3495
|
+
returnTypes: import("@aztec/stdlib/abi").AbiType[];
|
|
3496
|
+
errorTypes: Record<string, {
|
|
3497
|
+
error_kind: "string";
|
|
3498
|
+
string: string;
|
|
3499
|
+
} | {
|
|
3500
|
+
error_kind: "fmtstring";
|
|
3501
|
+
length: number;
|
|
3502
|
+
item_types: import("@aztec/stdlib/abi").AbiType[];
|
|
3503
|
+
} | ({
|
|
3504
|
+
error_kind: "custom";
|
|
3505
|
+
} & import("@aztec/stdlib/abi").AbiType) | undefined>;
|
|
3506
|
+
}[];
|
|
3507
|
+
outputs: {
|
|
3508
|
+
structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
|
|
3509
|
+
globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
|
|
3510
|
+
};
|
|
3511
|
+
storageLayout: Record<string, {
|
|
3512
|
+
slot: string;
|
|
3513
|
+
}>;
|
|
3514
|
+
fileMap: Record<number, {
|
|
3515
|
+
source: string;
|
|
3516
|
+
path: string;
|
|
3517
|
+
}>;
|
|
3518
|
+
} | undefined;
|
|
1950
3519
|
}>;
|
|
1951
3520
|
export declare const EventMetadataDefinitionSchema: z.ZodObject<{
|
|
1952
3521
|
eventSelector: z.ZodType<import("@aztec/stdlib/abi").EventSelector, any, string>;
|
|
@@ -1961,5 +3530,25 @@ export declare const EventMetadataDefinitionSchema: z.ZodObject<{
|
|
|
1961
3530
|
abiType: import("@aztec/stdlib/abi").AbiType;
|
|
1962
3531
|
fieldNames: string[];
|
|
1963
3532
|
}>;
|
|
3533
|
+
export declare const PrivateEventSchema: z.ZodType<any>;
|
|
3534
|
+
export declare const PrivateEventFilterSchema: z.ZodObject<{
|
|
3535
|
+
contractAddress: import("@aztec/stdlib/schemas").ZodFor<AztecAddress>;
|
|
3536
|
+
scopes: z.ZodArray<import("@aztec/stdlib/schemas").ZodFor<AztecAddress>, "many">;
|
|
3537
|
+
txHash: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, Buffer<ArrayBuffer>, string>, TxHash, string>>;
|
|
3538
|
+
fromBlock: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
|
|
3539
|
+
toBlock: import("../../../foundation/dest/schemas/utils.js").ZodNullableOptional<z.ZodEffects<z.ZodPipeline<z.ZodUnion<[z.ZodNumber, z.ZodBigInt, z.ZodString]>, z.ZodNumber>, BlockNumber, string | number | bigint>>;
|
|
3540
|
+
}, "strip", z.ZodTypeAny, {
|
|
3541
|
+
contractAddress: AztecAddress;
|
|
3542
|
+
scopes: AztecAddress[];
|
|
3543
|
+
txHash?: TxHash | undefined;
|
|
3544
|
+
fromBlock?: BlockNumber | undefined;
|
|
3545
|
+
toBlock?: BlockNumber | undefined;
|
|
3546
|
+
}, {
|
|
3547
|
+
contractAddress?: any;
|
|
3548
|
+
scopes: any[];
|
|
3549
|
+
txHash?: string | undefined;
|
|
3550
|
+
fromBlock?: string | number | bigint | undefined;
|
|
3551
|
+
toBlock?: string | number | bigint | undefined;
|
|
3552
|
+
}>;
|
|
1964
3553
|
export declare const WalletSchema: ApiSchemaFor<Wallet>;
|
|
1965
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEtBQUssRUFBRSxFQUFFLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUNuRCxPQUFPLEVBRUwsS0FBSyxnQkFBZ0IsRUFFckIsS0FBSyx1QkFBdUIsRUFDNUIsS0FBSyxZQUFZLEVBQ2pCLFlBQVksRUFDYixNQUFNLG1CQUFtQixDQUFDO0FBQzNCLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUN6RCxPQUFPLEtBQUssRUFBRSxZQUFZLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUNoRSxPQUFPLEVBQ0wsS0FBSyxxQkFBcUIsRUFFMUIsS0FBSywyQkFBMkIsRUFFaEMsS0FBSyxnQkFBZ0IsRUFDdEIsTUFBTSx3QkFBd0IsQ0FBQztBQUNoQyxPQUFPLEVBQUUsR0FBRyxFQUFFLE1BQU0sbUJBQW1CLENBQUM7QUFDeEMsT0FBTyxFQUFvQixLQUFLLFlBQVksRUFBRSxLQUFLLE1BQU0sRUFBcUIsTUFBTSx1QkFBdUIsQ0FBQztBQUM1RyxPQUFPLEVBQ0wsT0FBTyxFQUNQLFlBQVksRUFDWixNQUFNLEVBQ04sZUFBZSxFQUNmLFNBQVMsRUFDVCxrQkFBa0IsRUFDbEIsdUJBQXVCLEVBQ3hCLE1BQU0sa0JBQWtCLENBQUM7QUFDMUIsT0FBTyxLQUFLLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUV6RCxPQUFPLEVBQUUsQ0FBQyxFQUFFLE1BQU0sS0FBSyxDQUFDO0FBRXhCLE9BQU8sS0FBSyxFQUNWLG9CQUFvQixFQUNwQixpQkFBaUIsRUFDakIseUJBQXlCLEVBQ3pCLHNCQUFzQixFQUN0QiwwQkFBMEIsRUFDM0IsTUFBTSxvQ0FBb0MsQ0FBQztBQUM1QyxP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Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7SUFxQjlCLENBQUM7QUFFSCxlQUFPLE1BQU0sc0JBQXNCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztFQUlFLENBQUM7QUFFdEMsZUFBTyxNQUFNLDJCQUEyQjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztFQUlFLENBQUM7QUFFM0MsZUFBTyxNQUFNLDZCQUE2Qjs7Ozs7Ozs7Ozs7O0VBSXhDLENBQUM7QUFFSCxlQUFPLE1BQU0sWUFBWSxFQUFFLFlBQVksQ0FBQyxNQUFNLENBZ0Q3QyxDQUFDIn0=
|
|
3554
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2FsbGV0LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd2FsbGV0L3dhbGxldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEtBQUssRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsV0FBVyxFQUE2QixNQUFNLGlDQUFpQyxDQUFDO0FBQ3pGLE9BQU8sS0FBSyxFQUFFLEVBQUUsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3pELE9BQU8sRUFHTCxLQUFLLGdCQUFnQixFQUVyQixLQUFLLHVCQUF1QixFQUM1QixLQUFLLFlBQVksRUFDakIsWUFBWSxFQUNiLE1BQU0sbUJBQW1CLENBQUM7QUFDM0IsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ3pELE9BQU8sS0FBSyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ2hFLE9BQU8sRUFDTCxLQUFLLHFCQUFxQixFQUUxQixLQUFLLDJCQUEyQixFQUVoQyxLQUFLLGdCQUFnQixFQUN0QixNQUFNLHdCQUF3QixDQUFDO0FBQ2hDLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN4QyxPQUFPLEVBQW9CLEtBQUssWUFBWSxFQUE2QixNQUFNLHVCQUF1QixDQUFDO0FBQ3ZHLE9BQU8sRUFDTCxPQUFPLEVBQ1AsWUFBWSxFQUNaLE1BQU0sRUFDTixlQUFlLEVBQ2YsU0FBUyxFQUNULGtCQUFrQixFQUNsQix1QkFBdUIsRUFFeEIsTUFBTSxrQkFBa0IsQ0FBQztBQUMxQixPQUFPLEtBQUssRUFBRSxnQkFBZ0IsRUFBRSxJQUFJLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUUvRCxPQUFPLEVBQUUsQ0FBQyxFQUFFLE1BQU0sS0FBSyxDQUFDO0FBRXhCLE9BQU8sS0FBSyxFQUNWLG9CQUFvQixFQUNwQixpQkFBaUIsRUFDakIseUJBQXlCLEVBQ3pCLHNCQUFzQixFQUN0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Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztJQXFCOUIsQ0FBQztBQUVILGVBQU8sTUFBTSxzQkFBc0I7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0VBTWxDLENBQUM7QUFFRixlQUFPLE1BQU0sMkJBQTJCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztFQU12QyxDQUFDO0FBRUYsZUFBTyxNQUFNLDZCQUE2Qjs7Ozs7Ozs7Ozs7O0VBSXhDLENBQUM7QUFFSCxlQUFPLE1BQU0sa0JBQWtCLEVBQUUsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBSzdDLENBQUM7QUFFRixlQUFPLE1BQU0sd0JBQXdCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFNbkMsQ0FBQztBQUVILGVBQU8sTUFBTSxZQUFZLEVBQUUsWUFBWSxDQUFDLE1BQU0sQ0FnRDdDLENBQUMifQ==
|