Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ignore default tokens uniswap #28

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions lib/cron/cache-token-lists.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@ import { S3 } from 'aws-sdk'
import axios from 'axios'
import { default as bunyan, default as Logger } from 'bunyan'

const TOKEN_LISTS = [
'https://raw.githubusercontent.com/The-Blockchain-Association/sec-notice-list/master/ba-sec-list.json',
'https://tokens.coingecko.com/uniswap/all.json',
'https://gateway.ipfs.io/ipns/tokens.uniswap.org',
]
const TOKEN_LISTS: any = []

const handler: ScheduledHandler = async (event: EventBridgeEvent<string, void>) => {
const log: Logger = bunyan.createLogger({
Expand Down
Loading