Skip to content

fix non sbw flow for AA atomic transactions #859

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2025
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Type, type Static } from "@sinclair/typebox";
import type { FastifyInstance } from "fastify";
import { StatusCodes } from "http-status-codes";
import type { Address, Hex } from "thirdweb";
import { getAddress, type Address, type Hex } from "thirdweb";
import { insertTransaction } from "../../../shared/utils/transaction/insert-transaction";
import {
requestQuerystringSchema,
Expand Down Expand Up @@ -29,7 +29,9 @@ const requestBodySchema = Type.Object({
}),
});

export async function sendTransactionBatchAtomicRoute(fastify: FastifyInstance) {
export async function sendTransactionBatchAtomicRoute(
fastify: FastifyInstance,
) {
fastify.route<{
Params: Static<typeof walletChainParamSchema>;
Body: Static<typeof requestBodySchema>;
Expand Down Expand Up @@ -113,8 +115,10 @@ export async function sendTransactionBatchAtomicRoute(fastify: FastifyInstance)

const queueId = await insertTransaction({
insertedTransaction: {
...(hasSmartHeaders
? { isUserOp: true, signerAddress: getAddress(fromAddress) }
: { isUserOp: false }),
transactionMode: undefined,
isUserOp: false,
chainId,
from: fromAddress as Address,
accountAddress: maybeAddress(accountAddress, "x-account-address"),
Expand Down
Loading