@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
@@ -397,59 +397,12 @@ export const EntryPointV07SimulationsAbi = [
397
397
  },
398
398
  {
399
399
  type: "function",
400
- name: "simulateCallData",
400
+ name: "simulateCall",
401
401
  inputs: [
402
402
  {
403
- name: "op",
404
- type: "tuple",
405
- internalType: "struct PackedUserOperation",
406
- components: [
407
- {
408
- name: "sender",
409
- type: "address",
410
- internalType: "address"
411
- },
412
- {
413
- name: "nonce",
414
- type: "uint256",
415
- internalType: "uint256"
416
- },
417
- {
418
- name: "initCode",
419
- type: "bytes",
420
- internalType: "bytes"
421
- },
422
- {
423
- name: "callData",
424
- type: "bytes",
425
- internalType: "bytes"
426
- },
427
- {
428
- name: "accountGasLimits",
429
- type: "bytes32",
430
- internalType: "bytes32"
431
- },
432
- {
433
- name: "preVerificationGas",
434
- type: "uint256",
435
- internalType: "uint256"
436
- },
437
- {
438
- name: "gasFees",
439
- type: "bytes32",
440
- internalType: "bytes32"
441
- },
442
- {
443
- name: "paymasterAndData",
444
- type: "bytes",
445
- internalType: "bytes"
446
- },
447
- {
448
- name: "signature",
449
- type: "bytes",
450
- internalType: "bytes"
451
- }
452
- ]
403
+ name: "entryPoint",
404
+ type: "address",
405
+ internalType: "address"
453
406
  },
454
407
  {
455
408
  name: "target",
@@ -457,195 +410,214 @@ export const EntryPointV07SimulationsAbi = [
457
410
  internalType: "address"
458
411
  },
459
412
  {
460
- name: "targetCallData",
413
+ name: "data",
461
414
  type: "bytes",
462
415
  internalType: "bytes"
416
+ },
417
+ {
418
+ name: "gas",
419
+ type: "uint256",
420
+ internalType: "uint256"
463
421
  }
464
422
  ],
465
423
  outputs: [
466
424
  {
467
- name: "",
468
- type: "tuple",
469
- internalType: "struct IEntryPointSimulations.TargetCallResult",
470
- components: [
471
- {
472
- name: "gasUsed",
473
- type: "uint256",
474
- internalType: "uint256"
475
- },
476
- {
477
- name: "success",
478
- type: "bool",
479
- internalType: "bool"
480
- },
481
- {
482
- name: "returnData",
483
- type: "bytes",
484
- internalType: "bytes"
485
- }
486
- ]
425
+ name: "success",
426
+ type: "bool",
427
+ internalType: "bool"
428
+ },
429
+ {
430
+ name: "result",
431
+ type: "bytes",
432
+ internalType: "bytes"
487
433
  }
488
434
  ],
489
435
  stateMutability: "nonpayable"
490
436
  },
491
437
  {
492
438
  type: "function",
493
- name: "simulateCallDataBulk",
439
+ name: "simulateCallAndRevert",
494
440
  inputs: [
495
441
  {
496
- name: "ops",
497
- type: "tuple[]",
498
- internalType: "struct PackedUserOperation[]",
499
- components: [
500
- {
501
- name: "sender",
502
- type: "address",
503
- internalType: "address"
504
- },
505
- {
506
- name: "nonce",
507
- type: "uint256",
508
- internalType: "uint256"
509
- },
510
- {
511
- name: "initCode",
512
- type: "bytes",
513
- internalType: "bytes"
514
- },
515
- {
516
- name: "callData",
517
- type: "bytes",
518
- internalType: "bytes"
519
- },
520
- {
521
- name: "accountGasLimits",
522
- type: "bytes32",
523
- internalType: "bytes32"
524
- },
525
- {
526
- name: "preVerificationGas",
527
- type: "uint256",
528
- internalType: "uint256"
529
- },
530
- {
531
- name: "gasFees",
532
- type: "bytes32",
533
- internalType: "bytes32"
534
- },
535
- {
536
- name: "paymasterAndData",
537
- type: "bytes",
538
- internalType: "bytes"
539
- },
540
- {
541
- name: "signature",
542
- type: "bytes",
543
- internalType: "bytes"
544
- }
545
- ]
442
+ name: "target",
443
+ type: "address",
444
+ internalType: "address"
546
445
  },
547
446
  {
548
- name: "targets",
549
- type: "address[]",
550
- internalType: "address[]"
447
+ name: "data",
448
+ type: "bytes",
449
+ internalType: "bytes"
551
450
  },
552
451
  {
553
- name: "targetCallData",
554
- type: "bytes[]",
555
- internalType: "bytes[]"
556
- }
557
- ],
558
- outputs: [
559
- {
560
- name: "",
561
- type: "tuple[]",
562
- internalType: "struct IEntryPointSimulations.TargetCallResult[]",
563
- components: [
564
- {
565
- name: "gasUsed",
566
- type: "uint256",
567
- internalType: "uint256"
568
- },
569
- {
570
- name: "success",
571
- type: "bool",
572
- internalType: "bool"
573
- },
574
- {
575
- name: "returnData",
576
- type: "bytes",
577
- internalType: "bytes"
578
- }
579
- ]
452
+ name: "gas",
453
+ type: "uint256",
454
+ internalType: "uint256"
580
455
  }
581
456
  ],
457
+ outputs: [],
582
458
  stateMutability: "nonpayable"
583
459
  },
584
460
  {
585
461
  type: "function",
586
- name: "simulateCallDataLast",
462
+ name: "simulateCallData",
587
463
  inputs: [
588
464
  {
589
- name: "ops",
465
+ name: "queuedUserOps",
590
466
  type: "tuple[]",
591
- internalType: "struct PackedUserOperation[]",
467
+ internalType: "struct SimulationArgs[]",
592
468
  components: [
593
469
  {
594
- name: "sender",
595
- type: "address",
596
- internalType: "address"
597
- },
598
- {
599
- name: "nonce",
600
- type: "uint256",
601
- internalType: "uint256"
470
+ name: "op",
471
+ type: "tuple",
472
+ internalType: "struct PackedUserOperation",
473
+ components: [
474
+ {
475
+ name: "sender",
476
+ type: "address",
477
+ internalType: "address"
478
+ },
479
+ {
480
+ name: "nonce",
481
+ type: "uint256",
482
+ internalType: "uint256"
483
+ },
484
+ {
485
+ name: "initCode",
486
+ type: "bytes",
487
+ internalType: "bytes"
488
+ },
489
+ {
490
+ name: "callData",
491
+ type: "bytes",
492
+ internalType: "bytes"
493
+ },
494
+ {
495
+ name: "accountGasLimits",
496
+ type: "bytes32",
497
+ internalType: "bytes32"
498
+ },
499
+ {
500
+ name: "preVerificationGas",
501
+ type: "uint256",
502
+ internalType: "uint256"
503
+ },
504
+ {
505
+ name: "gasFees",
506
+ type: "bytes32",
507
+ internalType: "bytes32"
508
+ },
509
+ {
510
+ name: "paymasterAndData",
511
+ type: "bytes",
512
+ internalType: "bytes"
513
+ },
514
+ {
515
+ name: "signature",
516
+ type: "bytes",
517
+ internalType: "bytes"
518
+ }
519
+ ]
602
520
  },
603
521
  {
604
- name: "initCode",
605
- type: "bytes",
606
- internalType: "bytes"
522
+ name: "target",
523
+ type: "address",
524
+ internalType: "address"
607
525
  },
608
526
  {
609
- name: "callData",
527
+ name: "targetCallData",
610
528
  type: "bytes",
611
529
  internalType: "bytes"
612
- },
613
- {
614
- name: "accountGasLimits",
615
- type: "bytes32",
616
- internalType: "bytes32"
617
- },
618
- {
619
- name: "preVerificationGas",
620
- type: "uint256",
621
- internalType: "uint256"
622
- },
530
+ }
531
+ ]
532
+ },
533
+ {
534
+ name: "targetUserOp",
535
+ type: "tuple",
536
+ internalType: "struct SimulationArgs",
537
+ components: [
623
538
  {
624
- name: "gasFees",
625
- type: "bytes32",
626
- internalType: "bytes32"
539
+ name: "op",
540
+ type: "tuple",
541
+ internalType: "struct PackedUserOperation",
542
+ components: [
543
+ {
544
+ name: "sender",
545
+ type: "address",
546
+ internalType: "address"
547
+ },
548
+ {
549
+ name: "nonce",
550
+ type: "uint256",
551
+ internalType: "uint256"
552
+ },
553
+ {
554
+ name: "initCode",
555
+ type: "bytes",
556
+ internalType: "bytes"
557
+ },
558
+ {
559
+ name: "callData",
560
+ type: "bytes",
561
+ internalType: "bytes"
562
+ },
563
+ {
564
+ name: "accountGasLimits",
565
+ type: "bytes32",
566
+ internalType: "bytes32"
567
+ },
568
+ {
569
+ name: "preVerificationGas",
570
+ type: "uint256",
571
+ internalType: "uint256"
572
+ },
573
+ {
574
+ name: "gasFees",
575
+ type: "bytes32",
576
+ internalType: "bytes32"
577
+ },
578
+ {
579
+ name: "paymasterAndData",
580
+ type: "bytes",
581
+ internalType: "bytes"
582
+ },
583
+ {
584
+ name: "signature",
585
+ type: "bytes",
586
+ internalType: "bytes"
587
+ }
588
+ ]
627
589
  },
628
590
  {
629
- name: "paymasterAndData",
630
- type: "bytes",
631
- internalType: "bytes"
591
+ name: "target",
592
+ type: "address",
593
+ internalType: "address"
632
594
  },
633
595
  {
634
- name: "signature",
596
+ name: "targetCallData",
635
597
  type: "bytes",
636
598
  internalType: "bytes"
637
599
  }
638
600
  ]
639
601
  },
640
602
  {
641
- name: "targets",
642
- type: "address[]",
643
- internalType: "address[]"
603
+ name: "entryPoint",
604
+ type: "address",
605
+ internalType: "address"
606
+ },
607
+ {
608
+ name: "initialMinGas",
609
+ type: "uint256",
610
+ internalType: "uint256"
611
+ },
612
+ {
613
+ name: "toleranceDelta",
614
+ type: "uint256",
615
+ internalType: "uint256"
644
616
  },
645
617
  {
646
- name: "targetCallData",
647
- type: "bytes[]",
648
- internalType: "bytes[]"
618
+ name: "gasAllowance",
619
+ type: "uint256",
620
+ internalType: "uint256"
649
621
  }
650
622
  ],
651
623
  outputs: [
@@ -1178,186 +1150,6 @@ export const EntryPointV07SimulationsAbi = [
1178
1150
  ],
1179
1151
  stateMutability: "nonpayable"
1180
1152
  },
1181
- {
1182
- type: "function",
1183
- name: "simulateValidationBulk",
1184
- inputs: [
1185
- {
1186
- name: "userOps",
1187
- type: "tuple[]",
1188
- internalType: "struct PackedUserOperation[]",
1189
- components: [
1190
- {
1191
- name: "sender",
1192
- type: "address",
1193
- internalType: "address"
1194
- },
1195
- {
1196
- name: "nonce",
1197
- type: "uint256",
1198
- internalType: "uint256"
1199
- },
1200
- {
1201
- name: "initCode",
1202
- type: "bytes",
1203
- internalType: "bytes"
1204
- },
1205
- {
1206
- name: "callData",
1207
- type: "bytes",
1208
- internalType: "bytes"
1209
- },
1210
- {
1211
- name: "accountGasLimits",
1212
- type: "bytes32",
1213
- internalType: "bytes32"
1214
- },
1215
- {
1216
- name: "preVerificationGas",
1217
- type: "uint256",
1218
- internalType: "uint256"
1219
- },
1220
- {
1221
- name: "gasFees",
1222
- type: "bytes32",
1223
- internalType: "bytes32"
1224
- },
1225
- {
1226
- name: "paymasterAndData",
1227
- type: "bytes",
1228
- internalType: "bytes"
1229
- },
1230
- {
1231
- name: "signature",
1232
- type: "bytes",
1233
- internalType: "bytes"
1234
- }
1235
- ]
1236
- }
1237
- ],
1238
- outputs: [
1239
- {
1240
- name: "",
1241
- type: "tuple[]",
1242
- internalType: "struct IEntryPointSimulations.ValidationResult[]",
1243
- components: [
1244
- {
1245
- name: "returnInfo",
1246
- type: "tuple",
1247
- internalType: "struct IEntryPoint.ReturnInfo",
1248
- components: [
1249
- {
1250
- name: "preOpGas",
1251
- type: "uint256",
1252
- internalType: "uint256"
1253
- },
1254
- {
1255
- name: "prefund",
1256
- type: "uint256",
1257
- internalType: "uint256"
1258
- },
1259
- {
1260
- name: "accountValidationData",
1261
- type: "uint256",
1262
- internalType: "uint256"
1263
- },
1264
- {
1265
- name: "paymasterValidationData",
1266
- type: "uint256",
1267
- internalType: "uint256"
1268
- },
1269
- {
1270
- name: "paymasterContext",
1271
- type: "bytes",
1272
- internalType: "bytes"
1273
- }
1274
- ]
1275
- },
1276
- {
1277
- name: "senderInfo",
1278
- type: "tuple",
1279
- internalType: "struct IStakeManager.StakeInfo",
1280
- components: [
1281
- {
1282
- name: "stake",
1283
- type: "uint256",
1284
- internalType: "uint256"
1285
- },
1286
- {
1287
- name: "unstakeDelaySec",
1288
- type: "uint256",
1289
- internalType: "uint256"
1290
- }
1291
- ]
1292
- },
1293
- {
1294
- name: "factoryInfo",
1295
- type: "tuple",
1296
- internalType: "struct IStakeManager.StakeInfo",
1297
- components: [
1298
- {
1299
- name: "stake",
1300
- type: "uint256",
1301
- internalType: "uint256"
1302
- },
1303
- {
1304
- name: "unstakeDelaySec",
1305
- type: "uint256",
1306
- internalType: "uint256"
1307
- }
1308
- ]
1309
- },
1310
- {
1311
- name: "paymasterInfo",
1312
- type: "tuple",
1313
- internalType: "struct IStakeManager.StakeInfo",
1314
- components: [
1315
- {
1316
- name: "stake",
1317
- type: "uint256",
1318
- internalType: "uint256"
1319
- },
1320
- {
1321
- name: "unstakeDelaySec",
1322
- type: "uint256",
1323
- internalType: "uint256"
1324
- }
1325
- ]
1326
- },
1327
- {
1328
- name: "aggregatorInfo",
1329
- type: "tuple",
1330
- internalType: "struct IEntryPoint.AggregatorStakeInfo",
1331
- components: [
1332
- {
1333
- name: "aggregator",
1334
- type: "address",
1335
- internalType: "address"
1336
- },
1337
- {
1338
- name: "stakeInfo",
1339
- type: "tuple",
1340
- internalType: "struct IStakeManager.StakeInfo",
1341
- components: [
1342
- {
1343
- name: "stake",
1344
- type: "uint256",
1345
- internalType: "uint256"
1346
- },
1347
- {
1348
- name: "unstakeDelaySec",
1349
- type: "uint256",
1350
- internalType: "uint256"
1351
- }
1352
- ]
1353
- }
1354
- ]
1355
- }
1356
- ]
1357
- }
1358
- ],
1359
- stateMutability: "nonpayable"
1360
- },
1361
1153
  {
1362
1154
  type: "function",
1363
1155
  name: "simulateValidationLast",
@@ -1949,6 +1741,38 @@ export const EntryPointV07SimulationsAbi = [
1949
1741
  internalType: "address"
1950
1742
  }
1951
1743
  ]
1744
+ },
1745
+ {
1746
+ type: "error",
1747
+ name: "SimulationOutOfGas",
1748
+ inputs: [
1749
+ {
1750
+ name: "optimalGas",
1751
+ type: "uint256",
1752
+ internalType: "uint256"
1753
+ },
1754
+ {
1755
+ name: "minGas",
1756
+ type: "uint256",
1757
+ internalType: "uint256"
1758
+ },
1759
+ {
1760
+ name: "maxGas",
1761
+ type: "uint256",
1762
+ internalType: "uint256"
1763
+ }
1764
+ ]
1765
+ },
1766
+ {
1767
+ type: "error",
1768
+ name: "innerCallResult",
1769
+ inputs: [
1770
+ {
1771
+ name: "remainingGas",
1772
+ type: "uint256",
1773
+ internalType: "uint256"
1774
+ }
1775
+ ]
1952
1776
  }
1953
1777
  ];
1954
1778
  //# sourceMappingURL=EntryPointSimulations.js.map