Skip to content

Commit 1b28f09

Browse files
authored
fix non sbw flow for AA atomic transactions (#859)
1 parent f9d79bb commit 1b28f09

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/server/routes/backend-wallet/send-transaction-batch-atomic.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Type, type Static } from "@sinclair/typebox";
22
import type { FastifyInstance } from "fastify";
33
import { StatusCodes } from "http-status-codes";
4-
import type { Address, Hex } from "thirdweb";
4+
import { getAddress, type Address, type Hex } from "thirdweb";
55
import { insertTransaction } from "../../../shared/utils/transaction/insert-transaction";
66
import {
77
requestQuerystringSchema,
@@ -29,7 +29,9 @@ const requestBodySchema = Type.Object({
2929
}),
3030
});
3131

32-
export async function sendTransactionBatchAtomicRoute(fastify: FastifyInstance) {
32+
export async function sendTransactionBatchAtomicRoute(
33+
fastify: FastifyInstance,
34+
) {
3335
fastify.route<{
3436
Params: Static<typeof walletChainParamSchema>;
3537
Body: Static<typeof requestBodySchema>;
@@ -113,8 +115,10 @@ export async function sendTransactionBatchAtomicRoute(fastify: FastifyInstance)
113115

114116
const queueId = await insertTransaction({
115117
insertedTransaction: {
118+
...(hasSmartHeaders
119+
? { isUserOp: true, signerAddress: getAddress(fromAddress) }
120+
: { isUserOp: false }),
116121
transactionMode: undefined,
117-
isUserOp: false,
118122
chainId,
119123
from: fromAddress as Address,
120124
accountAddress: maybeAddress(accountAddress, "x-account-address"),

0 commit comments

Comments
 (0)