freemartianAll UseCorn Users
Updated 2024-09-16
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
28
29
30
31
32
33
34
35
36
›
⌄
WITH deposits AS (
SELECT
origin_from_address AS depositor,
symbol,
count(tx_hash) AS deposit_transactions,
SUM(amount_usd) AS deposit_amount_usd,
FROM ethereum.core.ez_token_transfers
WHERE to_address = '0x8bc93498b861fd98277c3b51d240e7e56e48f23c'
AND from_address <> '0x0000000000000000000000000000000000000000'
AND block_timestamp::date >= '2024-08-22'
AND amount_usd IS NOT NULL
GROUP BY 1,2
),
withdraws AS (
SELECT
origin_from_address AS withdrawer,
symbol,
count(tx_hash) AS withdraw_transactions,
SUM(amount_usd) AS withdraw_amount_usd,
FROM ethereum.core.ez_token_transfers
WHERE from_address = '0x8bc93498b861fd98277c3b51d240e7e56e48f23c'
AND to_address <> '0x0000000000000000000000000000000000000000'
AND block_timestamp::date >= '2024-08-22'
GROUP BY 1,2
),
depositors AS (
SELECT
depositor,
LISTAGG(symbol, ',') WITHIN GROUP (
ORDER BY
symbol
) AS deposit_tokens,
SUM(deposit_transactions) AS deposit_transactions,
SUM(deposit_amount_usd) AS deposit_amount_usd
Auto-refreshes every 1 hour
QueryRunArchived: QueryRun has been archived