Skip to content

Commit

Permalink
Fix: Known account and whales (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
sambacha authored Nov 7, 2021
1 parent c556d00 commit e09037c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/utils/initServer/init-whales.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ import {_log} from '../configs/utils';
import {startMongo} from '../mongo/config';
import {saveWhale} from '../mongo/saveWhale';

/**
* @note the 'whales' list is sourced from uniswap governance repo
* this repo actually overwrites its commits, so you can not by virtue of git history
* observe changes to this list.
*/
const serverName = 'initWhales';
const URLData =
'https://raw.githubusercontent.com/Uniswap/sybil-list/master/verified.json';
const URLData = 'https://raw.githubusercontent.com/Uniswap/sybil-list/master/verified.json';

const startServer = () => {
_log.start('---> startServer ', serverName);
Expand Down

0 comments on commit e09037c

Please sign in to comment.