leo_escobar15000
Updated 2024-08-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
with tr as
(select from_address, sum(value)*2 as val
from sei.core_evm.fact_transactions
where TO_ADDRESS = '0x613cb5b7a8ffd4304161f30fba46ce4284c25e21'
and status = 'SUCCESS'
group by 1
)
select from_address, val
from tr
where val > 14999
and val <50000
order by 2 desc
QueryRunArchived: QueryRun has been archived