0xHaM-dTest III by Asset
    Updated 3 days ago
    WITH eth_to_ronin_native as (
    select
    'ethereum'::VARCHAR as blockchain
    , 'axie infinity: ronin bridge v2'::VARCHAR as platform
    , edl.block_number::INT as block_number
    , edl.block_timestamp::TIMESTAMP as block_timestamp
    , edl.tx_hash::VARCHAR as tx_hash
    , 'ethereum'::VARCHAR as source_chain
    , 'ronin'::VARCHAR as destination_chain
    , edl.origin_to_address::VARCHAR as bridge_address
    , edl.origin_from_address::VARCHAR as source_address
    , edl.decoded_log['receipt']['ronin']['addr']::VARCHAR as destination_address
    , 'outbound'::VARCHAR as direction
    , edl.decoded_log['receipt']['mainchain']['tokenAddr']::VARCHAR as token_address
    , coalesce(pr.symbol,dc.symbol)::VARCHAR as token_symbol
    , edl.decoded_log['receipt']['info']['quantity']::DOUBLE as amount_unadj
    , (edl.decoded_log['receipt']['info']['quantity']/pow(10,pr.decimals))::DOUBLE as amount
    , (edl.decoded_log['receipt']['info']['quantity']/pow(10,pr.decimals))*pr.price::DOUBLE as amount_usd
    , current_timestamp() as inserted_timestamp
    , current_timestamp() as modified_timestamp
    -- , row_number() over (order by edl.block_timestamp asc, edl.tx_hash asc) as ez_bridge_activity_id
    from ethereum.core.ez_decoded_event_logs edl
    left join crosschain.price.ez_prices_hourly pr
    on (date_trunc('hour',edl.block_timestamp)=pr.hour and edl.decoded_log['receipt']['mainchain']['tokenAddr']=pr.token_address)
    left join ethereum.core.dim_contracts dc
    on (edl.decoded_log['receipt']['mainchain']['tokenAddr']=dc.address)
    where 1=1
    and edl.block_timestamp >= '2025-01-01'
    and edl.topics[0]=lower('0xd7b25068d9dc8d00765254cfb7f5070f98d263c8d68931d937c7362fa738048b')
    and pr.blockchain='ethereum'
    )
    , ronin_to_ethereum_native_bridge as
    (
    with bridge_data as
    (
    select regexp_substr_all(SUBSTR(data,3),'.{64}') as segmented
    Last run: 3 days ago
    TOKEN_SYMBOL
    VOLUME_DAILY
    1
    PIXEL69455399.0895628
    2
    WETH62875171.9950872
    3
    USDC20729969.9233865
    4
    AXS19958967.5644437
    5
    YGG4336515.4982699
    6
    APRS2330848.37237548
    7
    JAIHOZ1033050.73775212
    8
    ZENT942519.831788468
    9
    BANANA164658.273138175
    10
    LUAUSD99030.759336064
    11
    KOGIN74213.359914536
    12
    LINK55689.321045558
    13
    CGX23699.234133354
    14
    SLP16051.60897896
    15
    WBTC15245.66587071
    16
    LUA6400.12161105
    16
    408B
    230s