freemartianALL CHAINS
Updated 2023-06-02
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 total as (
select
sum(amount) as Stolen_Fund,
sum(amount * token_price) as Stolen_Fund_USD,
Symbol as Token,
'Optimism' as Network
from optimism.core.ez_token_transfers
where to_address in (
'0x2162b6caa174b90416090bd4a87e7d08f7027c48',
'0x9fa7bb759641fcd37fe4ae41f725e0f653f2c726',
'0x29b32f1320e2e78fa66a92e5114a125e68e75e88',
'0x63605E53D422C4F1ac0e01390AC59aAf84C44A51',
'0xd7d1D6692E0612A632A78fAb5a82E9c767d518bF')
group by symbol, Network
UNION
select
sum(amount) as Stolen_Fund,
sum(amount * token_price) as Stolen_Fund_USD,
Symbol as Token,
'Arbitrum' as Network
from arbitrum.core.ez_token_transfers
where to_address in (
'0x2162b6caa174b90416090bd4a87e7d08f7027c48',
'0x9fa7bb759641fcd37fe4ae41f725e0f653f2c726',
'0x29b32f1320e2e78fa66a92e5114a125e68e75e88',
'0x63605E53D422C4F1ac0e01390AC59aAf84C44A51',
'0xd7d1D6692E0612A632A78fAb5a82E9c767d518bF')
group by symbol, Network
UNION
select
sum(amount) as Stolen_Fund,
sum(amount * token_price) as Stolen_Fund_USD,
Run a query to Download Data