@pimlico/alto 0.0.6 → 0.0.7

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 (117) hide show
  1. package/esm/cli/config/bundler.d.ts +52 -34
  2. package/esm/cli/config/bundler.js +12 -1
  3. package/esm/cli/config/bundler.js.map +1 -1
  4. package/esm/cli/config/options.d.ts +2 -1
  5. package/esm/cli/config/options.js +14 -0
  6. package/esm/cli/config/options.js.map +1 -1
  7. package/esm/cli/setupServer.js +2 -2
  8. package/esm/cli/setupServer.js.map +1 -1
  9. package/esm/executor/executorManager.js +13 -3
  10. package/esm/executor/executorManager.js.map +1 -1
  11. package/esm/handlers/gasPriceManager.d.ts +14 -0
  12. package/esm/handlers/gasPriceManager.js +71 -1
  13. package/esm/handlers/gasPriceManager.js.map +1 -1
  14. package/esm/rpc/estimation/gasEstimationHandler.d.ts +24 -0
  15. package/esm/rpc/estimation/gasEstimationHandler.js +64 -0
  16. package/esm/rpc/estimation/gasEstimationHandler.js.map +1 -0
  17. package/esm/rpc/estimation/gasEstimationsV06.d.ts +19 -0
  18. package/esm/rpc/estimation/gasEstimationsV06.js +115 -0
  19. package/esm/rpc/estimation/gasEstimationsV06.js.map +1 -0
  20. package/esm/rpc/estimation/gasEstimationsV07.d.ts +93 -0
  21. package/esm/rpc/estimation/gasEstimationsV07.js +417 -0
  22. package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -0
  23. package/esm/rpc/estimation/types.d.ts +113 -0
  24. package/esm/rpc/estimation/types.js +122 -0
  25. package/esm/rpc/estimation/types.js.map +1 -0
  26. package/esm/rpc/rpcHandler.js +11 -7
  27. package/esm/rpc/rpcHandler.js.map +1 -1
  28. package/esm/rpc/server.js +2 -3
  29. package/esm/rpc/server.js.map +1 -1
  30. package/esm/rpc/validation/SafeValidator.d.ts +1 -1
  31. package/esm/rpc/validation/SafeValidator.js +6 -7
  32. package/esm/rpc/validation/SafeValidator.js.map +1 -1
  33. package/esm/rpc/validation/UnsafeValidator.d.ts +4 -6
  34. package/esm/rpc/validation/UnsafeValidator.js +25 -17
  35. package/esm/rpc/validation/UnsafeValidator.js.map +1 -1
  36. package/esm/types/contracts/EntryPointSimulations.d.ts +1369 -143
  37. package/esm/types/contracts/EntryPointSimulations.js +196 -372
  38. package/esm/types/contracts/EntryPointSimulations.js.map +1 -1
  39. package/esm/types/contracts/IAccountExecute.d.ts +53 -0
  40. package/esm/types/contracts/IAccountExecute.js +68 -0
  41. package/esm/types/contracts/IAccountExecute.js.map +1 -0
  42. package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -1
  43. package/esm/types/contracts/PimlicoEntryPointSimulations.js +1 -1
  44. package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
  45. package/esm/types/interfaces.d.ts +1 -1
  46. package/esm/types/schemas.d.ts +68 -68
  47. package/esm/utils/validation.d.ts +1 -1
  48. package/esm/utils/validation.js +19 -7
  49. package/esm/utils/validation.js.map +1 -1
  50. package/lib/cli/config/bundler.d.ts +52 -34
  51. package/lib/cli/config/bundler.js +13 -2
  52. package/lib/cli/config/bundler.js.map +1 -1
  53. package/lib/cli/config/options.d.ts +2 -1
  54. package/lib/cli/config/options.js +15 -1
  55. package/lib/cli/config/options.js.map +1 -1
  56. package/lib/cli/setupServer.js +2 -2
  57. package/lib/cli/setupServer.js.map +1 -1
  58. package/lib/executor/executorManager.js +13 -3
  59. package/lib/executor/executorManager.js.map +1 -1
  60. package/lib/handlers/gasPriceManager.d.ts +14 -0
  61. package/lib/handlers/gasPriceManager.js +70 -0
  62. package/lib/handlers/gasPriceManager.js.map +1 -1
  63. package/lib/rpc/estimation/gasEstimationHandler.d.ts +24 -0
  64. package/lib/rpc/estimation/gasEstimationHandler.js +68 -0
  65. package/lib/rpc/estimation/gasEstimationHandler.js.map +1 -0
  66. package/lib/rpc/estimation/gasEstimationsV06.d.ts +19 -0
  67. package/lib/rpc/estimation/gasEstimationsV06.js +119 -0
  68. package/lib/rpc/estimation/gasEstimationsV06.js.map +1 -0
  69. package/lib/rpc/estimation/gasEstimationsV07.d.ts +93 -0
  70. package/lib/rpc/estimation/gasEstimationsV07.js +423 -0
  71. package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -0
  72. package/lib/rpc/estimation/types.d.ts +113 -0
  73. package/lib/rpc/estimation/types.js +125 -0
  74. package/lib/rpc/estimation/types.js.map +1 -0
  75. package/lib/rpc/rpcHandler.js +10 -6
  76. package/lib/rpc/rpcHandler.js.map +1 -1
  77. package/lib/rpc/server.js +2 -3
  78. package/lib/rpc/server.js.map +1 -1
  79. package/lib/rpc/validation/SafeValidator.d.ts +1 -1
  80. package/lib/rpc/validation/SafeValidator.js +7 -8
  81. package/lib/rpc/validation/SafeValidator.js.map +1 -1
  82. package/lib/rpc/validation/UnsafeValidator.d.ts +4 -6
  83. package/lib/rpc/validation/UnsafeValidator.js +25 -17
  84. package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
  85. package/lib/types/contracts/EntryPointSimulations.d.ts +1369 -143
  86. package/lib/types/contracts/EntryPointSimulations.js +196 -372
  87. package/lib/types/contracts/EntryPointSimulations.js.map +1 -1
  88. package/lib/types/contracts/IAccountExecute.d.ts +53 -0
  89. package/lib/types/contracts/IAccountExecute.js +71 -0
  90. package/lib/types/contracts/IAccountExecute.js.map +1 -0
  91. package/lib/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -1
  92. package/lib/types/contracts/PimlicoEntryPointSimulations.js +1 -1
  93. package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
  94. package/lib/types/interfaces.d.ts +1 -1
  95. package/lib/types/schemas.d.ts +68 -68
  96. package/lib/utils/validation.d.ts +1 -1
  97. package/lib/utils/validation.js +18 -6
  98. package/lib/utils/validation.js.map +1 -1
  99. package/package.json +1 -1
  100. package/esm/rpc/EntryPointSimulationsV07.d.ts +0 -62
  101. package/esm/rpc/EntryPointSimulationsV07.js +0 -410
  102. package/esm/rpc/EntryPointSimulationsV07.js.map +0 -1
  103. package/esm/rpc/ExecuteSimulator.d.ts +0 -37
  104. package/esm/rpc/ExecuteSimulator.js +0 -48
  105. package/esm/rpc/ExecuteSimulator.js.map +0 -1
  106. package/esm/rpc/gasEstimation.d.ts +0 -17
  107. package/esm/rpc/gasEstimation.js +0 -419
  108. package/esm/rpc/gasEstimation.js.map +0 -1
  109. package/lib/rpc/EntryPointSimulationsV07.d.ts +0 -62
  110. package/lib/rpc/EntryPointSimulationsV07.js +0 -417
  111. package/lib/rpc/EntryPointSimulationsV07.js.map +0 -1
  112. package/lib/rpc/ExecuteSimulator.d.ts +0 -37
  113. package/lib/rpc/ExecuteSimulator.js +0 -51
  114. package/lib/rpc/ExecuteSimulator.js.map +0 -1
  115. package/lib/rpc/gasEstimation.d.ts +0 -17
  116. package/lib/rpc/gasEstimation.js +0 -426
  117. package/lib/rpc/gasEstimation.js.map +0 -1
@@ -400,59 +400,12 @@ exports.EntryPointV07SimulationsAbi = [
400
400
  },
401
401
  {
402
402
  type: "function",
403
- name: "simulateCallData",
403
+ name: "simulateCall",
404
404
  inputs: [
405
405
  {
406
- name: "op",
407
- type: "tuple",
408
- internalType: "struct PackedUserOperation",
409
- components: [
410
- {
411
- name: "sender",
412
- type: "address",
413
- internalType: "address"
414
- },
415
- {
416
- name: "nonce",
417
- type: "uint256",
418
- internalType: "uint256"
419
- },
420
- {
421
- name: "initCode",
422
- type: "bytes",
423
- internalType: "bytes"
424
- },
425
- {
426
- name: "callData",
427
- type: "bytes",
428
- internalType: "bytes"
429
- },
430
- {
431
- name: "accountGasLimits",
432
- type: "bytes32",
433
- internalType: "bytes32"
434
- },
435
- {
436
- name: "preVerificationGas",
437
- type: "uint256",
438
- internalType: "uint256"
439
- },
440
- {
441
- name: "gasFees",
442
- type: "bytes32",
443
- internalType: "bytes32"
444
- },
445
- {
446
- name: "paymasterAndData",
447
- type: "bytes",
448
- internalType: "bytes"
449
- },
450
- {
451
- name: "signature",
452
- type: "bytes",
453
- internalType: "bytes"
454
- }
455
- ]
406
+ name: "entryPoint",
407
+ type: "address",
408
+ internalType: "address"
456
409
  },
457
410
  {
458
411
  name: "target",
@@ -460,195 +413,214 @@ exports.EntryPointV07SimulationsAbi = [
460
413
  internalType: "address"
461
414
  },
462
415
  {
463
- name: "targetCallData",
416
+ name: "data",
464
417
  type: "bytes",
465
418
  internalType: "bytes"
419
+ },
420
+ {
421
+ name: "gas",
422
+ type: "uint256",
423
+ internalType: "uint256"
466
424
  }
467
425
  ],
468
426
  outputs: [
469
427
  {
470
- name: "",
471
- type: "tuple",
472
- internalType: "struct IEntryPointSimulations.TargetCallResult",
473
- components: [
474
- {
475
- name: "gasUsed",
476
- type: "uint256",
477
- internalType: "uint256"
478
- },
479
- {
480
- name: "success",
481
- type: "bool",
482
- internalType: "bool"
483
- },
484
- {
485
- name: "returnData",
486
- type: "bytes",
487
- internalType: "bytes"
488
- }
489
- ]
428
+ name: "success",
429
+ type: "bool",
430
+ internalType: "bool"
431
+ },
432
+ {
433
+ name: "result",
434
+ type: "bytes",
435
+ internalType: "bytes"
490
436
  }
491
437
  ],
492
438
  stateMutability: "nonpayable"
493
439
  },
494
440
  {
495
441
  type: "function",
496
- name: "simulateCallDataBulk",
442
+ name: "simulateCallAndRevert",
497
443
  inputs: [
498
444
  {
499
- name: "ops",
500
- type: "tuple[]",
501
- internalType: "struct PackedUserOperation[]",
502
- components: [
503
- {
504
- name: "sender",
505
- type: "address",
506
- internalType: "address"
507
- },
508
- {
509
- name: "nonce",
510
- type: "uint256",
511
- internalType: "uint256"
512
- },
513
- {
514
- name: "initCode",
515
- type: "bytes",
516
- internalType: "bytes"
517
- },
518
- {
519
- name: "callData",
520
- type: "bytes",
521
- internalType: "bytes"
522
- },
523
- {
524
- name: "accountGasLimits",
525
- type: "bytes32",
526
- internalType: "bytes32"
527
- },
528
- {
529
- name: "preVerificationGas",
530
- type: "uint256",
531
- internalType: "uint256"
532
- },
533
- {
534
- name: "gasFees",
535
- type: "bytes32",
536
- internalType: "bytes32"
537
- },
538
- {
539
- name: "paymasterAndData",
540
- type: "bytes",
541
- internalType: "bytes"
542
- },
543
- {
544
- name: "signature",
545
- type: "bytes",
546
- internalType: "bytes"
547
- }
548
- ]
445
+ name: "target",
446
+ type: "address",
447
+ internalType: "address"
549
448
  },
550
449
  {
551
- name: "targets",
552
- type: "address[]",
553
- internalType: "address[]"
450
+ name: "data",
451
+ type: "bytes",
452
+ internalType: "bytes"
554
453
  },
555
454
  {
556
- name: "targetCallData",
557
- type: "bytes[]",
558
- internalType: "bytes[]"
559
- }
560
- ],
561
- outputs: [
562
- {
563
- name: "",
564
- type: "tuple[]",
565
- internalType: "struct IEntryPointSimulations.TargetCallResult[]",
566
- components: [
567
- {
568
- name: "gasUsed",
569
- type: "uint256",
570
- internalType: "uint256"
571
- },
572
- {
573
- name: "success",
574
- type: "bool",
575
- internalType: "bool"
576
- },
577
- {
578
- name: "returnData",
579
- type: "bytes",
580
- internalType: "bytes"
581
- }
582
- ]
455
+ name: "gas",
456
+ type: "uint256",
457
+ internalType: "uint256"
583
458
  }
584
459
  ],
460
+ outputs: [],
585
461
  stateMutability: "nonpayable"
586
462
  },
587
463
  {
588
464
  type: "function",
589
- name: "simulateCallDataLast",
465
+ name: "simulateCallData",
590
466
  inputs: [
591
467
  {
592
- name: "ops",
468
+ name: "queuedUserOps",
593
469
  type: "tuple[]",
594
- internalType: "struct PackedUserOperation[]",
470
+ internalType: "struct SimulationArgs[]",
595
471
  components: [
596
472
  {
597
- name: "sender",
598
- type: "address",
599
- internalType: "address"
600
- },
601
- {
602
- name: "nonce",
603
- type: "uint256",
604
- internalType: "uint256"
473
+ name: "op",
474
+ type: "tuple",
475
+ internalType: "struct PackedUserOperation",
476
+ components: [
477
+ {
478
+ name: "sender",
479
+ type: "address",
480
+ internalType: "address"
481
+ },
482
+ {
483
+ name: "nonce",
484
+ type: "uint256",
485
+ internalType: "uint256"
486
+ },
487
+ {
488
+ name: "initCode",
489
+ type: "bytes",
490
+ internalType: "bytes"
491
+ },
492
+ {
493
+ name: "callData",
494
+ type: "bytes",
495
+ internalType: "bytes"
496
+ },
497
+ {
498
+ name: "accountGasLimits",
499
+ type: "bytes32",
500
+ internalType: "bytes32"
501
+ },
502
+ {
503
+ name: "preVerificationGas",
504
+ type: "uint256",
505
+ internalType: "uint256"
506
+ },
507
+ {
508
+ name: "gasFees",
509
+ type: "bytes32",
510
+ internalType: "bytes32"
511
+ },
512
+ {
513
+ name: "paymasterAndData",
514
+ type: "bytes",
515
+ internalType: "bytes"
516
+ },
517
+ {
518
+ name: "signature",
519
+ type: "bytes",
520
+ internalType: "bytes"
521
+ }
522
+ ]
605
523
  },
606
524
  {
607
- name: "initCode",
608
- type: "bytes",
609
- internalType: "bytes"
525
+ name: "target",
526
+ type: "address",
527
+ internalType: "address"
610
528
  },
611
529
  {
612
- name: "callData",
530
+ name: "targetCallData",
613
531
  type: "bytes",
614
532
  internalType: "bytes"
615
- },
616
- {
617
- name: "accountGasLimits",
618
- type: "bytes32",
619
- internalType: "bytes32"
620
- },
621
- {
622
- name: "preVerificationGas",
623
- type: "uint256",
624
- internalType: "uint256"
625
- },
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ name: "targetUserOp",
538
+ type: "tuple",
539
+ internalType: "struct SimulationArgs",
540
+ components: [
626
541
  {
627
- name: "gasFees",
628
- type: "bytes32",
629
- internalType: "bytes32"
542
+ name: "op",
543
+ type: "tuple",
544
+ internalType: "struct PackedUserOperation",
545
+ components: [
546
+ {
547
+ name: "sender",
548
+ type: "address",
549
+ internalType: "address"
550
+ },
551
+ {
552
+ name: "nonce",
553
+ type: "uint256",
554
+ internalType: "uint256"
555
+ },
556
+ {
557
+ name: "initCode",
558
+ type: "bytes",
559
+ internalType: "bytes"
560
+ },
561
+ {
562
+ name: "callData",
563
+ type: "bytes",
564
+ internalType: "bytes"
565
+ },
566
+ {
567
+ name: "accountGasLimits",
568
+ type: "bytes32",
569
+ internalType: "bytes32"
570
+ },
571
+ {
572
+ name: "preVerificationGas",
573
+ type: "uint256",
574
+ internalType: "uint256"
575
+ },
576
+ {
577
+ name: "gasFees",
578
+ type: "bytes32",
579
+ internalType: "bytes32"
580
+ },
581
+ {
582
+ name: "paymasterAndData",
583
+ type: "bytes",
584
+ internalType: "bytes"
585
+ },
586
+ {
587
+ name: "signature",
588
+ type: "bytes",
589
+ internalType: "bytes"
590
+ }
591
+ ]
630
592
  },
631
593
  {
632
- name: "paymasterAndData",
633
- type: "bytes",
634
- internalType: "bytes"
594
+ name: "target",
595
+ type: "address",
596
+ internalType: "address"
635
597
  },
636
598
  {
637
- name: "signature",
599
+ name: "targetCallData",
638
600
  type: "bytes",
639
601
  internalType: "bytes"
640
602
  }
641
603
  ]
642
604
  },
643
605
  {
644
- name: "targets",
645
- type: "address[]",
646
- internalType: "address[]"
606
+ name: "entryPoint",
607
+ type: "address",
608
+ internalType: "address"
609
+ },
610
+ {
611
+ name: "initialMinGas",
612
+ type: "uint256",
613
+ internalType: "uint256"
614
+ },
615
+ {
616
+ name: "toleranceDelta",
617
+ type: "uint256",
618
+ internalType: "uint256"
647
619
  },
648
620
  {
649
- name: "targetCallData",
650
- type: "bytes[]",
651
- internalType: "bytes[]"
621
+ name: "gasAllowance",
622
+ type: "uint256",
623
+ internalType: "uint256"
652
624
  }
653
625
  ],
654
626
  outputs: [
@@ -1181,186 +1153,6 @@ exports.EntryPointV07SimulationsAbi = [
1181
1153
  ],
1182
1154
  stateMutability: "nonpayable"
1183
1155
  },
1184
- {
1185
- type: "function",
1186
- name: "simulateValidationBulk",
1187
- inputs: [
1188
- {
1189
- name: "userOps",
1190
- type: "tuple[]",
1191
- internalType: "struct PackedUserOperation[]",
1192
- components: [
1193
- {
1194
- name: "sender",
1195
- type: "address",
1196
- internalType: "address"
1197
- },
1198
- {
1199
- name: "nonce",
1200
- type: "uint256",
1201
- internalType: "uint256"
1202
- },
1203
- {
1204
- name: "initCode",
1205
- type: "bytes",
1206
- internalType: "bytes"
1207
- },
1208
- {
1209
- name: "callData",
1210
- type: "bytes",
1211
- internalType: "bytes"
1212
- },
1213
- {
1214
- name: "accountGasLimits",
1215
- type: "bytes32",
1216
- internalType: "bytes32"
1217
- },
1218
- {
1219
- name: "preVerificationGas",
1220
- type: "uint256",
1221
- internalType: "uint256"
1222
- },
1223
- {
1224
- name: "gasFees",
1225
- type: "bytes32",
1226
- internalType: "bytes32"
1227
- },
1228
- {
1229
- name: "paymasterAndData",
1230
- type: "bytes",
1231
- internalType: "bytes"
1232
- },
1233
- {
1234
- name: "signature",
1235
- type: "bytes",
1236
- internalType: "bytes"
1237
- }
1238
- ]
1239
- }
1240
- ],
1241
- outputs: [
1242
- {
1243
- name: "",
1244
- type: "tuple[]",
1245
- internalType: "struct IEntryPointSimulations.ValidationResult[]",
1246
- components: [
1247
- {
1248
- name: "returnInfo",
1249
- type: "tuple",
1250
- internalType: "struct IEntryPoint.ReturnInfo",
1251
- components: [
1252
- {
1253
- name: "preOpGas",
1254
- type: "uint256",
1255
- internalType: "uint256"
1256
- },
1257
- {
1258
- name: "prefund",
1259
- type: "uint256",
1260
- internalType: "uint256"
1261
- },
1262
- {
1263
- name: "accountValidationData",
1264
- type: "uint256",
1265
- internalType: "uint256"
1266
- },
1267
- {
1268
- name: "paymasterValidationData",
1269
- type: "uint256",
1270
- internalType: "uint256"
1271
- },
1272
- {
1273
- name: "paymasterContext",
1274
- type: "bytes",
1275
- internalType: "bytes"
1276
- }
1277
- ]
1278
- },
1279
- {
1280
- name: "senderInfo",
1281
- type: "tuple",
1282
- internalType: "struct IStakeManager.StakeInfo",
1283
- components: [
1284
- {
1285
- name: "stake",
1286
- type: "uint256",
1287
- internalType: "uint256"
1288
- },
1289
- {
1290
- name: "unstakeDelaySec",
1291
- type: "uint256",
1292
- internalType: "uint256"
1293
- }
1294
- ]
1295
- },
1296
- {
1297
- name: "factoryInfo",
1298
- type: "tuple",
1299
- internalType: "struct IStakeManager.StakeInfo",
1300
- components: [
1301
- {
1302
- name: "stake",
1303
- type: "uint256",
1304
- internalType: "uint256"
1305
- },
1306
- {
1307
- name: "unstakeDelaySec",
1308
- type: "uint256",
1309
- internalType: "uint256"
1310
- }
1311
- ]
1312
- },
1313
- {
1314
- name: "paymasterInfo",
1315
- type: "tuple",
1316
- internalType: "struct IStakeManager.StakeInfo",
1317
- components: [
1318
- {
1319
- name: "stake",
1320
- type: "uint256",
1321
- internalType: "uint256"
1322
- },
1323
- {
1324
- name: "unstakeDelaySec",
1325
- type: "uint256",
1326
- internalType: "uint256"
1327
- }
1328
- ]
1329
- },
1330
- {
1331
- name: "aggregatorInfo",
1332
- type: "tuple",
1333
- internalType: "struct IEntryPoint.AggregatorStakeInfo",
1334
- components: [
1335
- {
1336
- name: "aggregator",
1337
- type: "address",
1338
- internalType: "address"
1339
- },
1340
- {
1341
- name: "stakeInfo",
1342
- type: "tuple",
1343
- internalType: "struct IStakeManager.StakeInfo",
1344
- components: [
1345
- {
1346
- name: "stake",
1347
- type: "uint256",
1348
- internalType: "uint256"
1349
- },
1350
- {
1351
- name: "unstakeDelaySec",
1352
- type: "uint256",
1353
- internalType: "uint256"
1354
- }
1355
- ]
1356
- }
1357
- ]
1358
- }
1359
- ]
1360
- }
1361
- ],
1362
- stateMutability: "nonpayable"
1363
- },
1364
1156
  {
1365
1157
  type: "function",
1366
1158
  name: "simulateValidationLast",
@@ -1952,6 +1744,38 @@ exports.EntryPointV07SimulationsAbi = [
1952
1744
  internalType: "address"
1953
1745
  }
1954
1746
  ]
1747
+ },
1748
+ {
1749
+ type: "error",
1750
+ name: "SimulationOutOfGas",
1751
+ inputs: [
1752
+ {
1753
+ name: "optimalGas",
1754
+ type: "uint256",
1755
+ internalType: "uint256"
1756
+ },
1757
+ {
1758
+ name: "minGas",
1759
+ type: "uint256",
1760
+ internalType: "uint256"
1761
+ },
1762
+ {
1763
+ name: "maxGas",
1764
+ type: "uint256",
1765
+ internalType: "uint256"
1766
+ }
1767
+ ]
1768
+ },
1769
+ {
1770
+ type: "error",
1771
+ name: "innerCallResult",
1772
+ inputs: [
1773
+ {
1774
+ name: "remainingGas",
1775
+ type: "uint256",
1776
+ internalType: "uint256"
1777
+ }
1778
+ ]
1955
1779
  }
1956
1780
  ];
1957
1781
  //# sourceMappingURL=EntryPointSimulations.js.map