LABEL | USERS | AMOUNT | |
---|---|---|---|
1 | Cachers | 32765 | 57407167.6729322 |
2 | Kaito | 1230 | 4200591.63943568 |
3 | WayFinder App Campaign | 89713 | 11539439.0373048 |
freemartianTotal claims per campaigns
Updated 2 days ago
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,
'Base Deposit' AS label
Last run: 1 day agoAuto-refreshes every 1 hour
3
118B
197s