diff --git a/src/routers/evm/index.ts b/src/routers/evm/index.ts index a5a63bd..d0f3b7c 100644 --- a/src/routers/evm/index.ts +++ b/src/routers/evm/index.ts @@ -5,5 +5,5 @@ import { EnvVars } from '../../config'; export const evmRouter = Router(); evmRouter.use(async (req, res) => { - res.redirect(`${EnvVars.EVM_API_URL}/api${req.url}`); + res.redirect(307, `${EnvVars.EVM_API_URL}/api${req.url}`); });