SandeshRonin all bridge data
    Updated 2025-02-24
    with combined as
    (
    select *, volume as volume_adj from $query('c9cb7b00-6571-46d0-8fcf-98ddd0918d00') -- eth to ronin native
    union all
    select *, volume *-1 as volume_adj from $query('0f7064ce-f741-4478-b2fb-36ad3299fe87') -- ronin to eth native
    union all
    select *, volume as volume_adj from $query('12e4fd6e-d1cf-4de9-a264-52f2cbc27427') -- eth to ronin ccip
    union all
    select *, volume as volume_adj from $query('eb0fed1b-bf9c-4bd5-94cb-3e7ab26172bc') -- base to ronin ccip
    union all
    select *, volume *-1 as volume_adj from $query('22d4f224-9dde-43f6-9bd1-6b9b14e96140')-- ronin to base and eth ccip

    )
    select date_trunc('day',date) as time, token_symbol, sum(coalesce(volume,0))::FLOAT as volume_daily, sum(coalesce(volume_adj,0))::FLOAT as volume_adj_daily
    , sum(volume_adj_daily) over (order by time asc)::FLOAT as total_volume
    from combined
    group by time, token_symbol

    Last run: 2 months ago
    TIME
    TOKEN_SYMBOL
    VOLUME_DAILY
    VOLUME_ADJ_DAILY
    TOTAL_VOLUME
    1
    2025-02-02 00:00:00.000LUAUSD12574.61-12574.61-6175463.64114357
    2
    2025-01-06 00:00:00.000APRS2134.765575-2134.765575-6826508.84662416
    3
    2025-01-03 00:00:00.000Farm Land00-2031678.65165966
    4
    2025-01-20 00:00:00.000Farm Land00-2231207.99285732
    5
    2025-01-18 00:00:00.000WETH2176904.919284821980032.60871638-1528790.8122251
    6
    2025-02-10 00:00:00.000KONGZ VX00-11046572.2270528
    7
    2025-02-20 00:00:00.000AXS5115.6657303233654.006410391-5379805.01326482
    8
    2025-02-23 00:00:00.000AXS362052.455980565357181.205074865-4035078.22983811
    9
    2025-01-16 00:00:00.000WETH759966.278776106648638.555938778-4087653.81336316
    10
    2025-01-09 00:00:00.000Farm Land00-10719022.1725543
    11
    2025-01-05 00:00:00.000WETH457589.903558236189814.262279196-1893609.27941265
    12
    2025-02-06 00:00:00.000USDC254701.711296374-73134.854115496-7260655.79051483
    13
    2025-01-03 00:00:00.000WETH1092119.66950283-985089.638821609-2031678.65165966
    14
    2025-02-24 00:00:00.000USDC90326.776518968-82106.794890058-5382964.81205132
    15
    2025-01-26 00:00:00.000USDC329306.235747853274544.043591071-6100711.00053385
    16
    2025-01-14 00:00:00.000AXS67288.35324281717345.143002121-9922004.15124306
    17
    2025-02-11 00:00:00.000Farm Land00-10905610.1533689
    18
    2025-02-21 00:00:00.000Farm Land00-4891980.16625081
    19
    2025-02-08 00:00:00.000BANANA2261.9061794712189.585739607-10012284.5443096
    20
    2025-01-08 00:00:00.000WETH89162.99806125415721.627237418-7515658.53869413
    ...
    543
    43KB
    4s