rw2023amount sender full list
Updated 2024-03-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
-- forked from amount sender @ https://flipsidecrypto.xyz/edit/queries/e2875ff2-208a-4cd8-8e05-f6115a448964
SELECT
tx_from AS sender,
SUM(amount) AS amount_sent
FROM
solana.core.fact_transfers
WHERE
mint = 'ErGB9xa24Szxbk1M28u2Tx8rKPqzL6BroNkkzk5rG4zj'
AND block_timestamp >='2024-02-12'
AND tx_to = '9yiH3GuyuQF9Q5edRdbhKxfXdxmervr8DnGF2Z8FLa7c'
GROUP BY
sender
ORDER BY
amount_sent DESC;
QueryRunArchived: QueryRun has been archived