freemartianBorrow Token population
    Updated 2024-12-08
    with prices AS (
    SELECT
    hour::date AS day,
    symbol,
    AVG(price) AS price
    FROM aptos.price.ez_prices_hourly
    GROUP BY 1,2
    ),

    borrow AS(
    SELECT
    block_timestamp,
    tx_hash,
    event_data:account_addr AS wallet,
    tokens.symbol,
    event_data:amount/pow(10,decimals) AS amount,
    (event_data:amount/pow(10,decimals))*price AS amount_usd,
    FROM aptos.core.fact_events ev
    JOIN aptos.core.fact_transfers trans using(TX_HASH)
    JOIN aptos.core.dim_tokens tokens using(TOKEN_ADDRESS)
    INNER JOIN prices p ON (block_timestamp::date = day AND p.symbol = tokens.symbol)
    WHERE event_type = '0xc6bc659f1649553c1a3fa05d9727433dc03843baac29473c817d06d39e7621ba::lending::BorrowEvent'
    GROUP BY all
    )

    SELECT
    symbol,
    SUM(amount_usd) AS amount_usd
    FROM borrow
    GROUP BY 1





    Auto-refreshes every 1 hour
    QueryRunArchived: QueryRun has been archived