mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 17:33:18 +01:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { type NextRequest } from 'next/server'
|
|
|
|
export const runtime = 'edge'
|
|
|
|
const apiUrl = 'https://api.1inch.dev/swap/v6.0/1/quote'
|
|
|
|
const config: RequestInit = {
|
|
headers: {
|
|
Authorization: `Bearer ${process.env.ONEINCH_API_KEY}`,
|
|
'content-type': 'application/json'
|
|
},
|
|
method: 'GET',
|
|
next: { revalidate: 60 }
|
|
}
|
|
|
|
export async function GET(request: NextRequest) {
|
|
const searchParams = request?.nextUrl?.searchParams
|
|
const src = searchParams?.get('src')
|
|
const dst = searchParams?.get('dst')
|
|
const amount = searchParams?.get('amount')
|
|
|
|
if (!src || !dst || !amount) {
|
|
return Response.json(null, { status: 400 })
|
|
}
|
|
|
|
const url = `${apiUrl}/?src=${src}&dst=${dst}&amount=${amount}&includeTokensInfo=true&includeProtocols=true`
|
|
let data
|
|
let status
|
|
|
|
try {
|
|
const res = await fetch(url, config)
|
|
const json = await res.json()
|
|
|
|
data = json
|
|
status = res.status
|
|
} catch (error: unknown) {
|
|
console.error((error as Error).message)
|
|
data = null
|
|
status = 500
|
|
}
|
|
|
|
return new Response(JSON.stringify(data), {
|
|
status,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Cache-Control': 'public, s-maxage=10'
|
|
}
|
|
})
|
|
}
|