Afonso_DiazBy Asset
Updated 2025-03-17
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
main as (
select
tx_hash,
block_timestamp,
origin_from_address as user,
symbol,
contract_address as token_address,
amount_usd
from
avalanche.core.ez_token_transfers
where
origin_to_address = '0x1fd108cf42a59c635bd4703b8dbc8a741ff834be'
and origin_function_signature = '0xab875026'
union all
select
tx_hash,
block_timestamp,
origin_from_address as user,
'AVAX' as symbol,
null,
amount_usd
from
avalanche.core.ez_native_transfers
where
origin_to_address = '0x1fd108cf42a59c635bd4703b8dbc8a741ff834be'
and origin_function_signature = '0x4ae67c59'
)
select
symbol,
count(distinct tx_hash) as transactions,
count(distinct user) as users,
QueryRunArchived: QueryRun has been archived