rezarwzSIG Particle
Updated 2024-03-24
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
›
⌄
SELECT
tx_hash,
ORIGIN_FUNCTION_SIGNATURE as sig,
n_tx
from
blast.core.fact_transactions f
inner join (
SELECT
count(tx_hash) as n_tx,
ORIGIN_FUNCTION_SIGNATURE as sig
from
blast.core.fact_transactions f
where
to_address = '0x121b5ac4de4a3e6f4171956bc26ceda40cb61a56'
and STATUS = 'SUCCESS'
group by
2
) as t on t.SIG = f.ORIGIN_FUNCTION_SIGNATURE
where
to_address = '0x121b5ac4de4a3e6f4171956bc26ceda40cb61a56'
and STATUS = 'SUCCESS'
and (
ORIGIN_FUNCTION_SIGNATURE,
block_timestamp
) in (
SELECT
ORIGIN_FUNCTION_SIGNATURE,
max(block_timestamp) as block_timestamp
from
blast.core.fact_transactions
where
to_address = '0x121b5ac4de4a3e6f4171956bc26ceda40cb61a56'
and STATUS = 'SUCCESS'
group by
1
)
QueryRunArchived: QueryRun has been archived