rezarwzSIG FINDER
Updated 2024-03-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
SELECT
DISTINCT ORIGIN_FUNCTION_SIGNATURE,
tx_hash
FROM
blast.core.fact_transactions
Where
to_address = '0x4300000000000000000000000000000000000003'
and (
block_timestamp,
ORIGIN_FUNCTION_SIGNATURE
) in(
SELECT
max(block_timestamp),
ORIGIN_FUNCTION_SIGNATURE
FROM
blast.core.fact_transactions
Where
to_address = '0x4300000000000000000000000000000000000003'
group by
2
)
QueryRunArchived: QueryRun has been archived