freemartianWayfinder TVL
    Updated 26 minutes ago
    WITH prices AS(
    -- the last price of a day
    SELECT
    hour AS price_day,
    price,
    ROW_NUMBER() OVER (PARTITION BY DATE_TRUNC('DAY', hour) ORDER BY hour DESC) AS row_num
    FROM ethereum.price.ez_prices_hourly
    WHERE token_address = '0xb23d80f5fefcddaa212212f028021b41ded428cf'
    AND hour::date >= '2024-06-01'
    qualify row_num = 1
    ORDER BY 1 ASC
    ),

    deposits AS (
    SELECT
    block_timestamp,
    tx_hash,
    decoded_log:user AS user,
    decoded_log:amount / pow(10,18) AS amount,
    -- price * (decoded_log:amount / pow(10,18)) AS amount_usd,
    'Deposit' AS label
    FROM ethereum.core.ez_decoded_event_logs
    -- INNER JOIN prices ON (block_timestamp::date = price_day)

    WHERE contract_address = '0x4a3826bd2e8a31956ad0397a49efde5e0d825238'
    AND event_name = 'DepositCreated'
    AND block_timestamp::date >= '2024-06-01'

    ),

    withdraws AS (
    SELECT
    block_timestamp,
    tx_hash,
    decoded_log:user AS user,
    decoded_log:totalAmount / pow(10,18) AS amount,
    Last run: 26 minutes agoAuto-refreshes every 1 hour
    TIME
    PRIME_TVL
    USD_TVL
    1
    2025-04-04 00:00:00.0002476139586664882.5
    2
    2025-04-03 00:00:00.0002473912680649550.76
    3
    2025-04-02 00:00:00.0002473373083600007.4
    4
    2025-04-01 00:00:00.0002472621690992474.88
    5
    2025-03-31 00:00:00.0002474118189315663.41
    6
    2025-03-30 00:00:00.0002471670883048138.88
    7
    2025-03-29 00:00:00.0002471699884779303.14
    8
    2025-03-28 00:00:00.0002467724085383250.4
    9
    2025-03-27 00:00:00.0002466311697419308.2
    10
    2025-03-26 00:00:00.0002469592398042814.31
    11
    2025-03-25 00:00:00.00024684681103922507.01
    12
    2025-03-24 00:00:00.0002465547599854673.75
    13
    2025-03-23 00:00:00.0002460347992755115.83
    14
    2025-03-22 00:00:00.0002458389598089741.05
    15
    2025-03-21 00:00:00.0002461043295734580.48
    16
    2025-03-20 00:00:00.00024632011104439726.64
    17
    2025-03-19 00:00:00.00024604360105552704.4
    18
    2025-03-18 00:00:00.00024540763106997726.68
    19
    2025-03-17 00:00:00.00024533388116042925.24
    20
    2025-03-16 00:00:00.0002454845598439304.55
    ...
    305
    15KB
    55s