Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/modules/entry-point/entry-point.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -356,7 +362,10 @@ export class EntryPointService {

this.logger.trace(
{
txParams: tx,
txParams: {
...tx,
data: dataForDebug,
},
...metadata,
stateOverrides,
chainId,
Expand Down
Loading