0xHaM-dOver Time copy
    Updated 2025-04-01
    -- forked from Over Time @ https://flipsidecrypto.xyz/studio/queries/ab763be2-fab6-4de7-9d3a-e64a50d1aecd

    WITH from_eth_to_ron as ( -- native bridge
    select
    BLOCK_TIMESTAMP,
    TX_HASH,
    ORIGIN_FROM_ADDRESS as sender,
    DECODED_LOG:receipt:mainchain:tokenAddr as token_address,
    DECODED_LOG:receipt:ronin:addr as receiver,
    DECODED_LOG:receipt:ronin:tokenAddr as destination_tokenAddr,
    DECODED_LOG:receipt:info:quantity as quantity,
    'Ethereum'::VARCHAR as BLOCKCHAIN,
    'axie infinity: ronin bridge v2'::VARCHAR as platform,
    'ronin'::VARCHAR as destination_chain,
    'inbound'::VARCHAR as direction,
    coalesce(p.symbol,cont.symbol)::VARCHAR as symbol,
    (log.DECODED_LOG:receipt:info:quantity::int/pow(10,p.decimals)) as amount,
    (log.DECODED_LOG:receipt:info:quantity::int/pow(10,p.decimals))*p.price as amount_usd,
    from ethereum.core.ez_decoded_event_logs log
    left join crosschain.price.ez_prices_hourly p on (date_trunc('hour',log.block_timestamp)=p.hour and log.DECODED_LOG:receipt:mainchain:tokenAddr=p.token_address)
    left join ethereum.core.dim_contracts cont on (log.DECODED_LOG:receipt:mainchain:tokenAddr=cont.address)
    where log.TOPIC_0 = '0xd7b25068d9dc8d00765254cfb7f5070f98d263c8d68931d937c7362fa738048b'
    and log.block_timestamp >= '2025-01-01'
    and log.TX_SUCCEEDED = TRUE
    and p.BLOCKCHAIN='ethereum'
    and log.CONTRACT_ADDRESS = '0x64192819ac13ef72bf6b5ae239ac672b43a9af08'
    )
    ,
    from_ron_to_eth as ( -- native bridge
    with
    bridge_data as (
    select
    BLOCK_TIMESTAMP,
    TX_HASH,
    ORIGIN_FROM_ADDRESS::VARCHAR as sender,
    regexp_substr_all(SUBSTR(DATA, 3, len(DATA)), '.{64}') AS segmented_data,
    Last run: 9 days ago
    DATE
    N_TRANSACTIONS
    N_BRIDGERS
    N_TOKENS
    VOLUME
    AVG_VOLUME
    MEDIAN_VOLUME
    NET_VOLUME
    TOTAL_N_TRANSACTIONS
    TOTAL_VOLUME
    TOTAL_NET_VOLUME
    1
    2025-04-03 00:00:00.00065487189896.4308948083274.07639473842.800415367-171781.26376421615198127450452.20057652502951.8567871
    2
    2025-04-02 00:00:00.0002281748943064.7648102564154.47032956137.8566488962.47455882815133127260555.76968152674733.1205514
    3
    2025-04-01 00:00:00.0002902198478915.6581688521674.53027331849.678436601115291.93633058214905126317491.0048752185770.6459925
    4
    2025-03-31 00:00:00.0001671389178977.3129861971071.72043704345.55925-8636.43325900614615125838575.34670252070478.7096619
    5
    2025-03-30 00:00:00.00017413510317183.8203731661833.43248770639.408332925-21116.13684323714448125659598.03371552079115.1429209
    6
    2025-03-29 00:00:00.0001731387119633.84733211716.37034330632.105238-57021.10501896814274125342414.21334252100231.2797642
    7
    2025-03-28 00:00:00.000236184111320876.184223685718.07871958348.527534993769.21476983714101125222780.3660152157252.3847831
    8
    2025-03-27 00:00:00.000254213102173810.342576768660.59897440929.99373-1753175.7901855513865123901904.18178651163483.1700133
    9
    2025-03-26 00:00:00.00035426710433459.6618427861249.1632906134.01566269744.34797124613611121728093.8392152916658.9601989
    10
    2025-03-25 00:00:00.00031925711321838.8763356551034.85169239810.744292-67899.98537098113257121294634.17736752646914.6122276
    11
    2025-03-24 00:00:00.0001931569184861.0968889181004.67987439624.825015358-16542.01489289212938120972795.30103152714814.5975986
    12
    2025-03-23 00:00:00.000219167977254.948736505354.38049879132.235798855-41968.9880782212745120787934.20414252731356.6124915
    13
    2025-03-22 00:00:00.0002081565108338.102024844523.3724735529.69983571422869.76340949912526120710679.25540652773325.6005697
    14
    2025-03-21 00:00:00.00026820211212352.945367935795.32938340150.700026284-47026.534236412318120602341.15338152750455.8371602
    15
    2025-03-20 00:00:00.00025620813226121.214475678908.11732721235.92963250151469.71290042512050120389988.20801352797482.3713966
    16
    2025-03-19 00:00:00.00020417112539107.3794269382655.70137648750.474043154220715.37966683311794120163866.99353752746012.6584962
    17
    2025-03-18 00:00:00.00022018711570948.15027552607.0691793447.853369148.44674485711590119624759.6141152525297.2788294
    18
    2025-03-17 00:00:00.00031023615266699.14078601904.0648840256.6259128122.54987124511370119053811.46383552156148.8320845
    19
    2025-03-16 00:00:00.00018413511109925.530963403600.68596154953.44528-39558.22523460311060118787112.32304952028026.2822132
    20
    2025-03-15 00:00:00.00017514010291247.7618719141673.83771190857.74242350397817.75868921710876118677186.79208652067584.5074479
    62
    8KB
    164s