-
Notifications
You must be signed in to change notification settings - Fork 52
/
get_top10bot_daily_revenue.py
36 lines (30 loc) · 1.21 KB
/
get_top10bot_daily_revenue.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import json
from datetime import datetime
import numpy as np
def sort_dict(d):
return {k: v for k, v in sorted(d.items(), key=lambda item: item[1]['revenue'], reverse=True)}
ts = json.load(open('data/ts.json'))
botstats = json.load(open('data/bot_stats.json'))
sorted_botstats = sort_dict(botstats)
top10 = list(sorted_botstats.keys())[:10]
print(top10, len(top10))
stats = {}
for addr in top10:
stats[addr] = {}
with open('./data/cycle_include_router.json') as f:
for line in f:
info = json.loads(line)
t = ts[str(int(info['receipt']['blockNumber'], 16))]
d = datetime.utcfromtimestamp(t).strftime('%Y-%m-%d')
if info['tx']['to'] not in top10:
continue
if info['path'][0] != '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2':
continue
addr = info['tx']['to']
if d not in stats[addr].keys():
stats[addr][d] = { 'revenue': 0, 'cost': 0, 'count': 0, 'profit': 0 }
stats[addr][d]['revenue'] += info['revenue']
stats[addr][d]['cost'] += info['cost']
stats[addr][d]['profit'] += info['revenue']-info['cost']
stats[addr][d]['count'] += 1
json.dump(stats, open('data/top10_rev_bot_daily_stats.json', 'w'))