h4wkbase total
    Updated 8 hours ago
    -- forked from base @ https://flipsidecrypto.xyz/studio/queries/610cf80c-510e-40e7-b1fa-d7ee101b910d

    with dbr_lfg as (
    select distinct tx_id
    from solana.core.fact_events
    where program_id = 'DBrLFG4dco1xNC5Aarbt3KEaKaJ5rBYHwysqZoeqsSFE'
    and block_timestamp > '2024-10-15'
    )
    , base as (
    select block_timestamp,
    case when tx_from = '7od884qfm9vWEdKQALsXZ72xR9hdYedsqmkqHKJwC78G' then 'Withdraw' else 'Deposit' end as type,
    case when tx_from = '7od884qfm9vWEdKQALsXZ72xR9hdYedsqmkqHKJwC78G' then tx_to else tx_from end as user_address,
    amount,
    tx_id
    from solana.core.fact_transfers a
    -- join dbr_lfg b using (tx_id)
    where block_timestamp > '2024-10-15'
    and (tx_to = '7od884qfm9vWEdKQALsXZ72xR9hdYedsqmkqHKJwC78G' or tx_from = '7od884qfm9vWEdKQALsXZ72xR9hdYedsqmkqHKJwC78G')
    and mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
    and block_id >= 295723843 and block_id <= 295910833
    order by block_timestamp desc
    )

    select
    -- type,
    count(distinct case when type = 'Deposit' then tx_id else null end) as deposit_tx,
    count(distinct case when type = 'Deposit' then user_address else null end) as user_count,
    sum(zeroifnull(case when type = 'Deposit' then amount end)) as deposit_amount,
    sum(zeroifnull(case when type = 'Withdraw' then amount end)) as withdraw_amount,
    deposit_amount - withdraw_amount as net_amount,
    net_amount / deposit_tx as avg_amount,
    net_amount / 5000000 * 100 as perc_filled,
    max(block_timestamp) as latest_update_UTC
    from base
    Last run: about 8 hours agoAuto-refreshes every 24 hours
    DEPOSIT_TX
    USER_COUNT
    DEPOSIT_AMOUNT
    WITHDRAW_AMOUNT
    NET_AMOUNT
    AVG_AMOUNT
    PERC_FILLED
    LATEST_UPDATE_UTC
    1
    227618463075789.243152202420.6244562873368.6186961262.46424371557.4673723742024-10-16 08:00:07.000
    1
    111B
    12s