Skip to content

Commit 8ae60e4

Browse files
committed
Added output example, other small fixes
1 parent c51abf0 commit 8ae60e4

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

README.md

+20-4
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,38 @@ This value can be modified via the `minimumDataSamplesPercentage` variable. By d
3131
need to exist for the pool stats to be computed.
3232

3333
### Running the script
34-
Make sure you have Go installed, here's a helpful link to do so https://go.dev/doc/install
35-
From a terminal where the main.go file is located just run
34+
Make sure you have Go installed, more info [here](https://go.dev/doc/install).
3635

37-
`go run main.go`
36+
From a terminal where the main.go file is located just run `go run main.go`.
3837

3938
### Output
4039
The script will output the 10 pools with the highest avg per dollar profit in the given time frame.
4140
Pool data output for each pool in order is:
4241

4342
id - token0 / token1 symbols - avg per dollar profit - APR
4443

44+
Output example for the time frame values:
45+
```
46+
Calculating most liquid pool in a period of 58 days starting from 2022-01-01 00:00:00 +0000 UTC
47+
Disregarding pool with less than 29 day samples in for the period
48+
49+
Top ten most profitable pools between 2022-01-01 00:00:00 +0000 UTC and 2022-02-28 23:59:59 +0000 UTC
50+
51+
0x5b6e17b4eb1e86b04f41d25c457ee5b9f3edef13 CRPT / WETH 98.28921682659382 89688.91035426685
52+
0x9396c357befc79abfef7f229a3bd8dd0ae8e6bfd SHPING / WETH 0.06003576762168322 37.7811296239903
53+
0x75099758a9d1f43198043825c8fbcf8a12be7a74 sifu / USDT 0.046611128583921156 29.332865401950382
54+
0x88b468740da532ea93e687d3c5bfda5efc26f2f8 CHEDDAR / WETH 0.04347581479067895 46.67256587822887
55+
0x1d2e8efae9fab4731028d4a90f0cca27e1a57c9f USDC / rUSD 0.04318214127204921 36.654608289065024
56+
0xb71008f10b4b126c43fad95257aa29c6e3b8ca37 DOP / WETH 0.041620880432658144 34.526412177091416
57+
0x8fec7a391cd9838935f4d4fd516ba6a3b3d2cda7 MDT / WETH 0.038285001377225805 39.92578715053548
58+
0x63805e5d951398bc1c1bec242d303f59fa7732e3 X2Y2 / WETH 0.03450279129758539 21.712963488997705
59+
0xc7ec0dfee680c9fd6586b00cf739fbc54e9563e4 HIT / WETH 0.03292945937453993 22.67783522963599
60+
0xb23256f709c9c1152e038bc5e4fc19fe40ee48de wPPC / WETH 0.0301729954480925 36.710477795179216
61+
```
4562

4663
## Observations
4764
Querying for all the pool data in the given time frame from the subgraph takes some time. Be patient.
4865
This could be improved in the future with parallel http calls using go routines.
4966

5067
More data than is actually needed to compute the profit and apr is queried from the subgraph, these fields were not removed from the graphql query
5168
or the structures to have more data to experiment with. If speed was to be optimized, not querying for unneeded data may make the query more efficient.
52-

0 commit comments

Comments
 (0)