@aztec/simulator 3.0.0-rc.5 → 4.0.0-nightly.20260107

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.
Files changed (83) hide show
  1. package/dest/private/circuit_recording/circuit_recorder.d.ts +1 -1
  2. package/dest/private/circuit_recording/circuit_recorder.d.ts.map +1 -1
  3. package/dest/private/circuit_recording/circuit_recorder.js +15 -14
  4. package/dest/public/avm/opcodes/accrued_substate.js +1 -1
  5. package/dest/public/avm/opcodes/external_calls.d.ts +1 -1
  6. package/dest/public/avm/opcodes/external_calls.d.ts.map +1 -1
  7. package/dest/public/avm/opcodes/external_calls.js +1 -0
  8. package/dest/public/avm/opcodes/hashing.d.ts +1 -1
  9. package/dest/public/avm/opcodes/hashing.d.ts.map +1 -1
  10. package/dest/public/avm/opcodes/hashing.js +6 -3
  11. package/dest/public/debug_fn_name.d.ts +1 -1
  12. package/dest/public/debug_fn_name.d.ts.map +1 -1
  13. package/dest/public/debug_fn_name.js +10 -3
  14. package/dest/public/fixtures/bulk_test.js +3 -51
  15. package/dest/public/fixtures/custom_bytecode_tester.d.ts +28 -6
  16. package/dest/public/fixtures/custom_bytecode_tester.d.ts.map +1 -1
  17. package/dest/public/fixtures/custom_bytecode_tester.js +36 -12
  18. package/dest/public/fixtures/custom_bytecode_tests.d.ts +3 -1
  19. package/dest/public/fixtures/custom_bytecode_tests.d.ts.map +1 -1
  20. package/dest/public/fixtures/custom_bytecode_tests.js +54 -10
  21. package/dest/public/fixtures/index.d.ts +4 -2
  22. package/dest/public/fixtures/index.d.ts.map +1 -1
  23. package/dest/public/fixtures/index.js +3 -1
  24. package/dest/public/fixtures/minimal_public_tx.d.ts +2 -7
  25. package/dest/public/fixtures/minimal_public_tx.d.ts.map +1 -1
  26. package/dest/public/fixtures/minimal_public_tx.js +2 -12
  27. package/dest/public/fixtures/opcode_spammer.d.ts +123 -0
  28. package/dest/public/fixtures/opcode_spammer.d.ts.map +1 -0
  29. package/dest/public/fixtures/opcode_spammer.js +1681 -0
  30. package/dest/public/fixtures/public_tx_simulation_tester.d.ts +15 -2
  31. package/dest/public/fixtures/public_tx_simulation_tester.d.ts.map +1 -1
  32. package/dest/public/fixtures/public_tx_simulation_tester.js +34 -7
  33. package/dest/public/fixtures/utils.d.ts +1 -1
  34. package/dest/public/fixtures/utils.d.ts.map +1 -1
  35. package/dest/public/fixtures/utils.js +3 -2
  36. package/dest/public/fuzzing/avm_fuzzer_simulator.d.ts +1 -1
  37. package/dest/public/fuzzing/avm_fuzzer_simulator.d.ts.map +1 -1
  38. package/dest/public/fuzzing/avm_fuzzer_simulator.js +4 -1
  39. package/dest/public/fuzzing/avm_simulator_bin.js +18 -2
  40. package/dest/public/hinting_db_sources.d.ts +2 -1
  41. package/dest/public/hinting_db_sources.d.ts.map +1 -1
  42. package/dest/public/hinting_db_sources.js +5 -0
  43. package/dest/public/public_processor/guarded_merkle_tree.d.ts +2 -1
  44. package/dest/public/public_processor/guarded_merkle_tree.d.ts.map +1 -1
  45. package/dest/public/public_processor/guarded_merkle_tree.js +5 -0
  46. package/dest/public/public_processor/public_processor.d.ts +2 -2
  47. package/dest/public/public_processor/public_processor.d.ts.map +1 -1
  48. package/dest/public/public_processor/public_processor.js +417 -28
  49. package/dest/public/public_tx_simulator/contract_provider_for_cpp.d.ts +1 -1
  50. package/dest/public/public_tx_simulator/contract_provider_for_cpp.d.ts.map +1 -1
  51. package/dest/public/public_tx_simulator/contract_provider_for_cpp.js +15 -11
  52. package/dest/public/public_tx_simulator/cpp_public_tx_simulator.d.ts +16 -1
  53. package/dest/public/public_tx_simulator/cpp_public_tx_simulator.d.ts.map +1 -1
  54. package/dest/public/public_tx_simulator/cpp_public_tx_simulator.js +41 -3
  55. package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.d.ts +1 -1
  56. package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.d.ts.map +1 -1
  57. package/dest/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.js +3 -2
  58. package/dest/public/public_tx_simulator/public_tx_simulator_interface.d.ts +24 -1
  59. package/dest/public/public_tx_simulator/public_tx_simulator_interface.d.ts.map +1 -1
  60. package/dest/public/public_tx_simulator/telemetry_public_tx_simulator.js +395 -19
  61. package/package.json +16 -16
  62. package/src/private/circuit_recording/circuit_recorder.ts +16 -15
  63. package/src/public/avm/opcodes/accrued_substate.ts +1 -1
  64. package/src/public/avm/opcodes/external_calls.ts +1 -0
  65. package/src/public/avm/opcodes/hashing.ts +7 -3
  66. package/src/public/debug_fn_name.ts +10 -3
  67. package/src/public/fixtures/bulk_test.ts +6 -6
  68. package/src/public/fixtures/custom_bytecode_tester.ts +53 -19
  69. package/src/public/fixtures/custom_bytecode_tests.ts +70 -10
  70. package/src/public/fixtures/index.ts +7 -1
  71. package/src/public/fixtures/minimal_public_tx.ts +3 -12
  72. package/src/public/fixtures/opcode_spammer.ts +1638 -0
  73. package/src/public/fixtures/public_tx_simulation_tester.ts +38 -5
  74. package/src/public/fixtures/utils.ts +1 -2
  75. package/src/public/fuzzing/avm_fuzzer_simulator.ts +8 -1
  76. package/src/public/fuzzing/avm_simulator_bin.ts +21 -2
  77. package/src/public/hinting_db_sources.ts +4 -0
  78. package/src/public/public_processor/guarded_merkle_tree.ts +4 -0
  79. package/src/public/public_processor/public_processor.ts +20 -9
  80. package/src/public/public_tx_simulator/contract_provider_for_cpp.ts +16 -11
  81. package/src/public/public_tx_simulator/cpp_public_tx_simulator.ts +48 -3
  82. package/src/public/public_tx_simulator/cpp_vs_ts_public_tx_simulator.ts +3 -2
  83. package/src/public/public_tx_simulator/public_tx_simulator_interface.ts +23 -0
@@ -1,9 +1,376 @@
1
- function _ts_decorate(decorators, target, key, desc) {
2
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
- else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1
+ function applyDecs2203RFactory() {
2
+ function createAddInitializerMethod(initializers, decoratorFinishedRef) {
3
+ return function addInitializer(initializer) {
4
+ assertNotFinished(decoratorFinishedRef, "addInitializer");
5
+ assertCallable(initializer, "An initializer");
6
+ initializers.push(initializer);
7
+ };
8
+ }
9
+ function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value) {
10
+ var kindStr;
11
+ switch(kind){
12
+ case 1:
13
+ kindStr = "accessor";
14
+ break;
15
+ case 2:
16
+ kindStr = "method";
17
+ break;
18
+ case 3:
19
+ kindStr = "getter";
20
+ break;
21
+ case 4:
22
+ kindStr = "setter";
23
+ break;
24
+ default:
25
+ kindStr = "field";
26
+ }
27
+ var ctx = {
28
+ kind: kindStr,
29
+ name: isPrivate ? "#" + name : name,
30
+ static: isStatic,
31
+ private: isPrivate,
32
+ metadata: metadata
33
+ };
34
+ var decoratorFinishedRef = {
35
+ v: false
36
+ };
37
+ ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef);
38
+ var get, set;
39
+ if (kind === 0) {
40
+ if (isPrivate) {
41
+ get = desc.get;
42
+ set = desc.set;
43
+ } else {
44
+ get = function() {
45
+ return this[name];
46
+ };
47
+ set = function(v) {
48
+ this[name] = v;
49
+ };
50
+ }
51
+ } else if (kind === 2) {
52
+ get = function() {
53
+ return desc.value;
54
+ };
55
+ } else {
56
+ if (kind === 1 || kind === 3) {
57
+ get = function() {
58
+ return desc.get.call(this);
59
+ };
60
+ }
61
+ if (kind === 1 || kind === 4) {
62
+ set = function(v) {
63
+ desc.set.call(this, v);
64
+ };
65
+ }
66
+ }
67
+ ctx.access = get && set ? {
68
+ get: get,
69
+ set: set
70
+ } : get ? {
71
+ get: get
72
+ } : {
73
+ set: set
74
+ };
75
+ try {
76
+ return dec(value, ctx);
77
+ } finally{
78
+ decoratorFinishedRef.v = true;
79
+ }
80
+ }
81
+ function assertNotFinished(decoratorFinishedRef, fnName) {
82
+ if (decoratorFinishedRef.v) {
83
+ throw new Error("attempted to call " + fnName + " after decoration was finished");
84
+ }
85
+ }
86
+ function assertCallable(fn, hint) {
87
+ if (typeof fn !== "function") {
88
+ throw new TypeError(hint + " must be a function");
89
+ }
90
+ }
91
+ function assertValidReturnValue(kind, value) {
92
+ var type = typeof value;
93
+ if (kind === 1) {
94
+ if (type !== "object" || value === null) {
95
+ throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
96
+ }
97
+ if (value.get !== undefined) {
98
+ assertCallable(value.get, "accessor.get");
99
+ }
100
+ if (value.set !== undefined) {
101
+ assertCallable(value.set, "accessor.set");
102
+ }
103
+ if (value.init !== undefined) {
104
+ assertCallable(value.init, "accessor.init");
105
+ }
106
+ } else if (type !== "function") {
107
+ var hint;
108
+ if (kind === 0) {
109
+ hint = "field";
110
+ } else if (kind === 10) {
111
+ hint = "class";
112
+ } else {
113
+ hint = "method";
114
+ }
115
+ throw new TypeError(hint + " decorators must return a function or void 0");
116
+ }
117
+ }
118
+ function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata) {
119
+ var decs = decInfo[0];
120
+ var desc, init, value;
121
+ if (isPrivate) {
122
+ if (kind === 0 || kind === 1) {
123
+ desc = {
124
+ get: decInfo[3],
125
+ set: decInfo[4]
126
+ };
127
+ } else if (kind === 3) {
128
+ desc = {
129
+ get: decInfo[3]
130
+ };
131
+ } else if (kind === 4) {
132
+ desc = {
133
+ set: decInfo[3]
134
+ };
135
+ } else {
136
+ desc = {
137
+ value: decInfo[3]
138
+ };
139
+ }
140
+ } else if (kind !== 0) {
141
+ desc = Object.getOwnPropertyDescriptor(base, name);
142
+ }
143
+ if (kind === 1) {
144
+ value = {
145
+ get: desc.get,
146
+ set: desc.set
147
+ };
148
+ } else if (kind === 2) {
149
+ value = desc.value;
150
+ } else if (kind === 3) {
151
+ value = desc.get;
152
+ } else if (kind === 4) {
153
+ value = desc.set;
154
+ }
155
+ var newValue, get, set;
156
+ if (typeof decs === "function") {
157
+ newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
158
+ if (newValue !== void 0) {
159
+ assertValidReturnValue(kind, newValue);
160
+ if (kind === 0) {
161
+ init = newValue;
162
+ } else if (kind === 1) {
163
+ init = newValue.init;
164
+ get = newValue.get || value.get;
165
+ set = newValue.set || value.set;
166
+ value = {
167
+ get: get,
168
+ set: set
169
+ };
170
+ } else {
171
+ value = newValue;
172
+ }
173
+ }
174
+ } else {
175
+ for(var i = decs.length - 1; i >= 0; i--){
176
+ var dec = decs[i];
177
+ newValue = memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
178
+ if (newValue !== void 0) {
179
+ assertValidReturnValue(kind, newValue);
180
+ var newInit;
181
+ if (kind === 0) {
182
+ newInit = newValue;
183
+ } else if (kind === 1) {
184
+ newInit = newValue.init;
185
+ get = newValue.get || value.get;
186
+ set = newValue.set || value.set;
187
+ value = {
188
+ get: get,
189
+ set: set
190
+ };
191
+ } else {
192
+ value = newValue;
193
+ }
194
+ if (newInit !== void 0) {
195
+ if (init === void 0) {
196
+ init = newInit;
197
+ } else if (typeof init === "function") {
198
+ init = [
199
+ init,
200
+ newInit
201
+ ];
202
+ } else {
203
+ init.push(newInit);
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
+ if (kind === 0 || kind === 1) {
210
+ if (init === void 0) {
211
+ init = function(instance, init) {
212
+ return init;
213
+ };
214
+ } else if (typeof init !== "function") {
215
+ var ownInitializers = init;
216
+ init = function(instance, init) {
217
+ var value = init;
218
+ for(var i = 0; i < ownInitializers.length; i++){
219
+ value = ownInitializers[i].call(instance, value);
220
+ }
221
+ return value;
222
+ };
223
+ } else {
224
+ var originalInitializer = init;
225
+ init = function(instance, init) {
226
+ return originalInitializer.call(instance, init);
227
+ };
228
+ }
229
+ ret.push(init);
230
+ }
231
+ if (kind !== 0) {
232
+ if (kind === 1) {
233
+ desc.get = value.get;
234
+ desc.set = value.set;
235
+ } else if (kind === 2) {
236
+ desc.value = value;
237
+ } else if (kind === 3) {
238
+ desc.get = value;
239
+ } else if (kind === 4) {
240
+ desc.set = value;
241
+ }
242
+ if (isPrivate) {
243
+ if (kind === 1) {
244
+ ret.push(function(instance, args) {
245
+ return value.get.call(instance, args);
246
+ });
247
+ ret.push(function(instance, args) {
248
+ return value.set.call(instance, args);
249
+ });
250
+ } else if (kind === 2) {
251
+ ret.push(value);
252
+ } else {
253
+ ret.push(function(instance, args) {
254
+ return value.call(instance, args);
255
+ });
256
+ }
257
+ } else {
258
+ Object.defineProperty(base, name, desc);
259
+ }
260
+ }
261
+ }
262
+ function applyMemberDecs(Class, decInfos, metadata) {
263
+ var ret = [];
264
+ var protoInitializers;
265
+ var staticInitializers;
266
+ var existingProtoNonFields = new Map();
267
+ var existingStaticNonFields = new Map();
268
+ for(var i = 0; i < decInfos.length; i++){
269
+ var decInfo = decInfos[i];
270
+ if (!Array.isArray(decInfo)) continue;
271
+ var kind = decInfo[1];
272
+ var name = decInfo[2];
273
+ var isPrivate = decInfo.length > 3;
274
+ var isStatic = kind >= 5;
275
+ var base;
276
+ var initializers;
277
+ if (isStatic) {
278
+ base = Class;
279
+ kind = kind - 5;
280
+ staticInitializers = staticInitializers || [];
281
+ initializers = staticInitializers;
282
+ } else {
283
+ base = Class.prototype;
284
+ protoInitializers = protoInitializers || [];
285
+ initializers = protoInitializers;
286
+ }
287
+ if (kind !== 0 && !isPrivate) {
288
+ var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields;
289
+ var existingKind = existingNonFields.get(name) || 0;
290
+ if (existingKind === true || existingKind === 3 && kind !== 4 || existingKind === 4 && kind !== 3) {
291
+ throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name);
292
+ } else if (!existingKind && kind > 2) {
293
+ existingNonFields.set(name, kind);
294
+ } else {
295
+ existingNonFields.set(name, true);
296
+ }
297
+ }
298
+ applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata);
299
+ }
300
+ pushInitializers(ret, protoInitializers);
301
+ pushInitializers(ret, staticInitializers);
302
+ return ret;
303
+ }
304
+ function pushInitializers(ret, initializers) {
305
+ if (initializers) {
306
+ ret.push(function(instance) {
307
+ for(var i = 0; i < initializers.length; i++){
308
+ initializers[i].call(instance);
309
+ }
310
+ return instance;
311
+ });
312
+ }
313
+ }
314
+ function applyClassDecs(targetClass, classDecs, metadata) {
315
+ if (classDecs.length > 0) {
316
+ var initializers = [];
317
+ var newClass = targetClass;
318
+ var name = targetClass.name;
319
+ for(var i = classDecs.length - 1; i >= 0; i--){
320
+ var decoratorFinishedRef = {
321
+ v: false
322
+ };
323
+ try {
324
+ var nextNewClass = classDecs[i](newClass, {
325
+ kind: "class",
326
+ name: name,
327
+ addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef),
328
+ metadata
329
+ });
330
+ } finally{
331
+ decoratorFinishedRef.v = true;
332
+ }
333
+ if (nextNewClass !== undefined) {
334
+ assertValidReturnValue(10, nextNewClass);
335
+ newClass = nextNewClass;
336
+ }
337
+ }
338
+ return [
339
+ defineMetadata(newClass, metadata),
340
+ function() {
341
+ for(var i = 0; i < initializers.length; i++){
342
+ initializers[i].call(newClass);
343
+ }
344
+ }
345
+ ];
346
+ }
347
+ }
348
+ function defineMetadata(Class, metadata) {
349
+ return Object.defineProperty(Class, Symbol.metadata || Symbol.for("Symbol.metadata"), {
350
+ configurable: true,
351
+ enumerable: true,
352
+ value: metadata
353
+ });
354
+ }
355
+ return function applyDecs2203R(targetClass, memberDecs, classDecs, parentClass) {
356
+ if (parentClass !== void 0) {
357
+ var parentMetadata = parentClass[Symbol.metadata || Symbol.for("Symbol.metadata")];
358
+ }
359
+ var metadata = Object.create(parentMetadata === void 0 ? null : parentMetadata);
360
+ var e = applyMemberDecs(targetClass, memberDecs, metadata);
361
+ if (!classDecs.length) defineMetadata(targetClass, metadata);
362
+ return {
363
+ e: e,
364
+ get c () {
365
+ return applyClassDecs(targetClass, classDecs, metadata);
366
+ }
367
+ };
368
+ };
369
+ }
370
+ function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
371
+ return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
6
372
  }
373
+ var _dec, _dec1, _dec2, _initProto;
7
374
  import { MAX_NOTE_HASHES_PER_TX, MAX_NULLIFIERS_PER_TX, NULLIFIER_SUBTREE_HEIGHT } from '@aztec/constants';
8
375
  import { padArrayEnd } from '@aztec/foundation/collection';
9
376
  import { Fr } from '@aztec/foundation/curves/bn254';
@@ -18,7 +385,7 @@ import { computeTransactionFee } from '@aztec/stdlib/fees';
18
385
  import { Gas } from '@aztec/stdlib/gas';
19
386
  import { ProvingRequestType } from '@aztec/stdlib/proofs';
20
387
  import { MerkleTreeId } from '@aztec/stdlib/trees';
21
- import { NestedProcessReturnValues, Tx, makeProcessedTxFromPrivateOnlyTx, makeProcessedTxFromTxWithPublicCalls } from '@aztec/stdlib/tx';
388
+ import { NestedProcessReturnValues, makeProcessedTxFromPrivateOnlyTx, makeProcessedTxFromTxWithPublicCalls } from '@aztec/stdlib/tx';
22
389
  import { Attributes, getTelemetryClient, trackSpan } from '@aztec/telemetry-client';
23
390
  import { ForkCheckpoint } from '@aztec/world-state/native';
24
391
  import { AssertionError } from 'assert';
@@ -58,6 +425,13 @@ class PublicProcessorTimeoutError extends Error {
58
425
  this.name = 'PublicProcessorTimeoutError';
59
426
  }
60
427
  }
428
+ _dec = trackSpan('PublicProcessor.processTx', (tx)=>({
429
+ [Attributes.TX_HASH]: tx.getTxHash().toString()
430
+ })), _dec1 = trackSpan('PublicProcessor.processPrivateOnlyTx', (tx)=>({
431
+ [Attributes.TX_HASH]: tx.getTxHash().toString()
432
+ })), _dec2 = trackSpan('PublicProcessor.processTxWithPublicCalls', (tx)=>({
433
+ [Attributes.TX_HASH]: tx.getTxHash().toString()
434
+ }));
61
435
  /**
62
436
  * Converts Txs lifted from the P2P module into ProcessedTx objects by executing
63
437
  * any public function calls in them. Txs with private calls only are unaffected.
@@ -69,6 +443,25 @@ class PublicProcessorTimeoutError extends Error {
69
443
  dateProvider;
70
444
  log;
71
445
  opts;
446
+ static{
447
+ ({ e: [_initProto] } = _apply_decs_2203_r(this, [
448
+ [
449
+ _dec,
450
+ 2,
451
+ "processTx"
452
+ ],
453
+ [
454
+ _dec1,
455
+ 2,
456
+ "processPrivateOnlyTx"
457
+ ],
458
+ [
459
+ _dec2,
460
+ 2,
461
+ "processTxWithPublicCalls"
462
+ ]
463
+ ], []));
464
+ }
72
465
  metrics;
73
466
  constructor(globalVariables, guardedMerkleTree, contractsDB, publicTxSimulator, dateProvider, telemetryClient = getTelemetryClient(), log = createLogger('simulator:public-processor'), opts = {}){
74
467
  this.globalVariables = globalVariables;
@@ -78,6 +471,7 @@ class PublicProcessorTimeoutError extends Error {
78
471
  this.dateProvider = dateProvider;
79
472
  this.log = log;
80
473
  this.opts = opts;
474
+ _initProto(this);
81
475
  this.metrics = new PublicProcessorMetrics(telemetryClient, 'PublicProcessor');
82
476
  }
83
477
  get tracer() {
@@ -101,7 +495,7 @@ class PublicProcessorTimeoutError extends Error {
101
495
  let totalPublicGas = new Gas(0, 0);
102
496
  let totalBlockGas = new Gas(0, 0);
103
497
  let totalBlobFields = 0;
104
- for await (const origTx of txs){
498
+ for await (const tx of txs){
105
499
  // Only process up to the max tx limit
106
500
  if (maxTransactions !== undefined && result.length >= maxTransactions) {
107
501
  this.log.debug(`Stopping tx processing due to reaching the max tx limit.`);
@@ -113,8 +507,8 @@ class PublicProcessorTimeoutError extends Error {
113
507
  break;
114
508
  }
115
509
  // Skip this tx if it'd exceed max block size
116
- const txHash = origTx.getTxHash().toString();
117
- const preTxSizeInBytes = origTx.getEstimatedPrivateTxEffectsSize();
510
+ const txHash = tx.getTxHash().toString();
511
+ const preTxSizeInBytes = tx.getEstimatedPrivateTxEffectsSize();
118
512
  if (maxBlockSize !== undefined && totalSizeInBytes + preTxSizeInBytes > maxBlockSize) {
119
513
  this.log.warn(`Skipping processing of tx ${txHash} sized ${preTxSizeInBytes} bytes due to block size limit`, {
120
514
  txHash,
@@ -125,7 +519,7 @@ class PublicProcessorTimeoutError extends Error {
125
519
  continue;
126
520
  }
127
521
  // Skip this tx if its gas limit would exceed the block gas limit
128
- const txGasLimit = origTx.data.constants.txContext.gasSettings.gasLimits;
522
+ const txGasLimit = tx.data.constants.txContext.gasSettings.gasLimits;
129
523
  if (maxBlockGas !== undefined && totalBlockGas.add(txGasLimit).gtAny(maxBlockGas)) {
130
524
  this.log.warn(`Skipping processing of tx ${txHash} due to block gas limit`, {
131
525
  txHash,
@@ -135,8 +529,6 @@ class PublicProcessorTimeoutError extends Error {
135
529
  });
136
530
  continue;
137
531
  }
138
- // The processor modifies the tx objects in place, so we need to clone them.
139
- const tx = Tx.clone(origTx);
140
532
  // We validate the tx before processing it, to avoid unnecessary work.
141
533
  if (preprocessValidator) {
142
534
  const result = await preprocessValidator.validateTx(tx);
@@ -169,6 +561,11 @@ class PublicProcessorTimeoutError extends Error {
169
561
  this.contractsDB.createCheckpoint();
170
562
  try {
171
563
  const [processedTx, returnValues] = await this.processTx(tx, deadline);
564
+ // Inject a fake processing failure after N txs if requested
565
+ const fakeThrowAfter = this.opts.fakeThrowAfterProcessingTxCount;
566
+ if (fakeThrowAfter !== undefined && result.length + failed.length + 1 >= fakeThrowAfter) {
567
+ throw new Error(`Fake error after processing ${fakeThrowAfter} txs`);
568
+ }
172
569
  const txBlobFields = processedTx.txEffect.getNumBlobFields();
173
570
  // If the actual size of this tx would exceed block size, skip it
174
571
  const txSize = txBlobFields * Fr.SIZE_IN_BYTES;
@@ -211,7 +608,14 @@ class PublicProcessorTimeoutError extends Error {
211
608
  if (err?.name === 'PublicProcessorTimeoutError') {
212
609
  this.log.warn(`Stopping tx processing due to timeout.`);
213
610
  // We hit the transaction execution deadline.
214
- // There may still be a transaction executing. We stop the guarded fork to prevent any further access to the world state.
611
+ // There may still be a transaction executing on a worker thread (C++ via NAPI).
612
+ // Signal cancellation AND WAIT for the simulation to actually stop.
613
+ // This is critical because C++ might be in the middle of a slow operation (e.g., pad_trees)
614
+ // and won't check the cancellation flag until that operation completes.
615
+ // Without waiting, we'd proceed to revert checkpoints while C++ is still writing to state.
616
+ // Wait for C++ to stop gracefully.
617
+ await this.publicTxSimulator.cancel?.();
618
+ // Now stop the guarded fork to prevent any further TS-side access to the world state.
215
619
  await this.guardedMerkleTree.stop();
216
620
  // We now know there can't be any further access to world state. The fork is in a state where there is:
217
621
  // 1. At least one outstanding checkpoint that has not been committed (the one created before we processed the tx).
@@ -408,18 +812,3 @@ class PublicProcessorTimeoutError extends Error {
408
812
  };
409
813
  }
410
814
  }
411
- _ts_decorate([
412
- trackSpan('PublicProcessor.processTx', (tx)=>({
413
- [Attributes.TX_HASH]: tx.getTxHash().toString()
414
- }))
415
- ], PublicProcessor.prototype, "processTx", null);
416
- _ts_decorate([
417
- trackSpan('PublicProcessor.processPrivateOnlyTx', (tx)=>({
418
- [Attributes.TX_HASH]: tx.getTxHash().toString()
419
- }))
420
- ], PublicProcessor.prototype, "processPrivateOnlyTx", null);
421
- _ts_decorate([
422
- trackSpan('PublicProcessor.processTxWithPublicCalls', (tx)=>({
423
- [Attributes.TX_HASH]: tx.getTxHash().toString()
424
- }))
425
- ], PublicProcessor.prototype, "processTxWithPublicCalls", null);
@@ -15,4 +15,4 @@ export declare class ContractProviderForCpp implements ContractProvider {
15
15
  commitCheckpoint: () => Promise<void>;
16
16
  revertCheckpoint: () => Promise<void>;
17
17
  }
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udHJhY3RfcHJvdmlkZXJfZm9yX2NwcC5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3B1YmxpYy9wdWJsaWNfdHhfc2ltdWxhdG9yL2NvbnRyYWN0X3Byb3ZpZGVyX2Zvcl9jcHAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxLQUFLLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFLdEQsT0FBTyxLQUFLLEVBQUUsZUFBZSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFFeEQsT0FBTyxLQUFLLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUVqRSxxQkFBYSxzQkFBdUIsWUFBVyxnQkFBZ0I7SUFJM0QsT0FBTyxDQUFDLFdBQVc7SUFDbkIsT0FBTyxDQUFDLGVBQWU7SUFKekIsT0FBTyxDQUFDLEdBQUcsQ0FBK0Q7SUFFMUUsWUFDVSxXQUFXLEVBQUUsaUJBQWlCLEVBQzlCLGVBQWUsRUFBRSxlQUFlLEVBQ3RDO0lBRUcsbUJBQW1CLG9FQWF4QjtJQUVLLGdCQUFnQixvRUFlckI7SUFFSyxZQUFZLDJFQVdqQjtJQUVLLHFCQUFxQixvRUFnQjFCO0lBRUssb0JBQW9CLHFFQWlCekI7SUFFSyxnQkFBZ0Isc0JBR3JCO0lBRUssZ0JBQWdCLHNCQUdyQjtJQUVLLGdCQUFnQixzQkFHckI7Q0FDSCJ9
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udHJhY3RfcHJvdmlkZXJfZm9yX2NwcC5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3B1YmxpYy9wdWJsaWNfdHhfc2ltdWxhdG9yL2NvbnRyYWN0X3Byb3ZpZGVyX2Zvcl9jcHAudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxLQUFLLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFLdEQsT0FBTyxLQUFLLEVBQUUsZUFBZSxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFFeEQsT0FBTyxLQUFLLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUVqRSxxQkFBYSxzQkFBdUIsWUFBVyxnQkFBZ0I7SUFJM0QsT0FBTyxDQUFDLFdBQVc7SUFDbkIsT0FBTyxDQUFDLGVBQWU7SUFKekIsT0FBTyxDQUFDLEdBQUcsQ0FBK0Q7SUFFMUUsWUFDVSxXQUFXLEVBQUUsaUJBQWlCLEVBQzlCLGVBQWUsRUFBRSxlQUFlLEVBQ3RDO0lBRUcsbUJBQW1CLG9FQWF4QjtJQUVLLGdCQUFnQixvRUFlckI7SUFFSyxZQUFZLDJFQVdqQjtJQUVLLHFCQUFxQixvRUFnQjFCO0lBRUssb0JBQW9CLHFFQXNCekI7SUFFSyxnQkFBZ0Isc0JBR3JCO0lBRUssZ0JBQWdCLHNCQUdyQjtJQUVLLGdCQUFnQixzQkFHckI7Q0FDSCJ9
@@ -1 +1 @@
1
- {"version":3,"file":"contract_provider_for_cpp.d.ts","sourceRoot":"","sources":["../../../src/public/public_tx_simulator/contract_provider_for_cpp.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAKtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAExD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAEjE,qBAAa,sBAAuB,YAAW,gBAAgB;IAI3D,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,eAAe;IAJzB,OAAO,CAAC,GAAG,CAA+D;IAE1E,YACU,WAAW,EAAE,iBAAiB,EAC9B,eAAe,EAAE,eAAe,EACtC;IAEG,mBAAmB,oEAaxB;IAEK,gBAAgB,oEAerB;IAEK,YAAY,2EAWjB;IAEK,qBAAqB,oEAgB1B;IAEK,oBAAoB,qEAiBzB;IAEK,gBAAgB,sBAGrB;IAEK,gBAAgB,sBAGrB;IAEK,gBAAgB,sBAGrB;CACH"}
1
+ {"version":3,"file":"contract_provider_for_cpp.d.ts","sourceRoot":"","sources":["../../../src/public/public_tx_simulator/contract_provider_for_cpp.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAKtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAExD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAEjE,qBAAa,sBAAuB,YAAW,gBAAgB;IAI3D,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,eAAe;IAJzB,OAAO,CAAC,GAAG,CAA+D;IAE1E,YACU,WAAW,EAAE,iBAAiB,EAC9B,eAAe,EAAE,eAAe,EACtC;IAEG,mBAAmB,oEAaxB;IAEK,gBAAgB,oEAerB;IAEK,YAAY,2EAWjB;IAEK,qBAAqB,oEAgB1B;IAEK,oBAAoB,qEAsBzB;IAEK,gBAAgB,sBAGrB;IAEK,gBAAgB,sBAGrB;IAEK,gBAAgB,sBAGrB;CACH"}
@@ -13,7 +13,7 @@ export class ContractProviderForCpp {
13
13
  this.globalVariables = globalVariables;
14
14
  this.log = createLogger('simulator:contract_provider_for_cpp');
15
15
  this.getContractInstance = async (address)=>{
16
- this.log.debug(`Contract provider callback: getContractInstance(${address})`);
16
+ this.log.trace(`Contract provider callback: getContractInstance(${address})`);
17
17
  const aztecAddr = AztecAddress.fromString(address);
18
18
  const instance = await this.contractsDB.getContractInstance(aztecAddr, this.globalVariables.timestamp);
19
19
  if (!instance) {
@@ -23,7 +23,7 @@ export class ContractProviderForCpp {
23
23
  return serializeWithMessagePack(instance);
24
24
  };
25
25
  this.getContractClass = async (classId)=>{
26
- this.log.debug(`Contract provider callback: getContractClass(${classId})`);
26
+ this.log.trace(`Contract provider callback: getContractClass(${classId})`);
27
27
  // Parse classId string to Fr
28
28
  const classIdFr = Fr.fromString(classId);
29
29
  // Fetch contract class from the contracts DB
@@ -35,16 +35,16 @@ export class ContractProviderForCpp {
35
35
  return serializeWithMessagePack(contractClass);
36
36
  };
37
37
  this.addContracts = async (contractDeploymentDataBuffer)=>{
38
- this.log.debug(`Contract provider callback: addContracts`);
38
+ this.log.trace(`Contract provider callback: addContracts`);
39
39
  const rawData = deserializeFromMessagePack(contractDeploymentDataBuffer);
40
40
  // Construct ContractDeploymentData from plain object.
41
41
  const contractDeploymentData = ContractDeploymentData.fromPlainObject(rawData);
42
42
  // Add contracts to the contracts DB
43
- this.log.debug(`Calling contractsDB.addContracts`);
43
+ this.log.trace(`Calling contractsDB.addContracts`);
44
44
  await this.contractsDB.addContracts(contractDeploymentData);
45
45
  };
46
46
  this.getBytecodeCommitment = async (classId)=>{
47
- this.log.debug(`Contract provider callback: getBytecodeCommitment(${classId})`);
47
+ this.log.trace(`Contract provider callback: getBytecodeCommitment(${classId})`);
48
48
  // Parse classId string to Fr
49
49
  const classIdFr = Fr.fromString(classId);
50
50
  // Fetch bytecode commitment from the contracts DB
@@ -57,29 +57,33 @@ export class ContractProviderForCpp {
57
57
  return serializeWithMessagePack(commitment);
58
58
  };
59
59
  this.getDebugFunctionName = async (address, selector)=>{
60
- this.log.debug(`Contract provider callback: getDebugFunctionName(${address}, ${selector})`);
60
+ this.log.trace(`Contract provider callback: getDebugFunctionName(${address}, ${selector})`);
61
61
  // Parse address and selector strings
62
62
  const aztecAddr = AztecAddress.fromString(address);
63
63
  const selectorFr = Fr.fromString(selector);
64
- const functionSelector = FunctionSelector.fromField(selectorFr);
64
+ const functionSelector = FunctionSelector.fromFieldOrUndefined(selectorFr);
65
+ if (!functionSelector) {
66
+ this.log.trace(`calldata[0] is not a function selector: ${selector}`);
67
+ return undefined;
68
+ }
65
69
  // Fetch debug function name from the contracts DB
66
70
  const name = await this.contractsDB.getDebugFunctionName(aztecAddr, functionSelector);
67
71
  if (!name) {
68
- this.log.debug(`Debug function name not found for ${address}:${selector}`);
72
+ this.log.trace(`Debug function name not found for ${address}:${selector}`);
69
73
  return undefined;
70
74
  }
71
75
  return name;
72
76
  };
73
77
  this.createCheckpoint = ()=>{
74
- this.log.debug(`Contract provider callback: createCheckpoint`);
78
+ this.log.trace(`Contract provider callback: createCheckpoint`);
75
79
  return Promise.resolve(this.contractsDB.createCheckpoint());
76
80
  };
77
81
  this.commitCheckpoint = ()=>{
78
- this.log.debug(`Contract provider callback: commitCheckpoint`);
82
+ this.log.trace(`Contract provider callback: commitCheckpoint`);
79
83
  return Promise.resolve(this.contractsDB.commitCheckpoint());
80
84
  };
81
85
  this.revertCheckpoint = ()=>{
82
- this.log.debug(`Contract provider callback: revertCheckpoint`);
86
+ this.log.trace(`Contract provider callback: revertCheckpoint`);
83
87
  return Promise.resolve(this.contractsDB.revertCheckpoint());
84
88
  };
85
89
  }
@@ -14,6 +14,10 @@ import type { MeasuredPublicTxSimulatorInterface, PublicTxSimulatorInterface } f
14
14
  */
15
15
  export declare class CppPublicTxSimulator extends PublicTxSimulator implements PublicTxSimulatorInterface {
16
16
  protected log: Logger;
17
+ /** Current cancellation token for in-flight simulation. */
18
+ private cancellationToken?;
19
+ /** Current simulation promise, used to wait for completion after cancellation. */
20
+ private simulationPromise?;
17
21
  constructor(merkleTree: MerkleTreeWriteOperations, contractsDB: PublicContractsDB, globalVariables: GlobalVariables, config?: Partial<PublicSimulatorConfig>);
18
22
  /**
19
23
  * Simulate a transaction's public portion using the C++ avvm simulator.
@@ -22,6 +26,17 @@ export declare class CppPublicTxSimulator extends PublicTxSimulator implements P
22
26
  * @returns The result of the transaction's public execution.
23
27
  */
24
28
  simulate(tx: Tx): Promise<PublicTxResult>;
29
+ /**
30
+ * Cancel the current simulation if one is in progress.
31
+ * This signals the C++ simulator to stop at the next opcode or before the next WorldState write.
32
+ * Safe to call even if no simulation is in progress.
33
+ *
34
+ * @param waitTimeoutMs - If provided, wait up to this many ms for the simulation to actually stop.
35
+ * This is important because C++ might be in the middle of a slow operation
36
+ * (e.g., pad_trees) and won't check the cancellation flag until it completes.
37
+ * Default timeout of 100ms after cancellation.
38
+ */
39
+ cancel(waitTimeoutMs?: number): Promise<void>;
25
40
  }
26
41
  export declare class MeasuredCppPublicTxSimulator extends CppPublicTxSimulator implements MeasuredPublicTxSimulatorInterface {
27
42
  protected readonly metrics: ExecutorMetricsInterface;
@@ -35,4 +50,4 @@ export declare class TelemetryCppPublicTxSimulator extends MeasuredCppPublicTxSi
35
50
  readonly tracer: Tracer;
36
51
  constructor(merkleTree: MerkleTreeWriteOperations, contractsDB: PublicContractsDB, globalVariables: GlobalVariables, telemetryClient?: TelemetryClient, config?: Partial<PublicSimulatorConfig>);
37
52
  }
38
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3BwX3B1YmxpY190eF9zaW11bGF0b3IuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wdWJsaWMvcHVibGljX3R4X3NpbXVsYXRvci9jcHBfcHVibGljX3R4X3NpbXVsYXRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsS0FBSyxNQUFNLEVBQTBCLE1BQU0sdUJBQXVCLENBQUM7QUFHNUUsT0FBTyxFQUdMLEtBQUsscUJBQXFCLEVBQzFCLGNBQWMsRUFFZixNQUFNLG1CQUFtQixDQUFDO0FBRTNCLE9BQU8sS0FBSyxFQUFFLHlCQUF5QixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDckUsT0FBTyxLQUFLLEVBQUUsZUFBZSxFQUFFLEVBQUUsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBRTVELE9BQU8sRUFBRSxLQUFLLGVBQWUsRUFBRSxLQUFLLE1BQU0sRUFBc0IsTUFBTSx5QkFBeUIsQ0FBQztBQUtoRyxPQUFPLEtBQUssRUFBRSx3QkFBd0IsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQ2pGLE9BQU8sS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFFakUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDN0QsT0FBTyxLQUFLLEVBQ1Ysa0NBQWtDLEVBQ2xDLDBCQUEwQixFQUMzQixNQUFNLG9DQUFvQyxDQUFDO0FBRTVDOzs7O0dBSUc7QUFDSCxxQkFBYSxvQkFBcUIsU0FBUSxpQkFBa0IsWUFBVywwQkFBMEI7SUFDL0YsVUFBbUIsR0FBRyxFQUFFLE1BQU0sQ0FBQztJQUUvQixZQUNFLFVBQVUsRUFBRSx5QkFBeUIsRUFDckMsV0FBVyxFQUFFLGlCQUFpQixFQUM5QixlQUFlLEVBQUUsZUFBZSxFQUNoQyxNQUFNLENBQUMsRUFBRSxPQUFPLENBQUMscUJBQXFCLENBQUMsRUFJeEM7SUFFRDs7Ozs7T0FLRztJQUNtQixRQUFRLENBQUMsRUFBRSxFQUFFLEVBQUUsR0FBRyxPQUFPLENBQUMsY0FBYyxDQUFDLENBMEQ5RDtDQUNGO0FBRUQscUJBQWEsNEJBQTZCLFNBQVEsb0JBQXFCLFlBQVcsa0NBQWtDO0lBS2hILFNBQVMsQ0FBQyxRQUFRLENBQUMsT0FBTyxFQUFFLHdCQUF3QjtJQUp0RCxZQUNFLFVBQVUsRUFBRSx5QkFBeUIsRUFDckMsV0FBVyxFQUFFLGlCQUFpQixFQUM5QixlQUFlLEVBQUUsZUFBZSxFQUNiLE9BQU8sRUFBRSx3QkFBd0IsRUFDcEQsTUFBTSxDQUFDLEVBQUUsT0FBTyxDQUFDLHFCQUFxQixDQUFDLEVBR3hDO0lBRXFCLFFBQVEsQ0FBQyxFQUFFLEVBQUUsRUFBRSxFQUFFLE9BQU8sR0FBRSxNQUFzQixHQUFHLE9BQU8sQ0FBQyxjQUFjLENBQUMsQ0FTL0Y7Q0FDRjtBQUVEOztHQUVHO0FBQ0gscUJBQWEsNkJBQThCLFNBQVEsNEJBQTRCO0lBRTdFLFNBQWdCLE1BQU0sRUFBRSxNQUFNLENBQUM7SUFFL0IsWUFDRSxVQUFVLEVBQUUseUJBQXlCLEVBQ3JDLFdBQVcsRUFBRSxpQkFBaUIsRUFDOUIsZUFBZSxFQUFFLGVBQWUsRUFDaEMsZUFBZSxHQUFFLGVBQXNDLEVBQ3ZELE1BQU0sQ0FBQyxFQUFFLE9BQU8sQ0FBQyxxQkFBcUIsQ0FBQyxFQUt4QztDQUNGIn0=
53
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3BwX3B1YmxpY190eF9zaW11bGF0b3IuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9wdWJsaWMvcHVibGljX3R4X3NpbXVsYXRvci9jcHBfcHVibGljX3R4X3NpbXVsYXRvci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsS0FBSyxNQUFNLEVBQTBCLE1BQU0sdUJBQXVCLENBQUM7QUFJNUUsT0FBTyxFQUdMLEtBQUsscUJBQXFCLEVBQzFCLGNBQWMsRUFFZixNQUFNLG1CQUFtQixDQUFDO0FBRTNCLE9BQU8sS0FBSyxFQUFFLHlCQUF5QixFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDckUsT0FBTyxLQUFLLEVBQUUsZUFBZSxFQUFFLEVBQUUsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBRTVELE9BQU8sRUFBRSxLQUFLLGVBQWUsRUFBRSxLQUFLLE1BQU0sRUFBc0IsTUFBTSx5QkFBeUIsQ0FBQztBQUtoRyxPQUFPLEtBQUssRUFBRSx3QkFBd0IsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQ2pGLE9BQU8sS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFFakUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDN0QsT0FBTyxLQUFLLEVBQ1Ysa0NBQWtDLEVBQ2xDLDBCQUEwQixFQUMzQixNQUFNLG9DQUFvQyxDQUFDO0FBRTVDOzs7O0dBSUc7QUFDSCxxQkFBYSxvQkFBcUIsU0FBUSxpQkFBa0IsWUFBVywwQkFBMEI7SUFDL0YsVUFBbUIsR0FBRyxFQUFFLE1BQU0sQ0FBQztJQUMvQiwyREFBMkQ7SUFDM0QsT0FBTyxDQUFDLGlCQUFpQixDQUFDLENBQW9CO0lBQzlDLGtGQUFrRjtJQUNsRixPQUFPLENBQUMsaUJBQWlCLENBQUMsQ0FBa0I7SUFFNUMsWUFDRSxVQUFVLEVBQUUseUJBQXlCLEVBQ3JDLFdBQVcsRUFBRSxpQkFBaUIsRUFDOUIsZUFBZSxFQUFFLGVBQWUsRUFDaEMsTUFBTSxDQUFDLEVBQUUsT0FBTyxDQUFDLHFCQUFxQixDQUFDLEVBSXhDO0lBRUQ7Ozs7O09BS0c7SUFDbUIsUUFBUSxDQUFDLEVBQUUsRUFBRSxFQUFFLEdBQUcsT0FBTyxDQUFDLGNBQWMsQ0FBQyxDQXVFOUQ7SUFFRDs7Ozs7Ozs7O09BU0c7SUFDVSxNQUFNLENBQUMsYUFBYSxHQUFFLE1BQVksR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLENBZTlEO0NBQ0Y7QUFFRCxxQkFBYSw0QkFBNkIsU0FBUSxvQkFBcUIsWUFBVyxrQ0FBa0M7SUFLaEgsU0FBUyxDQUFDLFFBQVEsQ0FBQyxPQUFPLEVBQUUsd0JBQXdCO0lBSnRELFlBQ0UsVUFBVSxFQUFFLHlCQUF5QixFQUNyQyxXQUFXLEVBQUUsaUJBQWlCLEVBQzlCLGVBQWUsRUFBRSxlQUFlLEVBQ2IsT0FBTyxFQUFFLHdCQUF3QixFQUNwRCxNQUFNLENBQUMsRUFBRSxPQUFPLENBQUMscUJBQXFCLENBQUMsRUFHeEM7SUFFcUIsUUFBUSxDQUFDLEVBQUUsRUFBRSxFQUFFLEVBQUUsT0FBTyxHQUFFLE1BQXNCLEdBQUcsT0FBTyxDQUFDLGNBQWMsQ0FBQyxDQVMvRjtDQUNGO0FBRUQ7O0dBRUc7QUFDSCxxQkFBYSw2QkFBOEIsU0FBUSw0QkFBNEI7SUFFN0UsU0FBZ0IsTUFBTSxFQUFFLE1BQU0sQ0FBQztJQUUvQixZQUNFLFVBQVUsRUFBRSx5QkFBeUIsRUFDckMsV0FBVyxFQUFFLGlCQUFpQixFQUM5QixlQUFlLEVBQUUsZUFBZSxFQUNoQyxlQUFlLEdBQUUsZUFBc0MsRUFDdkQsTUFBTSxDQUFDLEVBQUUsT0FBTyxDQUFDLHFCQUFxQixDQUFDLEVBS3hDO0NBQ0YifQ==
@@ -1 +1 @@
1
- {"version":3,"file":"cpp_public_tx_simulator.d.ts","sourceRoot":"","sources":["../../../src/public/public_tx_simulator/cpp_public_tx_simulator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAA0B,MAAM,uBAAuB,CAAC;AAG5E,OAAO,EAGL,KAAK,qBAAqB,EAC1B,cAAc,EAEf,MAAM,mBAAmB,CAAC;AAE3B,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,KAAK,EAAE,eAAe,EAAE,EAAE,EAAE,MAAM,kBAAkB,CAAC;AAE5D,OAAO,EAAE,KAAK,eAAe,EAAE,KAAK,MAAM,EAAsB,MAAM,yBAAyB,CAAC;AAKhG,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAEjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,KAAK,EACV,kCAAkC,EAClC,0BAA0B,EAC3B,MAAM,oCAAoC,CAAC;AAE5C;;;;GAIG;AACH,qBAAa,oBAAqB,SAAQ,iBAAkB,YAAW,0BAA0B;IAC/F,UAAmB,GAAG,EAAE,MAAM,CAAC;IAE/B,YACE,UAAU,EAAE,yBAAyB,EACrC,WAAW,EAAE,iBAAiB,EAC9B,eAAe,EAAE,eAAe,EAChC,MAAM,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,EAIxC;IAED;;;;;OAKG;IACmB,QAAQ,CAAC,EAAE,EAAE,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CA0D9D;CACF;AAED,qBAAa,4BAA6B,SAAQ,oBAAqB,YAAW,kCAAkC;IAKhH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,wBAAwB;IAJtD,YACE,UAAU,EAAE,yBAAyB,EACrC,WAAW,EAAE,iBAAiB,EAC9B,eAAe,EAAE,eAAe,EACb,OAAO,EAAE,wBAAwB,EACpD,MAAM,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,EAGxC;IAEqB,QAAQ,CAAC,EAAE,EAAE,EAAE,EAAE,OAAO,GAAE,MAAsB,GAAG,OAAO,CAAC,cAAc,CAAC,CAS/F;CACF;AAED;;GAEG;AACH,qBAAa,6BAA8B,SAAQ,4BAA4B;IAE7E,SAAgB,MAAM,EAAE,MAAM,CAAC;IAE/B,YACE,UAAU,EAAE,yBAAyB,EACrC,WAAW,EAAE,iBAAiB,EAC9B,eAAe,EAAE,eAAe,EAChC,eAAe,GAAE,eAAsC,EACvD,MAAM,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,EAKxC;CACF"}
1
+ {"version":3,"file":"cpp_public_tx_simulator.d.ts","sourceRoot":"","sources":["../../../src/public/public_tx_simulator/cpp_public_tx_simulator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAA0B,MAAM,uBAAuB,CAAC;AAI5E,OAAO,EAGL,KAAK,qBAAqB,EAC1B,cAAc,EAEf,MAAM,mBAAmB,CAAC;AAE3B,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,KAAK,EAAE,eAAe,EAAE,EAAE,EAAE,MAAM,kBAAkB,CAAC;AAE5D,OAAO,EAAE,KAAK,eAAe,EAAE,KAAK,MAAM,EAAsB,MAAM,yBAAyB,CAAC;AAKhG,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kCAAkC,CAAC;AACjF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAEjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC7D,OAAO,KAAK,EACV,kCAAkC,EAClC,0BAA0B,EAC3B,MAAM,oCAAoC,CAAC;AAE5C;;;;GAIG;AACH,qBAAa,oBAAqB,SAAQ,iBAAkB,YAAW,0BAA0B;IAC/F,UAAmB,GAAG,EAAE,MAAM,CAAC;IAC/B,2DAA2D;IAC3D,OAAO,CAAC,iBAAiB,CAAC,CAAoB;IAC9C,kFAAkF;IAClF,OAAO,CAAC,iBAAiB,CAAC,CAAkB;IAE5C,YACE,UAAU,EAAE,yBAAyB,EACrC,WAAW,EAAE,iBAAiB,EAC9B,eAAe,EAAE,eAAe,EAChC,MAAM,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,EAIxC;IAED;;;;;OAKG;IACmB,QAAQ,CAAC,EAAE,EAAE,EAAE,GAAG,OAAO,CAAC,cAAc,CAAC,CAuE9D;IAED;;;;;;;;;OASG;IACU,MAAM,CAAC,aAAa,GAAE,MAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAe9D;CACF;AAED,qBAAa,4BAA6B,SAAQ,oBAAqB,YAAW,kCAAkC;IAKhH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,wBAAwB;IAJtD,YACE,UAAU,EAAE,yBAAyB,EACrC,WAAW,EAAE,iBAAiB,EAC9B,eAAe,EAAE,eAAe,EACb,OAAO,EAAE,wBAAwB,EACpD,MAAM,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,EAGxC;IAEqB,QAAQ,CAAC,EAAE,EAAE,EAAE,EAAE,OAAO,GAAE,MAAsB,GAAG,OAAO,CAAC,cAAc,CAAC,CAS/F;CACF;AAED;;GAEG;AACH,qBAAa,6BAA8B,SAAQ,4BAA4B;IAE7E,SAAgB,MAAM,EAAE,MAAM,CAAC;IAE/B,YACE,UAAU,EAAE,yBAAyB,EACrC,WAAW,EAAE,iBAAiB,EAC9B,eAAe,EAAE,eAAe,EAChC,eAAe,GAAE,eAAsC,EACvD,MAAM,CAAC,EAAE,OAAO,CAAC,qBAAqB,CAAC,EAKxC;CACF"}