From dd342fa5d1c9209b0869e05382b4db5ea137bf41 Mon Sep 17 00:00:00 2001 From: Bogdan Fazakas Date: Thu, 12 Jan 2023 13:53:33 +0200 Subject: [PATCH] rename utils file --- api/{utils.ts => _utils.ts} | 0 api/address.ts | 2 +- api/name.ts | 2 +- api/text.ts | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename api/{utils.ts => _utils.ts} (100%) diff --git a/api/utils.ts b/api/_utils.ts similarity index 100% rename from api/utils.ts rename to api/_utils.ts diff --git a/api/address.ts b/api/address.ts index 5492cd8..ef52efc 100644 --- a/api/address.ts +++ b/api/address.ts @@ -1,5 +1,5 @@ import type { VercelRequest, VercelResponse } from '@vercel/node' -import { getProvider } from './utils' +import { getProvider } from './_utils' export default async function getEnsAddress( request: VercelRequest, diff --git a/api/name.ts b/api/name.ts index 13a7596..f020760 100644 --- a/api/name.ts +++ b/api/name.ts @@ -1,5 +1,5 @@ import type { VercelRequest, VercelResponse } from '@vercel/node' -import { getProvider } from './utils' +import { getProvider } from './_utils' export async function getEnsName(accountId: string) { const provider = await getProvider() diff --git a/api/text.ts b/api/text.ts index 1c7bef2..18e469c 100644 --- a/api/text.ts +++ b/api/text.ts @@ -1,5 +1,5 @@ import type { VercelRequest, VercelResponse } from '@vercel/node' -import { getProvider } from './utils' +import { getProvider } from './_utils' export async function getEnsTextRecords( ensName: string