From 92632f3949295c8cae0298f380e7e08ec241a2c1 Mon Sep 17 00:00:00 2001 From: Venkatesh Date: Mon, 30 Mar 2026 21:46:17 +0530 Subject: [PATCH] simulate handle op debug --- src/modules/entry-point/entry-point.service.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/modules/entry-point/entry-point.service.ts b/src/modules/entry-point/entry-point.service.ts index 77cff7fc..c6841514 100644 --- a/src/modules/entry-point/entry-point.service.ts +++ b/src/modules/entry-point/entry-point.service.ts @@ -345,6 +345,12 @@ export class EntryPointService { args: [userOp, zeroAddress, "0x"], }); + const dataForDebug = encodeFunctionData({ + abi: entryPointV7Abi, + functionName: "handleOps", + args: [[userOp], workerAddress], + }); + const tx: TransactionRequest = { from: workerAddress, to: entryPointV7Address, @@ -356,7 +362,10 @@ export class EntryPointService { this.logger.trace( { - txParams: tx, + txParams: { + ...tx, + data: dataForDebug, + }, ...metadata, stateOverrides, chainId,