tendroGet Greed Of Account
Updated 2024-07-26
99
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
›
⌄
SELECT
address,
ROUND((SUM(amount) / 1000000000000000000)) AS formatted_greed
FROM (
SELECT
from_address AS address,
-raw_amount AS amount
FROM
blast.core.fact_token_transfers
WHERE
contract_address = LOWER('0xe6a062fba3918376500a602c800b1e0307420457')
UNION ALL
SELECT
to_address AS address,
raw_amount AS amount
FROM
blast.core.fact_token_transfers
WHERE
contract_address = LOWER('0xe6a062fba3918376500a602c800b1e0307420457')
) AS combined
GROUP BY
address
ORDER BY
formatted_greed DESC;
QueryRunArchived: QueryRun has been archived