datavortexTotals
    Updated 2025-02-11
    /*
    SELECT DISTINCT symbol, name, price, decimals from ronin.price.ez_prices_hourly
    where name ilike '%Koku The Shikoku%'
    */
    /*
    SELECT tx_hash, decoded_log: from ronin.core.ez_decoded_event_logs
    where event_name = 'Swap'
    limit 50
    */
    --_amount0In":
    --"_amount1In": 0,
    /*
    SELECT
    tx_hash,
    COALESCE(NULLIF(decoded_log:_amount0In, 0), decoded_log:_amount1In)/1e18 AS input_amount
    FROM ronin.core.ez_decoded_event_logs
    WHERE event_name = 'Swap'
    LIMIT 50;
    */
    /*
    SELECT tx_hash,
    contract_name,
    SPLIT_PART(contract_name, ' - ', 1) AS clean_name,
    SPLIT_PART(contract_name, ' - ', 2) AS clean_name2,
    decoded_log,
    decoded_log:_amount0In::int,
    decoded_log:_amount1In::int
    FROM ronin.core.ez_decoded_event_logs
    where event_name = 'Swap'
    LIMIT 200
    */




    /*