Skip to content

Commit e09037c

Browse files
authored
Fix: Known account and whales (#4)
1 parent c556d00 commit e09037c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/utils/initServer/init-whales.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ import {_log} from '../configs/utils';
33
import {startMongo} from '../mongo/config';
44
import {saveWhale} from '../mongo/saveWhale';
55

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

1014
const startServer = () => {
1115
_log.start('---> startServer ', serverName);

0 commit comments

Comments
 (0)