@aztec/aztec.js 0.0.1-commit.6a729f7 → 0.0.1-commit.6c354eb4c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/api/contract.d.ts +2 -2
- package/dest/api/contract.js +2 -2
- package/dest/api/deployment.d.ts +1 -2
- package/dest/api/deployment.d.ts.map +1 -1
- package/dest/api/deployment.js +0 -1
- package/dest/api/events.d.ts +10 -6
- package/dest/api/events.d.ts.map +1 -1
- package/dest/api/events.js +30 -20
- package/dest/api/fields.d.ts +2 -1
- package/dest/api/fields.d.ts.map +1 -1
- package/dest/api/fields.js +1 -0
- package/dest/api/wallet.d.ts +2 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +1 -1
- package/dest/contract/batch_call.d.ts +3 -3
- package/dest/contract/batch_call.d.ts.map +1 -1
- package/dest/contract/batch_call.js +8 -5
- package/dest/contract/contract_function_interaction.d.ts +3 -12
- package/dest/contract/contract_function_interaction.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.js +10 -7
- package/dest/contract/deploy_method.d.ts +19 -6
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +25 -10
- package/dest/contract/get_gas_limits.js +3 -3
- package/dest/contract/interaction_options.d.ts +8 -1
- package/dest/contract/interaction_options.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts +10 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.js +498 -59
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -13
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-class-registry.js +12 -258
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.js +19 -1
- package/dest/contract/protocol_contracts/public-checks.d.ts +1 -1
- package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/public-checks.js +19 -1
- package/dest/fee/fee_juice_payment_method_with_claim.js +6 -6
- package/dest/fee/private_fee_payment_method.js +10 -10
- package/dest/fee/public_fee_payment_method.js +10 -10
- package/dest/fee/sponsored_fee_payment.js +3 -3
- package/dest/wallet/capabilities.d.ts +13 -5
- package/dest/wallet/capabilities.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.d.ts +15 -4
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.js +26 -0
- package/dest/wallet/wallet.d.ts +297 -89
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +35 -25
- package/package.json +20 -11
- package/src/api/contract.ts +2 -2
- package/src/api/deployment.ts +0 -1
- package/src/api/events.ts +35 -27
- package/src/api/fields.ts +1 -0
- package/src/api/wallet.ts +5 -1
- package/src/contract/batch_call.ts +7 -12
- package/src/contract/contract_function_interaction.ts +17 -7
- package/src/contract/deploy_method.ts +48 -14
- package/src/contract/get_gas_limits.ts +3 -3
- package/src/contract/interaction_options.ts +7 -0
- package/src/contract/protocol_contracts/auth-registry.ts +237 -37
- package/src/contract/protocol_contracts/contract-class-registry.ts +3 -145
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +3 -1
- package/src/contract/protocol_contracts/public-checks.ts +3 -1
- package/src/fee/fee_juice_payment_method_with_claim.ts +5 -5
- package/src/fee/private_fee_payment_method.ts +7 -7
- package/src/fee/public_fee_payment_method.ts +8 -8
- package/src/fee/sponsored_fee_payment.ts +3 -3
- package/src/wallet/capabilities.ts +13 -4
- package/src/wallet/deploy_account_method.ts +39 -2
- package/src/wallet/wallet.ts +88 -38
- package/dest/deployment/broadcast_function.d.ts +0 -24
- package/dest/deployment/broadcast_function.d.ts.map +0 -1
- package/dest/deployment/broadcast_function.js +0 -74
- package/src/deployment/broadcast_function.ts +0 -148
|
@@ -21,38 +21,33 @@ const AuthRegistryContractArtifact: ContractArtifact = {
|
|
|
21
21
|
functions: [
|
|
22
22
|
{
|
|
23
23
|
...{
|
|
24
|
-
functionType: FunctionType.
|
|
25
|
-
name: '
|
|
24
|
+
functionType: FunctionType.PRIVATE,
|
|
25
|
+
name: 'set_authorized_private',
|
|
26
26
|
isOnlySelf: false,
|
|
27
27
|
isStatic: false,
|
|
28
28
|
isInitializer: false,
|
|
29
|
-
parameters: [
|
|
29
|
+
parameters: [
|
|
30
|
+
{
|
|
31
|
+
name: 'approver',
|
|
32
|
+
type: {
|
|
33
|
+
kind: 'struct',
|
|
34
|
+
fields: [{ name: 'inner', type: { kind: 'field' } }],
|
|
35
|
+
path: 'aztec::protocol_types::address::aztec_address::AztecAddress',
|
|
36
|
+
},
|
|
37
|
+
visibility: 'private',
|
|
38
|
+
},
|
|
39
|
+
{ name: 'message_hash', type: { kind: 'field' }, visibility: 'private' },
|
|
40
|
+
{ name: 'authorize', type: { kind: 'boolean' }, visibility: 'private' },
|
|
41
|
+
],
|
|
30
42
|
returnTypes: [],
|
|
31
43
|
errorTypes: {
|
|
32
|
-
'
|
|
33
|
-
'
|
|
34
|
-
'
|
|
35
|
-
'
|
|
36
|
-
error_kind: 'string',
|
|
37
|
-
string: 'Function is_reject_all can only be called statically',
|
|
38
|
-
},
|
|
39
|
-
'12511970388699677811': { error_kind: 'fmtstring', length: 27, item_types: [{ kind: 'field' }] },
|
|
40
|
-
'13455385521185560676': {
|
|
41
|
-
error_kind: 'string',
|
|
42
|
-
string: 'Storage slot 0 not allowed. Storage slots must start from 1.',
|
|
43
|
-
},
|
|
44
|
-
'13929691561421487185': {
|
|
45
|
-
error_kind: 'string',
|
|
46
|
-
string: 'Function _set_authorized can only be called by the same contract',
|
|
47
|
-
},
|
|
44
|
+
'7555607922535724711': { error_kind: 'string', string: 'Preimage mismatch' },
|
|
45
|
+
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
46
|
+
'9894212961085021188': { error_kind: 'string', string: 'Message not authorized by account' },
|
|
47
|
+
'12327971061804302172': { error_kind: 'fmtstring', length: 98, item_types: [] },
|
|
48
48
|
'14990209321349310352': { error_kind: 'string', string: 'attempt to add with overflow' },
|
|
49
49
|
'15764276373176857197': { error_kind: 'string', string: 'Stack too deep' },
|
|
50
50
|
'16431471497789672479': { error_kind: 'string', string: 'Index out of bounds' },
|
|
51
|
-
'17089945683942782951': { error_kind: 'string', string: 'unauthorized' },
|
|
52
|
-
'17312933876399746100': {
|
|
53
|
-
error_kind: 'string',
|
|
54
|
-
string: 'Function is_consumable can only be called statically',
|
|
55
|
-
},
|
|
56
51
|
},
|
|
57
52
|
},
|
|
58
53
|
bytecode: Buffer.from([]),
|
|
@@ -60,14 +55,14 @@ const AuthRegistryContractArtifact: ContractArtifact = {
|
|
|
60
55
|
},
|
|
61
56
|
{
|
|
62
57
|
...{
|
|
63
|
-
functionType: FunctionType.
|
|
64
|
-
name: '
|
|
58
|
+
functionType: FunctionType.UTILITY,
|
|
59
|
+
name: 'utility_is_consumable',
|
|
65
60
|
isOnlySelf: false,
|
|
66
61
|
isStatic: false,
|
|
67
62
|
isInitializer: false,
|
|
68
63
|
parameters: [
|
|
69
64
|
{
|
|
70
|
-
name: '
|
|
65
|
+
name: 'on_behalf_of',
|
|
71
66
|
type: {
|
|
72
67
|
kind: 'struct',
|
|
73
68
|
fields: [{ name: 'inner', type: { kind: 'field' } }],
|
|
@@ -76,14 +71,18 @@ const AuthRegistryContractArtifact: ContractArtifact = {
|
|
|
76
71
|
visibility: 'private',
|
|
77
72
|
},
|
|
78
73
|
{ name: 'message_hash', type: { kind: 'field' }, visibility: 'private' },
|
|
79
|
-
{ name: 'authorize', type: { kind: 'boolean' }, visibility: 'private' },
|
|
80
74
|
],
|
|
81
|
-
returnTypes: [],
|
|
75
|
+
returnTypes: [{ kind: 'boolean' }],
|
|
82
76
|
errorTypes: {
|
|
83
|
-
'
|
|
84
|
-
'
|
|
77
|
+
'361444214588792908': { error_kind: 'string', string: 'attempt to multiply with overflow' },
|
|
78
|
+
'1998584279744703196': { error_kind: 'string', string: 'attempt to subtract with overflow' },
|
|
79
|
+
'13455385521185560676': {
|
|
80
|
+
error_kind: 'string',
|
|
81
|
+
string: 'Storage slot 0 not allowed. Storage slots must start from 1.',
|
|
82
|
+
},
|
|
85
83
|
'14990209321349310352': { error_kind: 'string', string: 'attempt to add with overflow' },
|
|
86
84
|
'15764276373176857197': { error_kind: 'string', string: 'Stack too deep' },
|
|
85
|
+
'16431471497789672479': { error_kind: 'string', string: 'Index out of bounds' },
|
|
87
86
|
},
|
|
88
87
|
},
|
|
89
88
|
bytecode: Buffer.from([]),
|
|
@@ -92,33 +91,219 @@ const AuthRegistryContractArtifact: ContractArtifact = {
|
|
|
92
91
|
{
|
|
93
92
|
...{
|
|
94
93
|
functionType: FunctionType.UTILITY,
|
|
95
|
-
name: '
|
|
94
|
+
name: 'process_message',
|
|
96
95
|
isOnlySelf: false,
|
|
97
96
|
isStatic: false,
|
|
98
97
|
isInitializer: false,
|
|
99
98
|
parameters: [
|
|
100
99
|
{
|
|
101
|
-
name: '
|
|
100
|
+
name: 'message_ciphertext',
|
|
102
101
|
type: {
|
|
103
102
|
kind: 'struct',
|
|
104
|
-
fields: [
|
|
105
|
-
|
|
103
|
+
fields: [
|
|
104
|
+
{ name: 'storage', type: { kind: 'array', length: 15, type: { kind: 'field' } } },
|
|
105
|
+
{ name: 'len', type: { kind: 'integer', sign: 'unsigned', width: 32 } },
|
|
106
|
+
],
|
|
107
|
+
path: 'std::collections::bounded_vec::BoundedVec',
|
|
108
|
+
},
|
|
109
|
+
visibility: 'private',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: 'message_context',
|
|
113
|
+
type: {
|
|
114
|
+
kind: 'struct',
|
|
115
|
+
fields: [
|
|
116
|
+
{ name: 'tx_hash', type: { kind: 'field' } },
|
|
117
|
+
{
|
|
118
|
+
name: 'unique_note_hashes_in_tx',
|
|
119
|
+
type: {
|
|
120
|
+
kind: 'struct',
|
|
121
|
+
fields: [
|
|
122
|
+
{ name: 'storage', type: { kind: 'array', length: 64, type: { kind: 'field' } } },
|
|
123
|
+
{ name: 'len', type: { kind: 'integer', sign: 'unsigned', width: 32 } },
|
|
124
|
+
],
|
|
125
|
+
path: 'std::collections::bounded_vec::BoundedVec',
|
|
126
|
+
},
|
|
127
|
+
},
|
|
128
|
+
{ name: 'first_nullifier_in_tx', type: { kind: 'field' } },
|
|
129
|
+
{
|
|
130
|
+
name: 'recipient',
|
|
131
|
+
type: {
|
|
132
|
+
kind: 'struct',
|
|
133
|
+
fields: [{ name: 'inner', type: { kind: 'field' } }],
|
|
134
|
+
path: 'aztec::protocol_types::address::aztec_address::AztecAddress',
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
path: 'aztec::messages::processing::message_context::MessageContext',
|
|
106
139
|
},
|
|
107
140
|
visibility: 'private',
|
|
108
141
|
},
|
|
109
|
-
{ name: 'message_hash', type: { kind: 'field' }, visibility: 'private' },
|
|
110
142
|
],
|
|
111
|
-
returnTypes: [
|
|
143
|
+
returnTypes: [],
|
|
144
|
+
errorTypes: {
|
|
145
|
+
'361444214588792908': { error_kind: 'string', string: 'attempt to multiply with overflow' },
|
|
146
|
+
'992401946138144806': { error_kind: 'string', string: 'Attempted to read past end of BoundedVec' },
|
|
147
|
+
'1998584279744703196': { error_kind: 'string', string: 'attempt to subtract with overflow' },
|
|
148
|
+
'2967937905572420042': {
|
|
149
|
+
error_kind: 'fmtstring',
|
|
150
|
+
length: 61,
|
|
151
|
+
item_types: [{ kind: 'field' }, { kind: 'field' }],
|
|
152
|
+
},
|
|
153
|
+
'3330370348214585450': {
|
|
154
|
+
error_kind: 'fmtstring',
|
|
155
|
+
length: 48,
|
|
156
|
+
item_types: [{ kind: 'field' }, { kind: 'field' }],
|
|
157
|
+
},
|
|
158
|
+
'3670003311596808700': {
|
|
159
|
+
error_kind: 'fmtstring',
|
|
160
|
+
length: 77,
|
|
161
|
+
item_types: [{ kind: 'integer', sign: 'unsigned', width: 32 }],
|
|
162
|
+
},
|
|
163
|
+
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
164
|
+
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
165
|
+
'5417577161503694006': { error_kind: 'fmtstring', length: 56, item_types: [{ kind: 'field' }] },
|
|
166
|
+
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
167
|
+
'9791669845391776238': {
|
|
168
|
+
error_kind: 'string',
|
|
169
|
+
string: '0 has a square root; you cannot claim it is not square',
|
|
170
|
+
},
|
|
171
|
+
'10135509984888824963': { error_kind: 'fmtstring', length: 58, item_types: [{ kind: 'field' }] },
|
|
172
|
+
'10791800398362570014': { error_kind: 'string', string: 'extend_from_bounded_vec out of bounds' },
|
|
173
|
+
'11692359521570349358': { error_kind: 'fmtstring', length: 40, item_types: [] },
|
|
174
|
+
'12469291177396340830': { error_kind: 'string', string: 'call to assert_max_bit_size' },
|
|
175
|
+
'12913276134398371456': { error_kind: 'string', string: 'push out of bounds' },
|
|
176
|
+
'13557316507370296400': {
|
|
177
|
+
error_kind: 'fmtstring',
|
|
178
|
+
length: 130,
|
|
179
|
+
item_types: [{ kind: 'integer', sign: 'unsigned', width: 32 }],
|
|
180
|
+
},
|
|
181
|
+
'14938672389828944159': {
|
|
182
|
+
error_kind: 'fmtstring',
|
|
183
|
+
length: 146,
|
|
184
|
+
item_types: [{ kind: 'integer', sign: 'unsigned', width: 32 }],
|
|
185
|
+
},
|
|
186
|
+
'14990209321349310352': { error_kind: 'string', string: 'attempt to add with overflow' },
|
|
187
|
+
'15764276373176857197': { error_kind: 'string', string: 'Stack too deep' },
|
|
188
|
+
'16431471497789672479': { error_kind: 'string', string: 'Index out of bounds' },
|
|
189
|
+
'17531474008201752295': {
|
|
190
|
+
error_kind: 'fmtstring',
|
|
191
|
+
length: 133,
|
|
192
|
+
item_types: [{ kind: 'integer', sign: 'unsigned', width: 32 }],
|
|
193
|
+
},
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
bytecode: Buffer.from([]),
|
|
197
|
+
debugSymbols: '',
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
...{
|
|
201
|
+
functionType: FunctionType.PUBLIC,
|
|
202
|
+
name: 'public_dispatch',
|
|
203
|
+
isOnlySelf: false,
|
|
204
|
+
isStatic: false,
|
|
205
|
+
isInitializer: false,
|
|
206
|
+
parameters: [{ name: 'selector', type: { kind: 'field' }, visibility: 'private' }],
|
|
207
|
+
returnTypes: [],
|
|
112
208
|
errorTypes: {
|
|
113
209
|
'361444214588792908': { error_kind: 'string', string: 'attempt to multiply with overflow' },
|
|
114
210
|
'1998584279744703196': { error_kind: 'string', string: 'attempt to subtract with overflow' },
|
|
211
|
+
'5525725861591553972': { error_kind: 'string', string: 'rejecting all' },
|
|
212
|
+
'11691217184967371519': {
|
|
213
|
+
error_kind: 'string',
|
|
214
|
+
string: 'Function is_reject_all can only be called statically',
|
|
215
|
+
},
|
|
216
|
+
'12511970388699677811': { error_kind: 'fmtstring', length: 27, item_types: [{ kind: 'field' }] },
|
|
115
217
|
'13455385521185560676': {
|
|
116
218
|
error_kind: 'string',
|
|
117
219
|
string: 'Storage slot 0 not allowed. Storage slots must start from 1.',
|
|
118
220
|
},
|
|
221
|
+
'13929691561421487185': {
|
|
222
|
+
error_kind: 'string',
|
|
223
|
+
string: 'Function _set_authorized can only be called by the same contract',
|
|
224
|
+
},
|
|
119
225
|
'14990209321349310352': { error_kind: 'string', string: 'attempt to add with overflow' },
|
|
120
226
|
'15764276373176857197': { error_kind: 'string', string: 'Stack too deep' },
|
|
121
227
|
'16431471497789672479': { error_kind: 'string', string: 'Index out of bounds' },
|
|
228
|
+
'17089945683942782951': { error_kind: 'string', string: 'unauthorized' },
|
|
229
|
+
'17312933876399746100': {
|
|
230
|
+
error_kind: 'string',
|
|
231
|
+
string: 'Function is_consumable can only be called statically',
|
|
232
|
+
},
|
|
233
|
+
},
|
|
234
|
+
},
|
|
235
|
+
bytecode: Buffer.from([]),
|
|
236
|
+
debugSymbols: '',
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
...{
|
|
240
|
+
functionType: FunctionType.UTILITY,
|
|
241
|
+
name: 'sync_state',
|
|
242
|
+
isOnlySelf: false,
|
|
243
|
+
isStatic: false,
|
|
244
|
+
isInitializer: false,
|
|
245
|
+
parameters: [],
|
|
246
|
+
returnTypes: [],
|
|
247
|
+
errorTypes: {
|
|
248
|
+
'361444214588792908': { error_kind: 'string', string: 'attempt to multiply with overflow' },
|
|
249
|
+
'992401946138144806': { error_kind: 'string', string: 'Attempted to read past end of BoundedVec' },
|
|
250
|
+
'1998584279744703196': { error_kind: 'string', string: 'attempt to subtract with overflow' },
|
|
251
|
+
'2967937905572420042': {
|
|
252
|
+
error_kind: 'fmtstring',
|
|
253
|
+
length: 61,
|
|
254
|
+
item_types: [{ kind: 'field' }, { kind: 'field' }],
|
|
255
|
+
},
|
|
256
|
+
'3330370348214585450': {
|
|
257
|
+
error_kind: 'fmtstring',
|
|
258
|
+
length: 48,
|
|
259
|
+
item_types: [{ kind: 'field' }, { kind: 'field' }],
|
|
260
|
+
},
|
|
261
|
+
'3670003311596808700': {
|
|
262
|
+
error_kind: 'fmtstring',
|
|
263
|
+
length: 77,
|
|
264
|
+
item_types: [{ kind: 'integer', sign: 'unsigned', width: 32 }],
|
|
265
|
+
},
|
|
266
|
+
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
267
|
+
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
268
|
+
'5417577161503694006': { error_kind: 'fmtstring', length: 56, item_types: [{ kind: 'field' }] },
|
|
269
|
+
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
270
|
+
'9791669845391776238': {
|
|
271
|
+
error_kind: 'string',
|
|
272
|
+
string: '0 has a square root; you cannot claim it is not square',
|
|
273
|
+
},
|
|
274
|
+
'9885968605480832328': {
|
|
275
|
+
error_kind: 'string',
|
|
276
|
+
string: 'Attempted to read past the length of a CapsuleArray',
|
|
277
|
+
},
|
|
278
|
+
'10135509984888824963': { error_kind: 'fmtstring', length: 58, item_types: [{ kind: 'field' }] },
|
|
279
|
+
'10791800398362570014': { error_kind: 'string', string: 'extend_from_bounded_vec out of bounds' },
|
|
280
|
+
'11021520179822076911': {
|
|
281
|
+
error_kind: 'string',
|
|
282
|
+
string: 'Attempted to delete past the length of a CapsuleArray',
|
|
283
|
+
},
|
|
284
|
+
'11692359521570349358': { error_kind: 'fmtstring', length: 40, item_types: [] },
|
|
285
|
+
'12327971061804302172': { error_kind: 'fmtstring', length: 98, item_types: [] },
|
|
286
|
+
'12469291177396340830': { error_kind: 'string', string: 'call to assert_max_bit_size' },
|
|
287
|
+
'12913276134398371456': { error_kind: 'string', string: 'push out of bounds' },
|
|
288
|
+
'13557316507370296400': {
|
|
289
|
+
error_kind: 'fmtstring',
|
|
290
|
+
length: 130,
|
|
291
|
+
item_types: [{ kind: 'integer', sign: 'unsigned', width: 32 }],
|
|
292
|
+
},
|
|
293
|
+
'14938672389828944159': {
|
|
294
|
+
error_kind: 'fmtstring',
|
|
295
|
+
length: 146,
|
|
296
|
+
item_types: [{ kind: 'integer', sign: 'unsigned', width: 32 }],
|
|
297
|
+
},
|
|
298
|
+
'14990209321349310352': { error_kind: 'string', string: 'attempt to add with overflow' },
|
|
299
|
+
'15764276373176857197': { error_kind: 'string', string: 'Stack too deep' },
|
|
300
|
+
'16431471497789672479': { error_kind: 'string', string: 'Index out of bounds' },
|
|
301
|
+
'17531474008201752295': {
|
|
302
|
+
error_kind: 'fmtstring',
|
|
303
|
+
length: 133,
|
|
304
|
+
item_types: [{ kind: 'integer', sign: 'unsigned', width: 32 }],
|
|
305
|
+
},
|
|
306
|
+
'17655676068928457687': { error_kind: 'string', string: 'Reader did not read all data' },
|
|
122
307
|
},
|
|
123
308
|
},
|
|
124
309
|
bytecode: Buffer.from([]),
|
|
@@ -326,6 +511,18 @@ export class AuthRegistryContract extends ContractBase {
|
|
|
326
511
|
/** is_reject_all(on_behalf_of: struct) */
|
|
327
512
|
is_reject_all: ((on_behalf_of: AztecAddressLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
328
513
|
|
|
514
|
+
/** process_message(message_ciphertext: struct, message_context: struct) */
|
|
515
|
+
process_message: ((
|
|
516
|
+
message_ciphertext: FieldLike[],
|
|
517
|
+
message_context: {
|
|
518
|
+
tx_hash: FieldLike;
|
|
519
|
+
unique_note_hashes_in_tx: FieldLike[];
|
|
520
|
+
first_nullifier_in_tx: FieldLike;
|
|
521
|
+
recipient: AztecAddressLike;
|
|
522
|
+
},
|
|
523
|
+
) => ContractFunctionInteraction) &
|
|
524
|
+
Pick<ContractMethod, 'selector'>;
|
|
525
|
+
|
|
329
526
|
/** public_dispatch(selector: field) */
|
|
330
527
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
331
528
|
|
|
@@ -344,6 +541,9 @@ export class AuthRegistryContract extends ContractBase {
|
|
|
344
541
|
/** set_reject_all(reject: boolean) */
|
|
345
542
|
set_reject_all: ((reject: boolean) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
346
543
|
|
|
544
|
+
/** sync_state() */
|
|
545
|
+
sync_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
546
|
+
|
|
347
547
|
/** utility_is_consumable(on_behalf_of: struct, message_hash: field) */
|
|
348
548
|
utility_is_consumable: ((on_behalf_of: AztecAddressLike, message_hash: FieldLike) => ContractFunctionInteraction) &
|
|
349
549
|
Pick<ContractMethod, 'selector'>;
|
|
@@ -19,127 +19,6 @@ import { ContractFunctionInteraction } from '../contract_function_interaction.js
|
|
|
19
19
|
const ContractClassRegistryContractArtifact: ContractArtifact = {
|
|
20
20
|
name: 'ContractClassRegistry',
|
|
21
21
|
functions: [
|
|
22
|
-
{
|
|
23
|
-
...{
|
|
24
|
-
functionType: FunctionType.PRIVATE,
|
|
25
|
-
name: 'broadcast_private_function',
|
|
26
|
-
isOnlySelf: false,
|
|
27
|
-
isStatic: false,
|
|
28
|
-
isInitializer: false,
|
|
29
|
-
parameters: [
|
|
30
|
-
{
|
|
31
|
-
name: 'contract_class_id',
|
|
32
|
-
type: {
|
|
33
|
-
kind: 'struct',
|
|
34
|
-
fields: [{ name: 'inner', type: { kind: 'field' } }],
|
|
35
|
-
path: 'aztec::protocol_types::contract_class_id::ContractClassId',
|
|
36
|
-
},
|
|
37
|
-
visibility: 'private',
|
|
38
|
-
},
|
|
39
|
-
{ name: 'artifact_metadata_hash', type: { kind: 'field' }, visibility: 'private' },
|
|
40
|
-
{ name: 'utility_functions_artifact_tree_root', type: { kind: 'field' }, visibility: 'private' },
|
|
41
|
-
{
|
|
42
|
-
name: 'private_function_tree_sibling_path',
|
|
43
|
-
type: { kind: 'array', length: 7, type: { kind: 'field' } },
|
|
44
|
-
visibility: 'private',
|
|
45
|
-
},
|
|
46
|
-
{ name: 'private_function_tree_leaf_index', type: { kind: 'field' }, visibility: 'private' },
|
|
47
|
-
{
|
|
48
|
-
name: 'artifact_function_tree_sibling_path',
|
|
49
|
-
type: { kind: 'array', length: 7, type: { kind: 'field' } },
|
|
50
|
-
visibility: 'private',
|
|
51
|
-
},
|
|
52
|
-
{ name: 'artifact_function_tree_leaf_index', type: { kind: 'field' }, visibility: 'private' },
|
|
53
|
-
{
|
|
54
|
-
name: 'function_data',
|
|
55
|
-
type: {
|
|
56
|
-
kind: 'struct',
|
|
57
|
-
fields: [
|
|
58
|
-
{
|
|
59
|
-
name: 'selector',
|
|
60
|
-
type: {
|
|
61
|
-
kind: 'struct',
|
|
62
|
-
fields: [{ name: 'inner', type: { kind: 'integer', sign: 'unsigned', width: 32 } }],
|
|
63
|
-
path: 'aztec::protocol_types::abis::function_selector::FunctionSelector',
|
|
64
|
-
},
|
|
65
|
-
},
|
|
66
|
-
{ name: 'metadata_hash', type: { kind: 'field' } },
|
|
67
|
-
{ name: 'vk_hash', type: { kind: 'field' } },
|
|
68
|
-
],
|
|
69
|
-
path: 'events::private_function_broadcasted::InnerPrivateFunction',
|
|
70
|
-
},
|
|
71
|
-
visibility: 'private',
|
|
72
|
-
},
|
|
73
|
-
],
|
|
74
|
-
returnTypes: [],
|
|
75
|
-
errorTypes: {
|
|
76
|
-
'1998584279744703196': { error_kind: 'string', string: 'attempt to subtract with overflow' },
|
|
77
|
-
'14990209321349310352': { error_kind: 'string', string: 'attempt to add with overflow' },
|
|
78
|
-
'15764276373176857197': { error_kind: 'string', string: 'Stack too deep' },
|
|
79
|
-
'16431471497789672479': { error_kind: 'string', string: 'Index out of bounds' },
|
|
80
|
-
'17655676068928457687': { error_kind: 'string', string: 'Reader did not read all data' },
|
|
81
|
-
},
|
|
82
|
-
},
|
|
83
|
-
bytecode: Buffer.from([]),
|
|
84
|
-
debugSymbols: '',
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
...{
|
|
88
|
-
functionType: FunctionType.PRIVATE,
|
|
89
|
-
name: 'broadcast_utility_function',
|
|
90
|
-
isOnlySelf: false,
|
|
91
|
-
isStatic: false,
|
|
92
|
-
isInitializer: false,
|
|
93
|
-
parameters: [
|
|
94
|
-
{
|
|
95
|
-
name: 'contract_class_id',
|
|
96
|
-
type: {
|
|
97
|
-
kind: 'struct',
|
|
98
|
-
fields: [{ name: 'inner', type: { kind: 'field' } }],
|
|
99
|
-
path: 'aztec::protocol_types::contract_class_id::ContractClassId',
|
|
100
|
-
},
|
|
101
|
-
visibility: 'private',
|
|
102
|
-
},
|
|
103
|
-
{ name: 'artifact_metadata_hash', type: { kind: 'field' }, visibility: 'private' },
|
|
104
|
-
{ name: 'private_functions_artifact_tree_root', type: { kind: 'field' }, visibility: 'private' },
|
|
105
|
-
{
|
|
106
|
-
name: 'artifact_function_tree_sibling_path',
|
|
107
|
-
type: { kind: 'array', length: 7, type: { kind: 'field' } },
|
|
108
|
-
visibility: 'private',
|
|
109
|
-
},
|
|
110
|
-
{ name: 'artifact_function_tree_leaf_index', type: { kind: 'field' }, visibility: 'private' },
|
|
111
|
-
{
|
|
112
|
-
name: 'function_data',
|
|
113
|
-
type: {
|
|
114
|
-
kind: 'struct',
|
|
115
|
-
fields: [
|
|
116
|
-
{
|
|
117
|
-
name: 'selector',
|
|
118
|
-
type: {
|
|
119
|
-
kind: 'struct',
|
|
120
|
-
fields: [{ name: 'inner', type: { kind: 'integer', sign: 'unsigned', width: 32 } }],
|
|
121
|
-
path: 'aztec::protocol_types::abis::function_selector::FunctionSelector',
|
|
122
|
-
},
|
|
123
|
-
},
|
|
124
|
-
{ name: 'metadata_hash', type: { kind: 'field' } },
|
|
125
|
-
],
|
|
126
|
-
path: 'events::utility_function_broadcasted::InnerUtilityFunction',
|
|
127
|
-
},
|
|
128
|
-
visibility: 'private',
|
|
129
|
-
},
|
|
130
|
-
],
|
|
131
|
-
returnTypes: [],
|
|
132
|
-
errorTypes: {
|
|
133
|
-
'1998584279744703196': { error_kind: 'string', string: 'attempt to subtract with overflow' },
|
|
134
|
-
'14990209321349310352': { error_kind: 'string', string: 'attempt to add with overflow' },
|
|
135
|
-
'15764276373176857197': { error_kind: 'string', string: 'Stack too deep' },
|
|
136
|
-
'16431471497789672479': { error_kind: 'string', string: 'Index out of bounds' },
|
|
137
|
-
'17655676068928457687': { error_kind: 'string', string: 'Reader did not read all data' },
|
|
138
|
-
},
|
|
139
|
-
},
|
|
140
|
-
bytecode: Buffer.from([]),
|
|
141
|
-
debugSymbols: '',
|
|
142
|
-
},
|
|
143
22
|
{
|
|
144
23
|
...{
|
|
145
24
|
functionType: FunctionType.PRIVATE,
|
|
@@ -157,13 +36,16 @@ const ContractClassRegistryContractArtifact: ContractArtifact = {
|
|
|
157
36
|
'361444214588792908': { error_kind: 'string', string: 'attempt to multiply with overflow' },
|
|
158
37
|
'922421554006670918': { error_kind: 'string', string: 'num_items is greater than MAX_ITEMS' },
|
|
159
38
|
'1998584279744703196': { error_kind: 'string', string: 'attempt to subtract with overflow' },
|
|
39
|
+
'9475115977882098926': { error_kind: 'string', string: 'Extra bytes in the last field of the bytecode' },
|
|
160
40
|
'10965409165809799877': {
|
|
161
41
|
error_kind: 'string',
|
|
162
42
|
string: 'Given in_len to absorb is larger than the input array len',
|
|
163
43
|
},
|
|
44
|
+
'12469291177396340830': { error_kind: 'string', string: 'call to assert_max_bit_size' },
|
|
164
45
|
'14990209321349310352': { error_kind: 'string', string: 'attempt to add with overflow' },
|
|
165
46
|
'15669273164684982983': { error_kind: 'string', string: 'num_permutations is greater than MAX_PERMUTATIONS' },
|
|
166
47
|
'15764276373176857197': { error_kind: 'string', string: 'Stack too deep' },
|
|
48
|
+
'15835548349546956319': { error_kind: 'string', string: 'Field failed to decompose into specified 32 limbs' },
|
|
167
49
|
'16431471497789672479': { error_kind: 'string', string: 'Index out of bounds' },
|
|
168
50
|
'16450579948625159707': { error_kind: 'string', string: 'Sponge must be in cache_size=1' },
|
|
169
51
|
'17655676068928457687': { error_kind: 'string', string: 'Reader did not read all data' },
|
|
@@ -203,30 +85,6 @@ export class ContractClassRegistryContract extends ContractBase {
|
|
|
203
85
|
}
|
|
204
86
|
|
|
205
87
|
declare public methods: {
|
|
206
|
-
/** broadcast_private_function(contract_class_id: struct, artifact_metadata_hash: field, utility_functions_artifact_tree_root: field, private_function_tree_sibling_path: array, private_function_tree_leaf_index: field, artifact_function_tree_sibling_path: array, artifact_function_tree_leaf_index: field, function_data: struct) */
|
|
207
|
-
broadcast_private_function: ((
|
|
208
|
-
contract_class_id: WrappedFieldLike,
|
|
209
|
-
artifact_metadata_hash: FieldLike,
|
|
210
|
-
utility_functions_artifact_tree_root: FieldLike,
|
|
211
|
-
private_function_tree_sibling_path: FieldLike[],
|
|
212
|
-
private_function_tree_leaf_index: FieldLike,
|
|
213
|
-
artifact_function_tree_sibling_path: FieldLike[],
|
|
214
|
-
artifact_function_tree_leaf_index: FieldLike,
|
|
215
|
-
function_data: { selector: FunctionSelectorLike; metadata_hash: FieldLike; vk_hash: FieldLike },
|
|
216
|
-
) => ContractFunctionInteraction) &
|
|
217
|
-
Pick<ContractMethod, 'selector'>;
|
|
218
|
-
|
|
219
|
-
/** broadcast_utility_function(contract_class_id: struct, artifact_metadata_hash: field, private_functions_artifact_tree_root: field, artifact_function_tree_sibling_path: array, artifact_function_tree_leaf_index: field, function_data: struct) */
|
|
220
|
-
broadcast_utility_function: ((
|
|
221
|
-
contract_class_id: WrappedFieldLike,
|
|
222
|
-
artifact_metadata_hash: FieldLike,
|
|
223
|
-
private_functions_artifact_tree_root: FieldLike,
|
|
224
|
-
artifact_function_tree_sibling_path: FieldLike[],
|
|
225
|
-
artifact_function_tree_leaf_index: FieldLike,
|
|
226
|
-
function_data: { selector: FunctionSelectorLike; metadata_hash: FieldLike },
|
|
227
|
-
) => ContractFunctionInteraction) &
|
|
228
|
-
Pick<ContractMethod, 'selector'>;
|
|
229
|
-
|
|
230
88
|
/** public_dispatch(selector: field) */
|
|
231
89
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
232
90
|
|
|
@@ -99,7 +99,7 @@ const MultiCallEntrypointContractArtifact: ContractArtifact = {
|
|
|
99
99
|
type: {
|
|
100
100
|
kind: 'struct',
|
|
101
101
|
fields: [
|
|
102
|
-
{ name: 'storage', type: { kind: 'array', length:
|
|
102
|
+
{ name: 'storage', type: { kind: 'array', length: 15, type: { kind: 'field' } } },
|
|
103
103
|
{ name: 'len', type: { kind: 'integer', sign: 'unsigned', width: 32 } },
|
|
104
104
|
],
|
|
105
105
|
path: 'std::collections::bounded_vec::BoundedVec',
|
|
@@ -160,6 +160,7 @@ const MultiCallEntrypointContractArtifact: ContractArtifact = {
|
|
|
160
160
|
},
|
|
161
161
|
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
162
162
|
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
163
|
+
'5417577161503694006': { error_kind: 'fmtstring', length: 56, item_types: [{ kind: 'field' }] },
|
|
163
164
|
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
164
165
|
'9791669845391776238': {
|
|
165
166
|
error_kind: 'string',
|
|
@@ -223,6 +224,7 @@ const MultiCallEntrypointContractArtifact: ContractArtifact = {
|
|
|
223
224
|
},
|
|
224
225
|
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
225
226
|
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
227
|
+
'5417577161503694006': { error_kind: 'fmtstring', length: 56, item_types: [{ kind: 'field' }] },
|
|
226
228
|
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
227
229
|
'9791669845391776238': {
|
|
228
230
|
error_kind: 'string',
|
|
@@ -32,7 +32,7 @@ const PublicChecksContractArtifact: ContractArtifact = {
|
|
|
32
32
|
type: {
|
|
33
33
|
kind: 'struct',
|
|
34
34
|
fields: [
|
|
35
|
-
{ name: 'storage', type: { kind: 'array', length:
|
|
35
|
+
{ name: 'storage', type: { kind: 'array', length: 15, type: { kind: 'field' } } },
|
|
36
36
|
{ name: 'len', type: { kind: 'integer', sign: 'unsigned', width: 32 } },
|
|
37
37
|
],
|
|
38
38
|
path: 'std::collections::bounded_vec::BoundedVec',
|
|
@@ -93,6 +93,7 @@ const PublicChecksContractArtifact: ContractArtifact = {
|
|
|
93
93
|
},
|
|
94
94
|
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
95
95
|
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
96
|
+
'5417577161503694006': { error_kind: 'fmtstring', length: 56, item_types: [{ kind: 'field' }] },
|
|
96
97
|
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
97
98
|
'9791669845391776238': {
|
|
98
99
|
error_kind: 'string',
|
|
@@ -184,6 +185,7 @@ const PublicChecksContractArtifact: ContractArtifact = {
|
|
|
184
185
|
},
|
|
185
186
|
'4261968856572588300': { error_kind: 'string', string: 'Value does not fit in field' },
|
|
186
187
|
'4440399188109668273': { error_kind: 'string', string: 'Input length must be a multiple of 32' },
|
|
188
|
+
'5417577161503694006': { error_kind: 'fmtstring', length: 56, item_types: [{ kind: 'field' }] },
|
|
187
189
|
'9530675838293881722': { error_kind: 'string', string: 'Writer did not write all data' },
|
|
188
190
|
'9791669845391776238': {
|
|
189
191
|
error_kind: 'string',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
2
2
|
import { ProtocolContractAddress } from '@aztec/protocol-contracts';
|
|
3
|
-
import { FunctionSelector, FunctionType } from '@aztec/stdlib/abi';
|
|
3
|
+
import { FunctionCall, FunctionSelector, FunctionType } from '@aztec/stdlib/abi';
|
|
4
4
|
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
5
5
|
import type { GasSettings } from '@aztec/stdlib/gas';
|
|
6
6
|
import { ExecutionPayload } from '@aztec/stdlib/tx';
|
|
@@ -27,10 +27,11 @@ export class FeeJuicePaymentMethodWithClaim implements FeePaymentMethod {
|
|
|
27
27
|
|
|
28
28
|
return new ExecutionPayload(
|
|
29
29
|
[
|
|
30
|
-
{
|
|
31
|
-
to: ProtocolContractAddress.FeeJuice,
|
|
30
|
+
FunctionCall.from({
|
|
32
31
|
name: 'claim_and_end_setup',
|
|
32
|
+
to: ProtocolContractAddress.FeeJuice,
|
|
33
33
|
selector,
|
|
34
|
+
type: FunctionType.PRIVATE,
|
|
34
35
|
hideMsgSender: false,
|
|
35
36
|
isStatic: false,
|
|
36
37
|
args: [
|
|
@@ -40,8 +41,7 @@ export class FeeJuicePaymentMethodWithClaim implements FeePaymentMethod {
|
|
|
40
41
|
new Fr(this.claim.messageLeafIndex),
|
|
41
42
|
],
|
|
42
43
|
returnTypes: [],
|
|
43
|
-
|
|
44
|
-
},
|
|
44
|
+
}),
|
|
45
45
|
],
|
|
46
46
|
[],
|
|
47
47
|
[],
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
2
|
-
import { type FunctionAbi, FunctionSelector, FunctionType, decodeFromAbi } from '@aztec/stdlib/abi';
|
|
2
|
+
import { type FunctionAbi, FunctionCall, FunctionSelector, FunctionType, decodeFromAbi } from '@aztec/stdlib/abi';
|
|
3
3
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
4
4
|
import type { GasSettings } from '@aztec/stdlib/gas';
|
|
5
5
|
import { ExecutionPayload } from '@aztec/stdlib/tx';
|
|
@@ -102,21 +102,21 @@ export class PrivateFeePaymentMethod implements FeePaymentMethod {
|
|
|
102
102
|
|
|
103
103
|
const witness = await this.wallet.createAuthWit(this.sender, {
|
|
104
104
|
caller: this.paymentContract,
|
|
105
|
-
call: {
|
|
105
|
+
call: FunctionCall.from({
|
|
106
106
|
name: 'transfer_to_public',
|
|
107
|
-
|
|
107
|
+
to: await this.getAsset(),
|
|
108
108
|
selector: await FunctionSelector.fromSignature('transfer_to_public((Field),(Field),u128,Field)'),
|
|
109
109
|
type: FunctionType.PRIVATE,
|
|
110
110
|
hideMsgSender: false,
|
|
111
111
|
isStatic: false,
|
|
112
|
-
|
|
112
|
+
args: [this.sender.toField(), this.paymentContract.toField(), maxFee, txNonce],
|
|
113
113
|
returnTypes: [],
|
|
114
|
-
},
|
|
114
|
+
}),
|
|
115
115
|
});
|
|
116
116
|
|
|
117
117
|
return new ExecutionPayload(
|
|
118
118
|
[
|
|
119
|
-
{
|
|
119
|
+
FunctionCall.from({
|
|
120
120
|
name: 'fee_entrypoint_private',
|
|
121
121
|
to: this.paymentContract,
|
|
122
122
|
selector: await FunctionSelector.fromSignature('fee_entrypoint_private(u128,Field)'),
|
|
@@ -125,7 +125,7 @@ export class PrivateFeePaymentMethod implements FeePaymentMethod {
|
|
|
125
125
|
isStatic: false,
|
|
126
126
|
args: [maxFee, txNonce],
|
|
127
127
|
returnTypes: [],
|
|
128
|
-
},
|
|
128
|
+
}),
|
|
129
129
|
],
|
|
130
130
|
[witness],
|
|
131
131
|
[],
|