DATE | TRANSACTIONS | SENDERS | VOLUME_ETH | |
---|---|---|---|---|
1 | 2025-01-24 00:00:00.000 | 2692 | 1822 | 1.2643 |
2 | 2025-01-15 00:00:00.000 | 4380 | 3465 | 2.28114 |
3 | 2025-01-08 00:00:00.000 | 2829 | 2197 | 1.32008 |
4 | 2024-12-26 00:00:00.000 | 4650 | 3271 | 2.34378 |
5 | 2025-03-10 00:00:00.000 | 2266 | 1224 | 1.051409875 |
6 | 2024-12-15 00:00:00.000 | 2167 | 1316 | 1.16528 |
7 | 2025-02-20 00:00:00.000 | 2294 | 1014 | 0.81208 |
8 | 2024-12-12 00:00:00.000 | 3375 | 1865 | 1.771165 |
9 | 2025-01-14 00:00:00.000 | 2943 | 1888 | 1.50626 |
10 | 2024-12-23 00:00:00.000 | 2724 | 1813 | 1.30964 |
11 | 2025-02-18 00:00:00.000 | 609 | 436 | 0.26928 |
12 | 2024-12-29 00:00:00.000 | 4518 | 2867 | 1.64314 |
13 | 2024-12-24 00:00:00.000 | 4830 | 3151 | 2.41048 |
14 | 2025-02-21 00:00:00.000 | 5014 | 1842 | 1.72346 |
15 | 2025-03-12 00:00:00.000 | 1532 | 689 | 0.879564577 |
16 | 2025-02-03 00:00:00.000 | 1027 | 775 | 0.4667 |
17 | 2024-10-23 00:00:00.000 | 17189 | 14826 | 14.0657587 |
18 | 2024-12-07 00:00:00.000 | 587 | 382 | 0.089850695 |
19 | 2025-01-13 00:00:00.000 | 2293 | 1608 | 1.1194 |
20 | 2025-03-09 00:00:00.000 | 1381 | 594 | 0.5364 |
Pine Analyticsconvenient-green
Updated 2025-03-19
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
date(block_timestamp) as date,
count(distinct tx_id) as transactions,
count(distinct tx_from) as senders,
sum(amount / power(10, 9)) as volume_eth
from eclipse.core.fact_transfers
where tx_to like 'AsSKqK7CkxFUf3KaoQzzr8ZLPm5fFguUtVE5QwGALQQn'
and mint like 'Eth1111111111111111111111111111111111111111'
---limit 100
group by 1
Last run: about 1 month ago
...
127
6KB
3s