@aztec/txe 3.0.0-nightly.20251109 → 3.0.0-nightly.20251111
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/util/encoding.d.ts +100 -16
- package/dest/util/encoding.d.ts.map +1 -1
- package/package.json +15 -15
package/dest/util/encoding.d.ts
CHANGED
|
@@ -63,25 +63,97 @@ export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString,
|
|
|
63
63
|
originalContractClassId: import("@aztec/foundation/schemas").ZodFor<Fr>;
|
|
64
64
|
initializationHash: import("@aztec/foundation/schemas").ZodFor<Fr>;
|
|
65
65
|
publicKeys: z.ZodEffects<z.ZodObject<{
|
|
66
|
-
masterNullifierPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
66
|
+
masterNullifierPublicKey: z.ZodUnion<[z.ZodType<import("@aztec/foundation/fields").Point, any, string>, z.ZodEffects<z.ZodObject<{
|
|
67
|
+
x: z.ZodUnion<[z.ZodType<Fr, any, string>, z.ZodType<never, any, string>]>;
|
|
68
|
+
y: z.ZodUnion<[z.ZodType<Fr, any, string>, z.ZodType<never, any, string>]>;
|
|
69
|
+
}, "strip", z.ZodTypeAny, {
|
|
70
|
+
x: Fr;
|
|
71
|
+
y: Fr;
|
|
72
|
+
}, {
|
|
73
|
+
x: string;
|
|
74
|
+
y: string;
|
|
75
|
+
}>, import("@aztec/foundation/fields").Point, {
|
|
76
|
+
x: string;
|
|
77
|
+
y: string;
|
|
78
|
+
}>]>;
|
|
79
|
+
masterIncomingViewingPublicKey: z.ZodUnion<[z.ZodType<import("@aztec/foundation/fields").Point, any, string>, z.ZodEffects<z.ZodObject<{
|
|
80
|
+
x: z.ZodUnion<[z.ZodType<Fr, any, string>, z.ZodType<never, any, string>]>;
|
|
81
|
+
y: z.ZodUnion<[z.ZodType<Fr, any, string>, z.ZodType<never, any, string>]>;
|
|
82
|
+
}, "strip", z.ZodTypeAny, {
|
|
83
|
+
x: Fr;
|
|
84
|
+
y: Fr;
|
|
85
|
+
}, {
|
|
86
|
+
x: string;
|
|
87
|
+
y: string;
|
|
88
|
+
}>, import("@aztec/foundation/fields").Point, {
|
|
89
|
+
x: string;
|
|
90
|
+
y: string;
|
|
91
|
+
}>]>;
|
|
92
|
+
masterOutgoingViewingPublicKey: z.ZodUnion<[z.ZodType<import("@aztec/foundation/fields").Point, any, string>, z.ZodEffects<z.ZodObject<{
|
|
93
|
+
x: z.ZodUnion<[z.ZodType<Fr, any, string>, z.ZodType<never, any, string>]>;
|
|
94
|
+
y: z.ZodUnion<[z.ZodType<Fr, any, string>, z.ZodType<never, any, string>]>;
|
|
95
|
+
}, "strip", z.ZodTypeAny, {
|
|
96
|
+
x: Fr;
|
|
97
|
+
y: Fr;
|
|
98
|
+
}, {
|
|
99
|
+
x: string;
|
|
100
|
+
y: string;
|
|
101
|
+
}>, import("@aztec/foundation/fields").Point, {
|
|
102
|
+
x: string;
|
|
103
|
+
y: string;
|
|
104
|
+
}>]>;
|
|
105
|
+
masterTaggingPublicKey: z.ZodUnion<[z.ZodType<import("@aztec/foundation/fields").Point, any, string>, z.ZodEffects<z.ZodObject<{
|
|
106
|
+
x: z.ZodUnion<[z.ZodType<Fr, any, string>, z.ZodType<never, any, string>]>;
|
|
107
|
+
y: z.ZodUnion<[z.ZodType<Fr, any, string>, z.ZodType<never, any, string>]>;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
x: Fr;
|
|
110
|
+
y: Fr;
|
|
111
|
+
}, {
|
|
112
|
+
x: string;
|
|
113
|
+
y: string;
|
|
114
|
+
}>, import("@aztec/foundation/fields").Point, {
|
|
115
|
+
x: string;
|
|
116
|
+
y: string;
|
|
117
|
+
}>]>;
|
|
70
118
|
}, "strip", z.ZodTypeAny, {
|
|
71
119
|
masterNullifierPublicKey: import("@aztec/foundation/fields").Point;
|
|
72
120
|
masterIncomingViewingPublicKey: import("@aztec/foundation/fields").Point;
|
|
73
121
|
masterOutgoingViewingPublicKey: import("@aztec/foundation/fields").Point;
|
|
74
122
|
masterTaggingPublicKey: import("@aztec/foundation/fields").Point;
|
|
75
123
|
}, {
|
|
76
|
-
masterNullifierPublicKey: string
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
124
|
+
masterNullifierPublicKey: string | {
|
|
125
|
+
x: string;
|
|
126
|
+
y: string;
|
|
127
|
+
};
|
|
128
|
+
masterIncomingViewingPublicKey: string | {
|
|
129
|
+
x: string;
|
|
130
|
+
y: string;
|
|
131
|
+
};
|
|
132
|
+
masterOutgoingViewingPublicKey: string | {
|
|
133
|
+
x: string;
|
|
134
|
+
y: string;
|
|
135
|
+
};
|
|
136
|
+
masterTaggingPublicKey: string | {
|
|
137
|
+
x: string;
|
|
138
|
+
y: string;
|
|
139
|
+
};
|
|
80
140
|
}>, import("@aztec/stdlib/keys").PublicKeys, {
|
|
81
|
-
masterNullifierPublicKey: string
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
141
|
+
masterNullifierPublicKey: string | {
|
|
142
|
+
x: string;
|
|
143
|
+
y: string;
|
|
144
|
+
};
|
|
145
|
+
masterIncomingViewingPublicKey: string | {
|
|
146
|
+
x: string;
|
|
147
|
+
y: string;
|
|
148
|
+
};
|
|
149
|
+
masterOutgoingViewingPublicKey: string | {
|
|
150
|
+
x: string;
|
|
151
|
+
y: string;
|
|
152
|
+
};
|
|
153
|
+
masterTaggingPublicKey: string | {
|
|
154
|
+
x: string;
|
|
155
|
+
y: string;
|
|
156
|
+
};
|
|
85
157
|
}>;
|
|
86
158
|
}, "strip", z.ZodTypeAny, {
|
|
87
159
|
version: 1;
|
|
@@ -94,10 +166,22 @@ export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString,
|
|
|
94
166
|
}, {
|
|
95
167
|
version: 1;
|
|
96
168
|
publicKeys: {
|
|
97
|
-
masterNullifierPublicKey: string
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
169
|
+
masterNullifierPublicKey: string | {
|
|
170
|
+
x: string;
|
|
171
|
+
y: string;
|
|
172
|
+
};
|
|
173
|
+
masterIncomingViewingPublicKey: string | {
|
|
174
|
+
x: string;
|
|
175
|
+
y: string;
|
|
176
|
+
};
|
|
177
|
+
masterOutgoingViewingPublicKey: string | {
|
|
178
|
+
x: string;
|
|
179
|
+
y: string;
|
|
180
|
+
};
|
|
181
|
+
masterTaggingPublicKey: string | {
|
|
182
|
+
x: string;
|
|
183
|
+
y: string;
|
|
184
|
+
};
|
|
101
185
|
};
|
|
102
186
|
salt?: any;
|
|
103
187
|
deployer?: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"encoding.d.ts","sourceRoot":"","sources":["../../src/util/encoding.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AAE9C,OAAO,EAAE,KAAK,gBAAgB,EAA0B,MAAM,mBAAmB,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,KAAK,2BAA2B,EAAqC,MAAM,wBAAwB,CAAC;AAE7G,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC;AAEvC,MAAM,MAAM,gBAAgB,GAAG,MAAM,EAAE,CAAC;AAExC,MAAM,MAAM,eAAe,GAAG,CAAC,iBAAiB,GAAG,gBAAgB,GAAG,gBAAgB,GAAG,2BAA2B,CAAC,EAAE,CAAC;AAExH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,MAAM,EAAE,CAAC,iBAAiB,GAAG,gBAAgB,CAAC,EAAE,CAAC;CAClD,CAAC;AAEF,wBAAgB,UAAU,CAAC,GAAG,EAAE,iBAAiB,MAEhD;AAED,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,iBAAiB,gBAEvD;AAED,wBAAgB,SAAS,CAAC,GAAG,EAAE,gBAAgB,QAE9C;AAED;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,GAAG,EAAE,gBAAgB,EAAE,WAAW,EAAE,MAAM,GAAG,MAAM,CAMhF;AAED;;;;;;;;GAQG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,gBAAgB,EAAE,MAAM,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,GAAG,MAAM,CAOpH;AAID,wBAAgB,QAAQ,CACtB,KAAK,EAAE,YAAY,GAAG,UAAU,GAAG,EAAE,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GACzE,iBAAiB,CAYnB;AAED,wBAAgB,OAAO,CAAC,IAAI,EAAE,EAAE,EAAE,GAAG,gBAAgB,CAEpD;AAED,wBAAgB,eAAe,CAAC,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,qBAE/C;AAED,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,gBAAgB,CAEhE;AAED;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAC/B,WAAW,EAAE,gBAAgB,EAC7B,MAAM,EAAE,MAAM,GACb,CAAC,gBAAgB,EAAE,iBAAiB,CAAC,CAYvC;AAED;;;;;;GAMG;AACH,wBAAgB,iCAAiC,CAC/C,WAAW,EAAE,gBAAgB,EAAE,EAC/B,MAAM,EAAE,MAAM,EACd,iBAAiB,EAAE,MAAM,GACxB,CAAC,gBAAgB,EAAE,iBAAiB,CAAC,CAqBvC;AAED,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,CAAC,iBAAiB,GAAG,gBAAgB,CAAC,EAAE;;EAEhF;AAED,eAAO,MAAM,uBAAuB,aAAa,CAAC;AAElD,eAAO,MAAM,sBAAsB,iCAAsB,CAAC;AAE1D,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"encoding.d.ts","sourceRoot":"","sources":["../../src/util/encoding.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AAE9C,OAAO,EAAE,KAAK,gBAAgB,EAA0B,MAAM,mBAAmB,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,KAAK,2BAA2B,EAAqC,MAAM,wBAAwB,CAAC;AAE7G,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC;AAEvC,MAAM,MAAM,gBAAgB,GAAG,MAAM,EAAE,CAAC;AAExC,MAAM,MAAM,eAAe,GAAG,CAAC,iBAAiB,GAAG,gBAAgB,GAAG,gBAAgB,GAAG,2BAA2B,CAAC,EAAE,CAAC;AAExH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,MAAM,EAAE,CAAC,iBAAiB,GAAG,gBAAgB,CAAC,EAAE,CAAC;CAClD,CAAC;AAEF,wBAAgB,UAAU,CAAC,GAAG,EAAE,iBAAiB,MAEhD;AAED,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,iBAAiB,gBAEvD;AAED,wBAAgB,SAAS,CAAC,GAAG,EAAE,gBAAgB,QAE9C;AAED;;;;GAIG;AACH,wBAAgB,aAAa,CAAC,GAAG,EAAE,gBAAgB,EAAE,WAAW,EAAE,MAAM,GAAG,MAAM,CAMhF;AAED;;;;;;;;GAQG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,gBAAgB,EAAE,MAAM,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,GAAG,MAAM,CAOpH;AAID,wBAAgB,QAAQ,CACtB,KAAK,EAAE,YAAY,GAAG,UAAU,GAAG,EAAE,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GACzE,iBAAiB,CAYnB;AAED,wBAAgB,OAAO,CAAC,IAAI,EAAE,EAAE,EAAE,GAAG,gBAAgB,CAEpD;AAED,wBAAgB,eAAe,CAAC,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,qBAE/C;AAED,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,gBAAgB,CAEhE;AAED;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAC/B,WAAW,EAAE,gBAAgB,EAC7B,MAAM,EAAE,MAAM,GACb,CAAC,gBAAgB,EAAE,iBAAiB,CAAC,CAYvC;AAED;;;;;;GAMG;AACH,wBAAgB,iCAAiC,CAC/C,WAAW,EAAE,gBAAgB,EAAE,EAC/B,MAAM,EAAE,MAAM,EACd,iBAAiB,EAAE,MAAM,GACxB,CAAC,gBAAgB,EAAE,iBAAiB,CAAC,CAqBvC;AAED,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,CAAC,iBAAiB,GAAG,gBAAgB,CAAC,EAAE;;EAEhF;AAED,eAAO,MAAM,uBAAuB,aAAa,CAAC;AAElD,eAAO,MAAM,sBAAsB,iCAAsB,CAAC;AAE1D,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAEjC,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;EAElC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/txe",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20251111",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": "./dest/index.js",
|
|
6
6
|
"bin": "./dest/bin/index.js",
|
|
@@ -61,20 +61,20 @@
|
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@aztec/accounts": "3.0.0-nightly.
|
|
65
|
-
"@aztec/archiver": "3.0.0-nightly.
|
|
66
|
-
"@aztec/aztec-node": "3.0.0-nightly.
|
|
67
|
-
"@aztec/aztec.js": "3.0.0-nightly.
|
|
68
|
-
"@aztec/bb-prover": "3.0.0-nightly.
|
|
69
|
-
"@aztec/constants": "3.0.0-nightly.
|
|
70
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
71
|
-
"@aztec/key-store": "3.0.0-nightly.
|
|
72
|
-
"@aztec/kv-store": "3.0.0-nightly.
|
|
73
|
-
"@aztec/protocol-contracts": "3.0.0-nightly.
|
|
74
|
-
"@aztec/pxe": "3.0.0-nightly.
|
|
75
|
-
"@aztec/simulator": "3.0.0-nightly.
|
|
76
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
77
|
-
"@aztec/world-state": "3.0.0-nightly.
|
|
64
|
+
"@aztec/accounts": "3.0.0-nightly.20251111",
|
|
65
|
+
"@aztec/archiver": "3.0.0-nightly.20251111",
|
|
66
|
+
"@aztec/aztec-node": "3.0.0-nightly.20251111",
|
|
67
|
+
"@aztec/aztec.js": "3.0.0-nightly.20251111",
|
|
68
|
+
"@aztec/bb-prover": "3.0.0-nightly.20251111",
|
|
69
|
+
"@aztec/constants": "3.0.0-nightly.20251111",
|
|
70
|
+
"@aztec/foundation": "3.0.0-nightly.20251111",
|
|
71
|
+
"@aztec/key-store": "3.0.0-nightly.20251111",
|
|
72
|
+
"@aztec/kv-store": "3.0.0-nightly.20251111",
|
|
73
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20251111",
|
|
74
|
+
"@aztec/pxe": "3.0.0-nightly.20251111",
|
|
75
|
+
"@aztec/simulator": "3.0.0-nightly.20251111",
|
|
76
|
+
"@aztec/stdlib": "3.0.0-nightly.20251111",
|
|
77
|
+
"@aztec/world-state": "3.0.0-nightly.20251111",
|
|
78
78
|
"zod": "^3.23.8"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|