mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
cleanup
This commit is contained in:
parent
002dde6efb
commit
78351df926
@ -4,14 +4,6 @@ export const runtime = 'edge'
|
||||
|
||||
const apiUrl = process.env.WEB3_API_URL
|
||||
|
||||
const config: RequestInit = {
|
||||
headers: {
|
||||
'content-type': 'application/json'
|
||||
},
|
||||
method: 'GET',
|
||||
next: { revalidate: 30 }
|
||||
}
|
||||
|
||||
export async function GET(request: NextRequest) {
|
||||
const searchParams = request?.nextUrl?.searchParams
|
||||
const tokenIn = searchParams?.get('tokenIn')
|
||||
@ -26,7 +18,7 @@ export async function GET(request: NextRequest) {
|
||||
let status
|
||||
|
||||
try {
|
||||
const res = await fetch(url, config)
|
||||
const res = await fetch(url)
|
||||
const json = await res.json()
|
||||
|
||||
data = json
|
||||
|
@ -3,5 +3,6 @@
|
||||
border: 1px solid rgba(var(--foreground-rgb), 0.15);
|
||||
border-radius: var(--border-radius);
|
||||
overflow: hidden;
|
||||
margin: 0 0.25rem;
|
||||
margin: -0.15em 0.25rem 0 0.25rem;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
import styles from './ResultRow.module.css'
|
||||
import { formatNumber } from '@/utils'
|
||||
import { formatNumber } from '@/lib/utils'
|
||||
import { ArrowRightIcon } from '@radix-ui/react-icons'
|
||||
import { TokenLogo } from '../TokenLogo/TokenLogo'
|
||||
import { Token } from '@/types'
|
||||
|
@ -7,7 +7,7 @@ import { useDebounce } from 'use-debounce'
|
||||
import stylesShared from './styles.module.css'
|
||||
import { usePrices } from '@/hooks'
|
||||
import { FormAmount } from '@/components/FormAmount'
|
||||
import { getTokenBySymbol } from '@/utils'
|
||||
import { getTokenBySymbol } from '@/lib/utils'
|
||||
|
||||
export function Buy() {
|
||||
const { prices, isValidating, isLoading } = usePrices()
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { Result } from '@/components/ResultRow'
|
||||
import { ratioOceanToAsi, ratioAgixToAsi, ratioFetToAsi } from '@/constants'
|
||||
import { usePrices } from '@/hooks'
|
||||
import { getTokenBySymbol } from '@/utils'
|
||||
import { getTokenBySymbol } from '@/lib/utils'
|
||||
import { TokenSymbol } from '@/types'
|
||||
import { useQuote } from '@/hooks'
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { tokens } from '@/constants'
|
||||
import { fetcher, getTokenAddressBySymbol } from '@/utils'
|
||||
import { fetcher, getTokenAddressBySymbol } from '@/lib/utils'
|
||||
import useSWR from 'swr'
|
||||
|
||||
const tokenAddresses = tokens.map((token) => token.address).toString()
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { TokenSymbol } from '@/types'
|
||||
import { getTokenAddressBySymbol, fetcher } from '@/utils'
|
||||
import { getTokenAddressBySymbol, fetcher } from '@/lib/utils'
|
||||
import useSWR from 'swr'
|
||||
|
||||
const options = {
|
||||
|
@ -9,7 +9,7 @@ const nextConfig = {
|
||||
}
|
||||
]
|
||||
},
|
||||
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
|
||||
webpack: (config) => {
|
||||
config.module.rules.push({
|
||||
test: /\.md$/,
|
||||
type: 'asset/source'
|
||||
|
Loading…
Reference in New Issue
Block a user