saeedmzn[Ronin-bridge ] - Total
Updated 2025-02-12
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 to_ronin_txns as (
with txns as (
select tx_hash
from ethereum.core.fact_event_logs
where CONTRACT_ADDRESS in ('0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2','0x64192819ac13ef72bf6b5ae239ac672b43a9af08')
and block_timestamp::date >= '2024-10-01'
group by 1
),
eth_to_ronin as (
select
BLOCK_TIMESTAMP::date date ,
tx_hash ,
ORIGIN_FROM_ADDRESS wallet ,
'ETH' symbol ,
amount ,
amount_usd
from ethereum.core.ez_native_transfers
where tx_hash in (select * from txns)
and to_address in ('0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2','0x64192819ac13ef72bf6b5ae239ac672b43a9af08')
),
tokens_to_ronin as (
select
BLOCK_TIMESTAMP::date date ,
tx_hash ,
ORIGIN_FROM_ADDRESS wallet ,
symbol ,
amount ,
amount_usd
from ethereum.core.ez_token_transfers
where tx_hash in (select * from txns)
and to_address in ('0x1a2a1c938ce3ec39b6d47113c7955baa9dd454f2','0x64192819ac13ef72bf6b5ae239ac672b43a9af08')
)
select * from eth_to_ronin
UNION
select * from tokens_to_ronin
),
QueryRunArchived: QueryRun has been archived