MrftiHONEY-WBERA-LP copy
    Updated 10 days ago
    -- forked from HONEY-WBERA-LP @ https://flipsidecrypto.xyz/studio/queries/ad96bc7d-ad78-4e1d-95e0-38f04867f924

    with tbl AS
    (
    SELECT
    block_timestamp,
    tx_hash,
    '0x' || SUBSTR(PARSE_JSON(TOPICS)[1]::string, -40) AS user_address,
    utils.udf_hex_to_int(DATA)/pow (10,18) as amount
    from berachain.testnet.fact_event_logs
    where contract_address = lower ('0x5c5f9a838747fb83678ECe15D85005FD4F558237') -- HONEY-WBERA-LP
    and ORIGIN_FUNCTION_SIGNATURE = '0xa694fc3a'
    order by 1 desc
    )
    SELECT
    date_trunc(day, block_timestamp) as date,
    sum (amount) as "Total deposits",
    sum ("Total deposits") over (order by date) as "Cumulative deposits",
    count (DISTINCT tx_hash) as "Total deposit tx",
    sum ("Total deposit tx") over (order by date) as "Cumulative deposit tx",
    count (DISTINCT user_address) as "Total unique depositors"
    from tbl
    group by date
    Last run: 10 days agoAuto-refreshes every 12 hours
    DATE
    Total deposits
    Cumulative deposits
    Total deposit tx
    Cumulative deposit tx
    Total unique depositors
    1
    2025-01-13 00:00:00.0005837.63532283840788604.1691286282221807276
    2
    2024-11-09 00:00:00.0001254.3765088576683569.18159233673128372631
    3
    2024-08-28 00:00:00.0007101.1516650024908840.559811714415344302552
    4
    2024-10-08 00:00:00.0004605.2115619426521236.0564172579992051169
    5
    2024-09-10 00:00:00.0009262.4036445675614509.672659081681688531596
    6
    2024-08-06 00:00:00.00042010.617222836956901.7339451245992560518
    7
    2024-10-04 00:00:00.0002683.5552365946510312.3503861860992161573
    8
    2024-12-04 00:00:00.0001949.9513909576770141.56935913691140887673
    9
    2024-07-23 00:00:00.000374664.773682169375102.47228655313
    10
    2025-02-07 00:00:00.0000.248390822340960657.67783912525937825
    11
    2024-09-01 00:00:00.00021705.0872923515128174.810806571334426701259
    12
    2024-09-29 00:00:00.0004945.780043436454453.8987869498988231887
    13
    2024-11-27 00:00:00.0002088.3929332286748926.23995075537136028527
    14
    2024-12-18 00:00:00.00045969.27594196937397860.09165831091147870903
    15
    2024-09-05 00:00:00.00018026.6377598975525117.902297451425558601360
    16
    2024-11-13 00:00:00.0007106.3726183896714428.98374946832131582808
    17
    2024-08-05 00:00:00.000113836.412794544914891.1167222883781961353
    18
    2024-12-15 00:00:00.000209538.45561553637074482.2460091521145678223
    19
    2024-10-07 00:00:00.0003029.7456320696516630.844855062087966261236
    20
    2025-01-19 00:00:00.0001303.69097215740807238.637814621272373322028
    ...
    205
    15KB
    338s