FROM_RONIN_BRIDGE_TRANSACTIONS | FROM_RONIN_BRIDGERS | FROM_RONIN_LAST_24H_TRANSACTIONS | TO_RONIN_BRIDGE_TRANSACTIONS | TO_RONIN_BRIDGERS | TO_RONIN_LAST_24H_TRANSACTIONS | TOTAL_BRIDGE_TRANSACTIONS | TOTAL_BRIDGERS | TOTAL_LAST_24H_TRANSACTIONS | |
---|---|---|---|---|---|---|---|---|---|
1 | 224 | 107 | 1 | 358 | 133 | 0 | 582 | 240 | 1 |
datavortexNFT bridges
Updated 2025-03-19
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 transfer_from_ronin AS (
SELECT
t.tx_hash,
MAX(t.decoded_log:to) AS bridger,
MAX(t.contract_address) AS contract_address,
MAX(t.block_timestamp) AS event_timestamp,
MAX(DATE_TRUNC('day', t.block_timestamp)) AS event_date
FROM
ronin.core.ez_decoded_event_logs t
WHERE
t.event_name = 'Transfer'
AND t.ORIGIN_FUNCTION_SIGNATURE = '0xb9afa177'
AND t.decoded_log:from = '0x0cf8ff40a508bdbc39fbe1bb679dcba64e65c7df'
AND t.contract_address IN (
'0xf083289535052e8449d69e6dc41c0ae064d8e3f6',
'0x241a81fc0d6692707dad2b5025a3a7cf2cf25acf',
'0x1f7c16fce4fc894143afb5545bf04f676bf7dcf3'
)
GROUP BY
t.tx_hash
),
transfer_to_ronin AS (
SELECT
t.tx_hash,
MAX(t.decoded_log:from) AS bridger,
MAX(t.contract_address) AS contract_address,
MAX(t.block_timestamp) AS event_timestamp,
MAX(DATE_TRUNC('day', t.block_timestamp)) AS event_date
FROM
ronin.core.ez_decoded_event_logs t
WHERE
t.event_name = 'Transfer'
AND t.ORIGIN_FUNCTION_SIGNATURE = '0x0b1ff17f'
AND t.decoded_log:to = '0x0cf8ff40a508bdbc39fbe1bb679dcba64e65c7df'
AND t.contract_address IN (
'0xf083289535052e8449d69e6dc41c0ae064d8e3f6',
Last run: about 2 months ago
1
33B
9s