freemartian3 type of airdrops
Updated 2025-04-22
999
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
eth_deposits AS (
SELECT
block_timestamp,
tx_hash,
decoded_log:user :: string AS user,
decoded_log:amount / pow(10,18) AS amount,
'Ethereum Deposit' AS label
FROM ethereum.core.ez_decoded_event_logs
WHERE contract_address = '0x4a3826bd2e8a31956ad0397a49efde5e0d825238'
AND event_name = 'DepositCreated'
AND block_timestamp::date >= '2024-06-01'
),
eth_withdraws AS (
SELECT
block_timestamp,
tx_hash,
decoded_log:user :: string AS user,
decoded_log:totalAmount / pow(10,18) AS amount,
'Ethereum Withdraw' AS label
FROM ethereum.core.ez_decoded_event_logs
WHERE contract_address = '0x4a3826bd2e8a31956ad0397a49efde5e0d825238'
AND event_name = 'DepositsWithdrawn'
AND block_timestamp::date >= '2024-06-01'
),
base_deposits AS(
SELECT
block_timestamp,
tx_hash,
from_address :: string AS user,
amount,
Auto-refreshes every 1 hour
QueryRunArchived: QueryRun has been archived