Token Symbol | Poisoning Transactions | Poison Wallets | Wallets Affected | USD | Token Amount | |
---|---|---|---|---|---|---|
1 | 60 | 10063 | 6712 | 7361 | 8.680585471 | 1474.497801324 |
Popex404Poisoning #1 Number Metrics
Updated 2025-01-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
count (distinct symbol) as "Token Symbol",
count(*) as "Poisoning Transactions",
count(distinct From_Address) as "Poison Wallets",
count(distinct To_Address) as "Wallets Affected",
sum(amount_usd) as "USD",
sum(amount) as "Token Amount"
from ethereum.core.ez_token_transfers
where amount_usd < 0.1
and substr(from_address,0,5) = substr(to_address,0,5)
and substr(from_address,-5,5) = substr(to_address,-5,5)
and from_address != to_address
and from_address not in (select address from ethereum.core.dim_labels)
Last run: about 2 months ago
1
49B
23s