Skip to content

Commit

Permalink
constants + tx quantity changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavyagor12 committed Jun 30, 2024
1 parent 88ef1a4 commit 82d426a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/app/api/orchestrator/tx/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export async function POST(req: NextRequest): Promise<NextResponse<FrameTransact
const callData = encodeFunctionData({
abi: ABI,
functionName: "trf",
args: [myAddress, parseEther("5"), BigInt(untrustedData.inputText || 1)],
args: [myAddress, parseEther("5"), BigInt(untrustedData?.inputText || 1)],
});
return NextResponse.json({
chainId: "eip155:84532",
Expand Down

0 comments on commit 82d426a

Please sign in to comment.