@aztec/aztec.js 0.0.1-commit.d431d1c → 0.0.1-commit.db765a8
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/abi.d.ts +2 -2
- package/dest/api/abi.d.ts.map +1 -1
- package/dest/api/block.d.ts +2 -2
- package/dest/api/block.d.ts.map +1 -1
- package/dest/api/block.js +1 -1
- package/dest/api/contract.d.ts +18 -12
- package/dest/api/contract.d.ts.map +1 -1
- package/dest/api/contract.js +16 -10
- 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/keys.d.ts +1 -1
- package/dest/api/keys.js +1 -1
- package/dest/api/node.d.ts +8 -4
- package/dest/api/node.d.ts.map +1 -1
- package/dest/api/node.js +7 -3
- package/dest/api/tx.d.ts +2 -2
- package/dest/api/tx.d.ts.map +1 -1
- package/dest/api/tx.js +1 -1
- package/dest/api/wallet.d.ts +3 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +2 -1
- package/dest/contract/base_contract_interaction.d.ts +8 -10
- package/dest/contract/base_contract_interaction.d.ts.map +1 -1
- package/dest/contract/base_contract_interaction.js +5 -17
- package/dest/contract/batch_call.d.ts +3 -3
- package/dest/contract/batch_call.d.ts.map +1 -1
- package/dest/contract/batch_call.js +17 -8
- package/dest/contract/contract_function_interaction.d.ts +7 -16
- package/dest/contract/contract_function_interaction.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.js +107 -18
- package/dest/contract/deploy_method.d.ts +91 -19
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +68 -30
- package/dest/contract/get_gas_limits.js +3 -3
- package/dest/contract/interaction_options.d.ts +99 -21
- package/dest/contract/interaction_options.d.ts.map +1 -1
- package/dest/contract/interaction_options.js +41 -1
- package/dest/contract/protocol_contracts/auth-registry.d.ts +3 -3
- package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/auth-registry.js +49 -20
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts +2 -22
- package/dest/contract/protocol_contracts/contract-class-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-class-registry.js +13 -671
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts +2 -11
- package/dest/contract/protocol_contracts/contract-instance-registry.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/contract-instance-registry.js +80 -486
- package/dest/contract/protocol_contracts/fee-juice.d.ts +1 -10
- package/dest/contract/protocol_contracts/fee-juice.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/fee-juice.js +7 -413
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +3 -3
- package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/multi-call-entrypoint.js +40 -15
- package/dest/contract/protocol_contracts/public-checks.d.ts +3 -3
- package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
- package/dest/contract/protocol_contracts/public-checks.js +40 -23
- package/dest/contract/wait_for_proven.js +1 -1
- package/dest/contract/wait_opts.d.ts +16 -0
- package/dest/contract/wait_opts.d.ts.map +1 -0
- package/dest/contract/wait_opts.js +5 -0
- package/dest/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/utils/abi_types.d.ts +6 -1
- package/dest/utils/abi_types.d.ts.map +1 -1
- package/dest/utils/abi_types.js +1 -1
- package/dest/utils/authwit.d.ts +6 -6
- package/dest/utils/authwit.d.ts.map +1 -1
- package/dest/utils/authwit.js +12 -12
- package/dest/utils/node.d.ts +12 -1
- package/dest/utils/node.d.ts.map +1 -1
- package/dest/utils/node.js +46 -0
- package/dest/wallet/capabilities.d.ts +452 -0
- package/dest/wallet/capabilities.d.ts.map +1 -0
- package/dest/wallet/capabilities.js +3 -0
- package/dest/wallet/deploy_account_method.d.ts +31 -6
- package/dest/wallet/deploy_account_method.d.ts.map +1 -1
- package/dest/wallet/deploy_account_method.js +26 -0
- package/dest/wallet/index.d.ts +2 -1
- package/dest/wallet/index.d.ts.map +1 -1
- package/dest/wallet/index.js +1 -0
- package/dest/wallet/wallet.d.ts +1639 -93
- package/dest/wallet/wallet.d.ts.map +1 -1
- package/dest/wallet/wallet.js +186 -27
- package/package.json +20 -11
- package/src/api/abi.ts +1 -0
- package/src/api/block.ts +1 -1
- package/src/api/contract.ts +31 -9
- package/src/api/deployment.ts +0 -1
- package/src/api/events.ts +35 -27
- package/src/api/fields.ts +1 -0
- package/src/api/keys.ts +2 -2
- package/src/api/node.ts +7 -3
- package/src/api/tx.ts +2 -0
- package/src/api/wallet.ts +48 -1
- package/src/contract/base_contract_interaction.ts +28 -15
- package/src/contract/batch_call.ts +17 -14
- package/src/contract/contract_function_interaction.ts +114 -26
- package/src/contract/deploy_method.ts +172 -35
- package/src/contract/get_gas_limits.ts +3 -3
- package/src/contract/interaction_options.ts +141 -23
- package/src/contract/protocol_contracts/auth-registry.ts +13 -14
- package/src/contract/protocol_contracts/contract-class-registry.ts +4 -347
- package/src/contract/protocol_contracts/contract-instance-registry.ts +34 -234
- package/src/contract/protocol_contracts/fee-juice.ts +2 -202
- package/src/contract/protocol_contracts/multi-call-entrypoint.ts +11 -13
- package/src/contract/protocol_contracts/public-checks.ts +11 -15
- package/src/contract/wait_for_proven.ts +1 -1
- package/src/contract/wait_opts.ts +21 -0
- 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/utils/abi_types.ts +7 -0
- package/src/utils/authwit.ts +31 -21
- package/src/utils/node.ts +62 -0
- package/src/wallet/capabilities.ts +500 -0
- package/src/wallet/deploy_account_method.ts +56 -4
- package/src/wallet/index.ts +1 -0
- package/src/wallet/wallet.ts +257 -50
- package/dest/contract/deploy_sent_tx.d.ts +0 -48
- package/dest/contract/deploy_sent_tx.d.ts.map +0 -1
- package/dest/contract/deploy_sent_tx.js +0 -46
- package/dest/contract/sent_tx.d.ts +0 -50
- package/dest/contract/sent_tx.d.ts.map +0 -1
- package/dest/contract/sent_tx.js +0 -90
- package/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/contract/deploy_sent_tx.ts +0 -75
- package/src/contract/sent_tx.ts +0 -129
- package/src/deployment/broadcast_function.ts +0 -148
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fee-juice.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/fee-juice.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EAGV,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"fee-juice.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/fee-juice.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EAGV,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAoNlF,qBAAa,gBAAiB,SAAQ,YAAY;IAChD,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,gBAAgB,CAEjD;IAEc,OAAO,EAAE;QACtB,uCAAuC;QACvC,iBAAiB,EAAE,CAAC,CAAC,KAAK,EAAE,gBAAgB,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEjH,wCAAwC;QACxC,aAAa,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEhH,mFAAmF;QACnF,KAAK,EAAE,CAAC,CACN,EAAE,EAAE,gBAAgB,EACpB,MAAM,EAAE,MAAM,GAAG,MAAM,EACvB,MAAM,EAAE,SAAS,EACjB,kBAAkB,EAAE,SAAS,KAC1B,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,iGAAiG;QACjG,mBAAmB,EAAE,CAAC,CACpB,EAAE,EAAE,gBAAgB,EACpB,MAAM,EAAE,MAAM,GAAG,MAAM,EACvB,MAAM,EAAE,SAAS,EACjB,kBAAkB,EAAE,SAAS,KAC1B,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KAC5G,CAAC;CACH"}
|
|
@@ -62,10 +62,9 @@ const FeeJuiceContractArtifact = {
|
|
|
62
62
|
error_kind: 'string',
|
|
63
63
|
string: 'attempt to subtract with overflow'
|
|
64
64
|
},
|
|
65
|
-
'
|
|
66
|
-
error_kind: '
|
|
67
|
-
|
|
68
|
-
item_types: []
|
|
65
|
+
'5421095327929394772': {
|
|
66
|
+
error_kind: 'string',
|
|
67
|
+
string: 'attempt to bit-shift with overflow'
|
|
69
68
|
},
|
|
70
69
|
'6609888949476313245': {
|
|
71
70
|
error_kind: 'string',
|
|
@@ -158,6 +157,10 @@ const FeeJuiceContractArtifact = {
|
|
|
158
157
|
error_kind: 'string',
|
|
159
158
|
string: 'attempt to subtract with overflow'
|
|
160
159
|
},
|
|
160
|
+
'5421095327929394772': {
|
|
161
|
+
error_kind: 'string',
|
|
162
|
+
string: 'attempt to bit-shift with overflow'
|
|
163
|
+
},
|
|
161
164
|
'6609888949476313245': {
|
|
162
165
|
error_kind: 'string',
|
|
163
166
|
string: 'Message not in state'
|
|
@@ -191,257 +194,6 @@ const FeeJuiceContractArtifact = {
|
|
|
191
194
|
bytecode: Buffer.from([]),
|
|
192
195
|
debugSymbols: ''
|
|
193
196
|
},
|
|
194
|
-
{
|
|
195
|
-
...{
|
|
196
|
-
functionType: FunctionType.UTILITY,
|
|
197
|
-
name: 'process_message',
|
|
198
|
-
isOnlySelf: false,
|
|
199
|
-
isStatic: false,
|
|
200
|
-
isInitializer: false,
|
|
201
|
-
parameters: [
|
|
202
|
-
{
|
|
203
|
-
name: 'message_ciphertext',
|
|
204
|
-
type: {
|
|
205
|
-
kind: 'struct',
|
|
206
|
-
fields: [
|
|
207
|
-
{
|
|
208
|
-
name: 'storage',
|
|
209
|
-
type: {
|
|
210
|
-
kind: 'array',
|
|
211
|
-
length: 17,
|
|
212
|
-
type: {
|
|
213
|
-
kind: 'field'
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
name: 'len',
|
|
219
|
-
type: {
|
|
220
|
-
kind: 'integer',
|
|
221
|
-
sign: 'unsigned',
|
|
222
|
-
width: 32
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
],
|
|
226
|
-
path: 'std::collections::bounded_vec::BoundedVec'
|
|
227
|
-
},
|
|
228
|
-
visibility: 'private'
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
name: 'message_context',
|
|
232
|
-
type: {
|
|
233
|
-
kind: 'struct',
|
|
234
|
-
fields: [
|
|
235
|
-
{
|
|
236
|
-
name: 'tx_hash',
|
|
237
|
-
type: {
|
|
238
|
-
kind: 'field'
|
|
239
|
-
}
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
name: 'unique_note_hashes_in_tx',
|
|
243
|
-
type: {
|
|
244
|
-
kind: 'struct',
|
|
245
|
-
fields: [
|
|
246
|
-
{
|
|
247
|
-
name: 'storage',
|
|
248
|
-
type: {
|
|
249
|
-
kind: 'array',
|
|
250
|
-
length: 64,
|
|
251
|
-
type: {
|
|
252
|
-
kind: 'field'
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
name: 'len',
|
|
258
|
-
type: {
|
|
259
|
-
kind: 'integer',
|
|
260
|
-
sign: 'unsigned',
|
|
261
|
-
width: 32
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
],
|
|
265
|
-
path: 'std::collections::bounded_vec::BoundedVec'
|
|
266
|
-
}
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
name: 'first_nullifier_in_tx',
|
|
270
|
-
type: {
|
|
271
|
-
kind: 'field'
|
|
272
|
-
}
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
name: 'recipient',
|
|
276
|
-
type: {
|
|
277
|
-
kind: 'struct',
|
|
278
|
-
fields: [
|
|
279
|
-
{
|
|
280
|
-
name: 'inner',
|
|
281
|
-
type: {
|
|
282
|
-
kind: 'field'
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
],
|
|
286
|
-
path: 'aztec::protocol_types::address::aztec_address::AztecAddress'
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
],
|
|
290
|
-
path: 'aztec::messages::processing::message_context::MessageContext'
|
|
291
|
-
},
|
|
292
|
-
visibility: 'private'
|
|
293
|
-
}
|
|
294
|
-
],
|
|
295
|
-
returnTypes: [],
|
|
296
|
-
errorTypes: {
|
|
297
|
-
'361444214588792908': {
|
|
298
|
-
error_kind: 'string',
|
|
299
|
-
string: 'attempt to multiply with overflow'
|
|
300
|
-
},
|
|
301
|
-
'992401946138144806': {
|
|
302
|
-
error_kind: 'string',
|
|
303
|
-
string: 'Attempted to read past end of BoundedVec'
|
|
304
|
-
},
|
|
305
|
-
'1998584279744703196': {
|
|
306
|
-
error_kind: 'string',
|
|
307
|
-
string: 'attempt to subtract with overflow'
|
|
308
|
-
},
|
|
309
|
-
'2967937905572420042': {
|
|
310
|
-
error_kind: 'fmtstring',
|
|
311
|
-
length: 61,
|
|
312
|
-
item_types: [
|
|
313
|
-
{
|
|
314
|
-
kind: 'field'
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
kind: 'field'
|
|
318
|
-
}
|
|
319
|
-
]
|
|
320
|
-
},
|
|
321
|
-
'3330370348214585450': {
|
|
322
|
-
error_kind: 'fmtstring',
|
|
323
|
-
length: 48,
|
|
324
|
-
item_types: [
|
|
325
|
-
{
|
|
326
|
-
kind: 'field'
|
|
327
|
-
},
|
|
328
|
-
{
|
|
329
|
-
kind: 'field'
|
|
330
|
-
}
|
|
331
|
-
]
|
|
332
|
-
},
|
|
333
|
-
'3670003311596808700': {
|
|
334
|
-
error_kind: 'fmtstring',
|
|
335
|
-
length: 77,
|
|
336
|
-
item_types: [
|
|
337
|
-
{
|
|
338
|
-
kind: 'integer',
|
|
339
|
-
sign: 'unsigned',
|
|
340
|
-
width: 32
|
|
341
|
-
}
|
|
342
|
-
]
|
|
343
|
-
},
|
|
344
|
-
'4261968856572588300': {
|
|
345
|
-
error_kind: 'string',
|
|
346
|
-
string: 'Value does not fit in field'
|
|
347
|
-
},
|
|
348
|
-
'4440399188109668273': {
|
|
349
|
-
error_kind: 'string',
|
|
350
|
-
string: 'Input length must be a multiple of 32'
|
|
351
|
-
},
|
|
352
|
-
'9791669845391776238': {
|
|
353
|
-
error_kind: 'string',
|
|
354
|
-
string: '0 has a square root; you cannot claim it is not square'
|
|
355
|
-
},
|
|
356
|
-
'9885968605480832328': {
|
|
357
|
-
error_kind: 'string',
|
|
358
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
359
|
-
},
|
|
360
|
-
'10135509984888824963': {
|
|
361
|
-
error_kind: 'fmtstring',
|
|
362
|
-
length: 58,
|
|
363
|
-
item_types: [
|
|
364
|
-
{
|
|
365
|
-
kind: 'field'
|
|
366
|
-
}
|
|
367
|
-
]
|
|
368
|
-
},
|
|
369
|
-
'10791800398362570014': {
|
|
370
|
-
error_kind: 'string',
|
|
371
|
-
string: 'extend_from_bounded_vec out of bounds'
|
|
372
|
-
},
|
|
373
|
-
'11021520179822076911': {
|
|
374
|
-
error_kind: 'string',
|
|
375
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
376
|
-
},
|
|
377
|
-
'11692359521570349358': {
|
|
378
|
-
error_kind: 'fmtstring',
|
|
379
|
-
length: 40,
|
|
380
|
-
item_types: []
|
|
381
|
-
},
|
|
382
|
-
'12327971061804302172': {
|
|
383
|
-
error_kind: 'fmtstring',
|
|
384
|
-
length: 98,
|
|
385
|
-
item_types: []
|
|
386
|
-
},
|
|
387
|
-
'12469291177396340830': {
|
|
388
|
-
error_kind: 'string',
|
|
389
|
-
string: 'call to assert_max_bit_size'
|
|
390
|
-
},
|
|
391
|
-
'12913276134398371456': {
|
|
392
|
-
error_kind: 'string',
|
|
393
|
-
string: 'push out of bounds'
|
|
394
|
-
},
|
|
395
|
-
'13557316507370296400': {
|
|
396
|
-
error_kind: 'fmtstring',
|
|
397
|
-
length: 130,
|
|
398
|
-
item_types: [
|
|
399
|
-
{
|
|
400
|
-
kind: 'integer',
|
|
401
|
-
sign: 'unsigned',
|
|
402
|
-
width: 32
|
|
403
|
-
}
|
|
404
|
-
]
|
|
405
|
-
},
|
|
406
|
-
'14938672389828944159': {
|
|
407
|
-
error_kind: 'fmtstring',
|
|
408
|
-
length: 146,
|
|
409
|
-
item_types: [
|
|
410
|
-
{
|
|
411
|
-
kind: 'integer',
|
|
412
|
-
sign: 'unsigned',
|
|
413
|
-
width: 32
|
|
414
|
-
}
|
|
415
|
-
]
|
|
416
|
-
},
|
|
417
|
-
'14990209321349310352': {
|
|
418
|
-
error_kind: 'string',
|
|
419
|
-
string: 'attempt to add with overflow'
|
|
420
|
-
},
|
|
421
|
-
'15764276373176857197': {
|
|
422
|
-
error_kind: 'string',
|
|
423
|
-
string: 'Stack too deep'
|
|
424
|
-
},
|
|
425
|
-
'16431471497789672479': {
|
|
426
|
-
error_kind: 'string',
|
|
427
|
-
string: 'Index out of bounds'
|
|
428
|
-
},
|
|
429
|
-
'17531474008201752295': {
|
|
430
|
-
error_kind: 'fmtstring',
|
|
431
|
-
length: 133,
|
|
432
|
-
item_types: [
|
|
433
|
-
{
|
|
434
|
-
kind: 'integer',
|
|
435
|
-
sign: 'unsigned',
|
|
436
|
-
width: 32
|
|
437
|
-
}
|
|
438
|
-
]
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
},
|
|
442
|
-
bytecode: Buffer.from([]),
|
|
443
|
-
debugSymbols: ''
|
|
444
|
-
},
|
|
445
197
|
{
|
|
446
198
|
...{
|
|
447
199
|
functionType: FunctionType.PUBLIC,
|
|
@@ -513,164 +265,6 @@ const FeeJuiceContractArtifact = {
|
|
|
513
265
|
},
|
|
514
266
|
bytecode: Buffer.from([]),
|
|
515
267
|
debugSymbols: ''
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
...{
|
|
519
|
-
functionType: FunctionType.UTILITY,
|
|
520
|
-
name: 'sync_private_state',
|
|
521
|
-
isOnlySelf: false,
|
|
522
|
-
isStatic: false,
|
|
523
|
-
isInitializer: false,
|
|
524
|
-
parameters: [],
|
|
525
|
-
returnTypes: [],
|
|
526
|
-
errorTypes: {
|
|
527
|
-
'361444214588792908': {
|
|
528
|
-
error_kind: 'string',
|
|
529
|
-
string: 'attempt to multiply with overflow'
|
|
530
|
-
},
|
|
531
|
-
'992401946138144806': {
|
|
532
|
-
error_kind: 'string',
|
|
533
|
-
string: 'Attempted to read past end of BoundedVec'
|
|
534
|
-
},
|
|
535
|
-
'1998584279744703196': {
|
|
536
|
-
error_kind: 'string',
|
|
537
|
-
string: 'attempt to subtract with overflow'
|
|
538
|
-
},
|
|
539
|
-
'2967937905572420042': {
|
|
540
|
-
error_kind: 'fmtstring',
|
|
541
|
-
length: 61,
|
|
542
|
-
item_types: [
|
|
543
|
-
{
|
|
544
|
-
kind: 'field'
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
kind: 'field'
|
|
548
|
-
}
|
|
549
|
-
]
|
|
550
|
-
},
|
|
551
|
-
'3330370348214585450': {
|
|
552
|
-
error_kind: 'fmtstring',
|
|
553
|
-
length: 48,
|
|
554
|
-
item_types: [
|
|
555
|
-
{
|
|
556
|
-
kind: 'field'
|
|
557
|
-
},
|
|
558
|
-
{
|
|
559
|
-
kind: 'field'
|
|
560
|
-
}
|
|
561
|
-
]
|
|
562
|
-
},
|
|
563
|
-
'3670003311596808700': {
|
|
564
|
-
error_kind: 'fmtstring',
|
|
565
|
-
length: 77,
|
|
566
|
-
item_types: [
|
|
567
|
-
{
|
|
568
|
-
kind: 'integer',
|
|
569
|
-
sign: 'unsigned',
|
|
570
|
-
width: 32
|
|
571
|
-
}
|
|
572
|
-
]
|
|
573
|
-
},
|
|
574
|
-
'4261968856572588300': {
|
|
575
|
-
error_kind: 'string',
|
|
576
|
-
string: 'Value does not fit in field'
|
|
577
|
-
},
|
|
578
|
-
'4440399188109668273': {
|
|
579
|
-
error_kind: 'string',
|
|
580
|
-
string: 'Input length must be a multiple of 32'
|
|
581
|
-
},
|
|
582
|
-
'9791669845391776238': {
|
|
583
|
-
error_kind: 'string',
|
|
584
|
-
string: '0 has a square root; you cannot claim it is not square'
|
|
585
|
-
},
|
|
586
|
-
'9885968605480832328': {
|
|
587
|
-
error_kind: 'string',
|
|
588
|
-
string: 'Attempted to read past the length of a CapsuleArray'
|
|
589
|
-
},
|
|
590
|
-
'10135509984888824963': {
|
|
591
|
-
error_kind: 'fmtstring',
|
|
592
|
-
length: 58,
|
|
593
|
-
item_types: [
|
|
594
|
-
{
|
|
595
|
-
kind: 'field'
|
|
596
|
-
}
|
|
597
|
-
]
|
|
598
|
-
},
|
|
599
|
-
'10791800398362570014': {
|
|
600
|
-
error_kind: 'string',
|
|
601
|
-
string: 'extend_from_bounded_vec out of bounds'
|
|
602
|
-
},
|
|
603
|
-
'11021520179822076911': {
|
|
604
|
-
error_kind: 'string',
|
|
605
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
606
|
-
},
|
|
607
|
-
'11692359521570349358': {
|
|
608
|
-
error_kind: 'fmtstring',
|
|
609
|
-
length: 40,
|
|
610
|
-
item_types: []
|
|
611
|
-
},
|
|
612
|
-
'12327971061804302172': {
|
|
613
|
-
error_kind: 'fmtstring',
|
|
614
|
-
length: 98,
|
|
615
|
-
item_types: []
|
|
616
|
-
},
|
|
617
|
-
'12469291177396340830': {
|
|
618
|
-
error_kind: 'string',
|
|
619
|
-
string: 'call to assert_max_bit_size'
|
|
620
|
-
},
|
|
621
|
-
'12913276134398371456': {
|
|
622
|
-
error_kind: 'string',
|
|
623
|
-
string: 'push out of bounds'
|
|
624
|
-
},
|
|
625
|
-
'13557316507370296400': {
|
|
626
|
-
error_kind: 'fmtstring',
|
|
627
|
-
length: 130,
|
|
628
|
-
item_types: [
|
|
629
|
-
{
|
|
630
|
-
kind: 'integer',
|
|
631
|
-
sign: 'unsigned',
|
|
632
|
-
width: 32
|
|
633
|
-
}
|
|
634
|
-
]
|
|
635
|
-
},
|
|
636
|
-
'14938672389828944159': {
|
|
637
|
-
error_kind: 'fmtstring',
|
|
638
|
-
length: 146,
|
|
639
|
-
item_types: [
|
|
640
|
-
{
|
|
641
|
-
kind: 'integer',
|
|
642
|
-
sign: 'unsigned',
|
|
643
|
-
width: 32
|
|
644
|
-
}
|
|
645
|
-
]
|
|
646
|
-
},
|
|
647
|
-
'14990209321349310352': {
|
|
648
|
-
error_kind: 'string',
|
|
649
|
-
string: 'attempt to add with overflow'
|
|
650
|
-
},
|
|
651
|
-
'15764276373176857197': {
|
|
652
|
-
error_kind: 'string',
|
|
653
|
-
string: 'Stack too deep'
|
|
654
|
-
},
|
|
655
|
-
'16431471497789672479': {
|
|
656
|
-
error_kind: 'string',
|
|
657
|
-
string: 'Index out of bounds'
|
|
658
|
-
},
|
|
659
|
-
'17531474008201752295': {
|
|
660
|
-
error_kind: 'fmtstring',
|
|
661
|
-
length: 133,
|
|
662
|
-
item_types: [
|
|
663
|
-
{
|
|
664
|
-
kind: 'integer',
|
|
665
|
-
sign: 'unsigned',
|
|
666
|
-
width: 32
|
|
667
|
-
}
|
|
668
|
-
]
|
|
669
|
-
}
|
|
670
|
-
}
|
|
671
|
-
},
|
|
672
|
-
bytecode: Buffer.from([]),
|
|
673
|
-
debugSymbols: ''
|
|
674
268
|
}
|
|
675
269
|
],
|
|
676
270
|
nonDispatchPublicFunctions: [
|
|
@@ -27,8 +27,8 @@ export declare class MultiCallEntrypointContract extends ContractBase {
|
|
|
27
27
|
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
28
28
|
/** public_dispatch(selector: field) */
|
|
29
29
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
30
|
-
/**
|
|
31
|
-
|
|
30
|
+
/** sync_state() */
|
|
31
|
+
sync_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGktY2FsbC1lbnRyeXBvaW50LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29udHJhY3QvcHJvdG9jb2xfY29udHJhY3RzL211bHRpLWNhbGwtZW50cnlwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFPQSxPQUFPLEtBQUssRUFDVixnQkFBZ0IsRUFFaEIsU0FBUyxFQUNULG9CQUFvQixFQUVyQixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxZQUFZLEVBQUUsS0FBSyxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN4RSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQXFSbEYscUJBQWEsMkJBQTRCLFNBQVEsWUFBWTtJQUMzRCxPQUFPLGVBRU47SUFFRCxPQUFjLEVBQUUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLDJCQUEyQixDQUU1RDtJQUVjLE9BQU8sRUFBRTtRQUN0QixzQ0FBc0M7UUFDdEMsVUFBVSxFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUU7WUFDekIsY0FBYyxFQUFFO2dCQUNkLFNBQVMsRUFBRSxTQUFTLENBQUM7Z0JBQ3JCLGlCQUFpQixFQUFFLG9CQUFvQixDQUFDO2dCQUN4QyxjQUFjLEVBQUUsZ0JBQWdCLENBQUM7Z0JBQ2pDLFNBQVMsRUFBRSxPQUFPLENBQUM7Z0JBQ25CLGVBQWUsRUFBRSxPQUFPLENBQUM7Z0JBQ3pCLFNBQVMsRUFBRSxPQUFPLENBQUM7YUFDcEIsRUFBRSxDQUFDO1lBQ0osUUFBUSxFQUFFLFNBQVMsQ0FBQztTQUNyQixLQUFLLDJCQUEyQixDQUFDLEdBQ2hDLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsMkVBQTJFO1FBQzNFLGVBQWUsRUFBRSxDQUFDLENBQ2hCLGtCQUFrQixFQUFFLFNBQVMsRUFBRSxFQUMvQixlQUFlLEVBQUU7WUFDZixPQUFPLEVBQUUsU0FBUyxDQUFDO1lBQ25CLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxDQUFDO1lBQ3RDLHFCQUFxQixFQUFFLFNBQVMsQ0FBQztZQUNqQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUM7U0FDN0IsS0FDRSwyQkFBMkIsQ0FBQyxHQUMvQixJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLHVDQUF1QztRQUN2QyxlQUFlLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxTQUFTLEtBQUssMkJBQTJCLENBQUMsR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTNHLG1CQUFtQjtRQUNuQixVQUFVLEVBQUUsQ0FBQyxNQUFNLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwRixDQUFDO0NBQ0gifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multi-call-entrypoint.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/multi-call-entrypoint.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EACT,oBAAoB,EAErB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"multi-call-entrypoint.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/multi-call-entrypoint.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EACT,oBAAoB,EAErB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AAqRlF,qBAAa,2BAA4B,SAAQ,YAAY;IAC3D,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,2BAA2B,CAE5D;IAEc,OAAO,EAAE;QACtB,sCAAsC;QACtC,UAAU,EAAE,CAAC,CAAC,WAAW,EAAE;YACzB,cAAc,EAAE;gBACd,SAAS,EAAE,SAAS,CAAC;gBACrB,iBAAiB,EAAE,oBAAoB,CAAC;gBACxC,cAAc,EAAE,gBAAgB,CAAC;gBACjC,SAAS,EAAE,OAAO,CAAC;gBACnB,eAAe,EAAE,OAAO,CAAC;gBACzB,SAAS,EAAE,OAAO,CAAC;aACpB,EAAE,CAAC;YACJ,QAAQ,EAAE,SAAS,CAAC;SACrB,KAAK,2BAA2B,CAAC,GAChC,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,2EAA2E;QAC3E,eAAe,EAAE,CAAC,CAChB,kBAAkB,EAAE,SAAS,EAAE,EAC/B,eAAe,EAAE;YACf,OAAO,EAAE,SAAS,CAAC;YACnB,wBAAwB,EAAE,SAAS,EAAE,CAAC;YACtC,qBAAqB,EAAE,SAAS,CAAC;YACjC,SAAS,EAAE,gBAAgB,CAAC;SAC7B,KACE,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAE3G,mBAAmB;QACnB,UAAU,EAAE,CAAC,MAAM,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACpF,CAAC;CACH"}
|
|
@@ -138,7 +138,7 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
138
138
|
name: 'storage',
|
|
139
139
|
type: {
|
|
140
140
|
kind: 'array',
|
|
141
|
-
length:
|
|
141
|
+
length: 15,
|
|
142
142
|
type: {
|
|
143
143
|
kind: 'field'
|
|
144
144
|
}
|
|
@@ -279,13 +279,26 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
279
279
|
error_kind: 'string',
|
|
280
280
|
string: 'Input length must be a multiple of 32'
|
|
281
281
|
},
|
|
282
|
-
'
|
|
282
|
+
'5417577161503694006': {
|
|
283
|
+
error_kind: 'fmtstring',
|
|
284
|
+
length: 56,
|
|
285
|
+
item_types: [
|
|
286
|
+
{
|
|
287
|
+
kind: 'field'
|
|
288
|
+
}
|
|
289
|
+
]
|
|
290
|
+
},
|
|
291
|
+
'5421095327929394772': {
|
|
283
292
|
error_kind: 'string',
|
|
284
|
-
string: '
|
|
293
|
+
string: 'attempt to bit-shift with overflow'
|
|
285
294
|
},
|
|
286
|
-
'
|
|
295
|
+
'9530675838293881722': {
|
|
287
296
|
error_kind: 'string',
|
|
288
|
-
string: '
|
|
297
|
+
string: 'Writer did not write all data'
|
|
298
|
+
},
|
|
299
|
+
'9791669845391776238': {
|
|
300
|
+
error_kind: 'string',
|
|
301
|
+
string: '0 has a square root; you cannot claim it is not square'
|
|
289
302
|
},
|
|
290
303
|
'10135509984888824963': {
|
|
291
304
|
error_kind: 'fmtstring',
|
|
@@ -300,20 +313,11 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
300
313
|
error_kind: 'string',
|
|
301
314
|
string: 'extend_from_bounded_vec out of bounds'
|
|
302
315
|
},
|
|
303
|
-
'11021520179822076911': {
|
|
304
|
-
error_kind: 'string',
|
|
305
|
-
string: 'Attempted to delete past the length of a CapsuleArray'
|
|
306
|
-
},
|
|
307
316
|
'11692359521570349358': {
|
|
308
317
|
error_kind: 'fmtstring',
|
|
309
318
|
length: 40,
|
|
310
319
|
item_types: []
|
|
311
320
|
},
|
|
312
|
-
'12327971061804302172': {
|
|
313
|
-
error_kind: 'fmtstring',
|
|
314
|
-
length: 98,
|
|
315
|
-
item_types: []
|
|
316
|
-
},
|
|
317
321
|
'12469291177396340830': {
|
|
318
322
|
error_kind: 'string',
|
|
319
323
|
string: 'call to assert_max_bit_size'
|
|
@@ -375,7 +379,7 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
375
379
|
{
|
|
376
380
|
...{
|
|
377
381
|
functionType: FunctionType.UTILITY,
|
|
378
|
-
name: '
|
|
382
|
+
name: 'sync_state',
|
|
379
383
|
isOnlySelf: false,
|
|
380
384
|
isStatic: false,
|
|
381
385
|
isInitializer: false,
|
|
@@ -437,6 +441,23 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
437
441
|
error_kind: 'string',
|
|
438
442
|
string: 'Input length must be a multiple of 32'
|
|
439
443
|
},
|
|
444
|
+
'5417577161503694006': {
|
|
445
|
+
error_kind: 'fmtstring',
|
|
446
|
+
length: 56,
|
|
447
|
+
item_types: [
|
|
448
|
+
{
|
|
449
|
+
kind: 'field'
|
|
450
|
+
}
|
|
451
|
+
]
|
|
452
|
+
},
|
|
453
|
+
'5421095327929394772': {
|
|
454
|
+
error_kind: 'string',
|
|
455
|
+
string: 'attempt to bit-shift with overflow'
|
|
456
|
+
},
|
|
457
|
+
'9530675838293881722': {
|
|
458
|
+
error_kind: 'string',
|
|
459
|
+
string: 'Writer did not write all data'
|
|
460
|
+
},
|
|
440
461
|
'9791669845391776238': {
|
|
441
462
|
error_kind: 'string',
|
|
442
463
|
string: '0 has a square root; you cannot claim it is not square'
|
|
@@ -524,6 +545,10 @@ const MultiCallEntrypointContractArtifact = {
|
|
|
524
545
|
width: 32
|
|
525
546
|
}
|
|
526
547
|
]
|
|
548
|
+
},
|
|
549
|
+
'17655676068928457687': {
|
|
550
|
+
error_kind: 'string',
|
|
551
|
+
string: 'Reader did not read all data'
|
|
527
552
|
}
|
|
528
553
|
}
|
|
529
554
|
},
|
|
@@ -19,8 +19,8 @@ export declare class PublicChecksContract extends ContractBase {
|
|
|
19
19
|
}) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
20
20
|
/** public_dispatch(selector: field) */
|
|
21
21
|
public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
22
|
-
/**
|
|
23
|
-
|
|
22
|
+
/** sync_state() */
|
|
23
|
+
sync_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWNoZWNrcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL2NvbnRyYWN0L3Byb3RvY29sX2NvbnRyYWN0cy9wdWJsaWMtY2hlY2tzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU9BLE9BQU8sS0FBSyxFQUNWLGdCQUFnQixFQUVoQixTQUFTLEVBR1YsTUFBTSwwQkFBMEIsQ0FBQztBQUNsQyxPQUFPLEtBQUssRUFBRSxNQUFNLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsWUFBWSxFQUFFLEtBQUssY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDeEUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0scUNBQXFDLENBQUM7QUEyUWxGLHFCQUFhLG9CQUFxQixTQUFRLFlBQVk7SUFDcEQsT0FBTyxlQUVOO0lBRUQsT0FBYyxFQUFFLENBQUMsTUFBTSxFQUFFLE1BQU0sR0FBRyxvQkFBb0IsQ0FFckQ7SUFFYyxPQUFPLEVBQUU7UUFDdEIsNkRBQTZEO1FBQzdELGtCQUFrQixFQUFFLENBQUMsQ0FBQyxTQUFTLEVBQUUsTUFBTSxHQUFHLE1BQU0sRUFBRSxLQUFLLEVBQUUsTUFBTSxHQUFHLE1BQU0sS0FBSywyQkFBMkIsQ0FBQyxHQUN2RyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLDBEQUEwRDtRQUMxRCxlQUFlLEVBQUUsQ0FBQyxDQUFDLFNBQVMsRUFBRSxNQUFNLEdBQUcsTUFBTSxFQUFFLEtBQUssRUFBRSxNQUFNLEdBQUcsTUFBTSxLQUFLLDJCQUEyQixDQUFDLEdBQ3BHLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsMkVBQTJFO1FBQzNFLGVBQWUsRUFBRSxDQUFDLENBQ2hCLGtCQUFrQixFQUFFLFNBQVMsRUFBRSxFQUMvQixlQUFlLEVBQUU7WUFDZixPQUFPLEVBQUUsU0FBUyxDQUFDO1lBQ25CLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxDQUFDO1lBQ3RDLHFCQUFxQixFQUFFLFNBQVMsQ0FBQztZQUNqQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUM7U0FDN0IsS0FDRSwyQkFBMkIsQ0FBQyxHQUMvQixJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLHVDQUF1QztRQUN2QyxlQUFlLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxTQUFTLEtBQUssMkJBQTJCLENBQUMsR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTNHLG1CQUFtQjtRQUNuQixVQUFVLEVBQUUsQ0FBQyxNQUFNLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwRixDQUFDO0NBQ0gifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-checks.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/public-checks.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EAGV,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"public-checks.d.ts","sourceRoot":"","sources":["../../../src/contract/protocol_contracts/public-checks.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EACV,gBAAgB,EAEhB,SAAS,EAGV,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,qCAAqC,CAAC;AA2QlF,qBAAa,oBAAqB,SAAQ,YAAY;IACpD,OAAO,eAEN;IAED,OAAc,EAAE,CAAC,MAAM,EAAE,MAAM,GAAG,oBAAoB,CAErD;IAEc,OAAO,EAAE;QACtB,6DAA6D;QAC7D,kBAAkB,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,KAAK,2BAA2B,CAAC,GACvG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,0DAA0D;QAC1D,eAAe,EAAE,CAAC,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,KAAK,2BAA2B,CAAC,GACpG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,2EAA2E;QAC3E,eAAe,EAAE,CAAC,CAChB,kBAAkB,EAAE,SAAS,EAAE,EAC/B,eAAe,EAAE;YACf,OAAO,EAAE,SAAS,CAAC;YACnB,wBAAwB,EAAE,SAAS,EAAE,CAAC;YACtC,qBAAqB,EAAE,SAAS,CAAC;YACjC,SAAS,EAAE,gBAAgB,CAAC;SAC7B,KACE,2BAA2B,CAAC,GAC/B,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAEnC,uCAAuC;QACvC,eAAe,EAAE,CAAC,CAAC,QAAQ,EAAE,SAAS,KAAK,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;QAE3G,mBAAmB;QACnB,UAAU,EAAE,CAAC,MAAM,2BAA2B,CAAC,GAAG,IAAI,CAAC,cAAc,EAAE,UAAU,CAAC,CAAC;KACpF,CAAC;CACH"}
|