synapsecns/sanguine

View on GitHub
packages/rest-api/src/controllers/tokenListController.ts

Summary

Maintainability
A
0 mins
Test Coverage
import * as tokenList from '../constants/bridgeable'
import { logger } from '../middleware/logger'

export const tokenListController = async (req, res) => {
  logger.info(`Successful tokenListController response`, { query: req.query })
  res.json(tokenList)
}