0xBlackfishUSDC Transfers
Updated 2023-02-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with
senders as (
select
distinct t.tx_from as pub_key
from solana.core.fact_transfers t
where
t.mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
and t.amount >= 25000
)
, receivers as (
select
distinct t.tx_to as pub_key
from solana.core.fact_transfers t
where
t.mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
and t.amount >= 25000
)
select
distinct coalesce(s.pub_key,r.pub_key)
from senders s
full outer join receivers r on r.pub_key = s.pub_key
Run a query to Download Data