DATE | SYMBOL | ACTIONS | TIP_GIVER | TIP_AMOUNT | AVERAGE_TIP_AMOUNT | MIN_TIP_AMOUNT | MAX_TIP_AMOUNT | CUMULATIVE_ACTIONS | CUMULATIVE_TIP_AMOUNT | |
---|---|---|---|---|---|---|---|---|---|---|
1 | 2025-04-28 00:00:00.000 | AVAX | 40 | 31 | 403.35 | 10.08375 | 0.01 | 213.6 | 109950 | 6969784.59 |
2 | 2025-04-28 00:00:00.000 | ARENA | 213 | 36 | 6634.966962889 | 30.022474945 | 0.01420632171 | 2625.544 | 365447 | 11047779.0430907 |
3 | 2025-04-28 00:00:00.000 | BLUB | 1 | 1 | 2.503825176 | 2.503825176 | 2.503825176 | 2.503825176 | 365447 | 11047779.0430907 |
4 | 2025-04-28 00:00:00.000 | COQ | 9 | 7 | 1.070559327 | 0.06690995793 | 0.00007327431678 | 0.9358022101 | 365447 | 11047779.0430907 |
5 | 2025-04-28 00:00:00.000 | MU | 2 | 2 | 0.2712463887 | 0.1356231944 | 0.1303203307 | 0.140926058 | 365447 | 11047779.0430907 |
6 | 2025-04-28 00:00:00.000 | WINK | 3 | 3 | 0.02468137213 | 0.008227124043 | 0.005464510435 | 0.0101093443 | 138574 | 614825.766613898 |
7 | 2025-04-28 00:00:00.000 | COQ | 483 | 109 | 23.471782832 | 0.04859582367 | 6.71493087e-10 | 2.685972348 | 138574 | 614825.766613898 |
8 | 2025-04-28 00:00:00.000 | TECH | 14 | 10 | 0.008062584913 | 0.0005758989224 | 4.977826087e-7 | 0.005077382609 | 138574 | 614825.766613898 |
9 | 2025-04-28 00:00:00.000 | BOI | 4 | 4 | 4.397474442 | 1.099368611 | 0.1809405771 | 3.54542 | 365447 | 11047779.0430907 |
10 | 2025-04-28 00:00:00.000 | KET | 2 | 1 | 2.149557652 | 1.074778826 | 0.7165192174 | 1.433038435 | 138574 | 614825.766613898 |
11 | 2025-04-28 00:00:00.000 | NOCHILL | 4 | 2 | 0.2996481561 | 0.07491203903 | 0.04924733671 | 0.0834669398 | 365447 | 11047779.0430907 |
12 | 2025-04-28 00:00:00.000 | AVAX | 107 | 66 | 739.197679925 | 6.908389532 | 0.00214291913 | 91.839391304 | 138574 | 614825.766613898 |
13 | 2025-04-28 00:00:00.000 | BOI | 108 | 48 | 40.775305443 | 0.3775491245 | 0.00001658949 | 3.6973918 | 138574 | 614825.766613898 |
14 | 2025-04-28 00:00:00.000 | MEAT | 35 | 16 | 0.1331858063 | 0.003805308752 | 0.000001465652174 | 0.0732826087 | 138574 | 614825.766613898 |
15 | 2025-04-28 00:00:00.000 | BLUB | 22 | 10 | 0.2268470565 | 0.01031122984 | 0.0001754010278 | 0.1037285389 | 138574 | 614825.766613898 |
16 | 2025-04-28 00:00:00.000 | WINK | 1 | 1 | 0.110972407 | 0.110972407 | 0.110972407 | 0.110972407 | 365447 | 11047779.0430907 |
17 | 2025-04-28 00:00:00.000 | NOCHILL | 23 | 18 | 11.014952806 | 0.4789109916 | 0.00005235425217 | 5.816557417 | 138574 | 614825.766613898 |
18 | 2025-04-28 00:00:00.000 | GURS | 123 | 36 | 1.423077478 | 0.01156973559 | 1.116086957e-7 | 0.1450913043 | 138574 | 614825.766613898 |
19 | 2025-04-28 00:00:00.000 | MU | 17 | 9 | 8.764239085 | 0.5155434756 | 0.0008361094957 | 3.309600087 | 138574 | 614825.766613898 |
20 | 2025-04-28 00:00:00.000 | KIMBO | 8 | 6 | 0.09983580437 | 0.01247947555 | 0.00002694597391 | 0.07282695652 | 138574 | 614825.766613898 |
Ali3NDately Tipping Activity Over Time (Arena App Avalanche)
Updated 13 hours ago
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 arenauserst as (
select from_address as ArenaUser
from avalanche.core.fact_transactions
where to_address = '0xc605c2cf66ee98ea925b1bb4fea584b71c00cc4c'
and from_address != '0xc605c2cf66ee98ea925b1bb4fea584b71c00cc4c'),
pricet as (
select hour::date as day,
token_address,
symbol,
decimals,
avg (price) as usdprice
from avalanche.price.ez_prices_hourly
where hour >= '2025-01-23 00:00:00.000'
group by 1,2,3,4),
arenatipsendt as (
select block_timestamp,
tx_hash,
origin_from_address as tipper,
'AVAX' as symbol,
decoded_log:total*usdprice/1e18 as amount
from avalanche.core.ez_decoded_event_logs t1 join pricet t2 on t1.block_timestamp::Date = t2.day and t2.symbol = 'WAVAX'
where origin_tO_address = '0xf60fadfb18820c58af892692838b354fc808fd61'
and contract_address = '0xf60fadfb18820c58af892692838b354fc808fd61'
and origin_function_signature = '0xbb4c9f0b'
and tx_succeeded
union all
select block_timestamp,
tx_hash,
origin_from_address as tipper,
symbol,
decoded_log:total*usdprice/pow(10,decimals) as amount
from avalanche.core.ez_decoded_event_logs t1 join pricet t2 on t1.block_timestamp::Date = t2.day and t1.decoded_log:token = t2.token_address
Last run: about 13 hours agoAuto-refreshes every 24 hours
...
1186
131KB
43s