Pine Analyticsexotic-harlequin copy
    Updated 2025-03-26
    with tab1 as (
    SELECT
    block_timestamp,
    'Deposit' as flow,
    f.value['value'] as amount
    FROM bitcoin.core.fact_transactions,
    LATERAL FLATTEN(input => outputs) f
    WHERE block_timestamp > '2025-01-01';
    and f.value['scriptPubKey']['address'] = 'bc1pdwu79dady576y3fupmm82m3g7p2p9f6hgyeqy0tdg7ztxg7xrayqlkl8j9'
    ), tab2 as (
    select
    block_timestamp,
    'Withdraw' as flow,
    value as amount
    from bitcoin.core.fact_inputs
    where PUBKEY_SCRIPT_ADDRESS like 'bc1pdwu79dady576y3fupmm82m3g7p2p9f6hgyeqy0tdg7ztxg7xrayqlkl8j9'
    ), tab3 as (
    select
    date(block_timestamp) as date,
    flow,
    sum(amount) as volume,
    count(*) as events
    from (
    select * from tab1
    union all
    select * from tab2
    )
    group by 1,2
    order by 1 desc
    )


    select
    Last run: 11 days ago
    DATE
    FLOW
    VOLUME
    EVENTS
    VALUE_USD
    1
    2025-03-26 00:00:00.000Deposit108.23223653399482659.17133942
    2
    2025-03-26 00:00:00.000Withdraw102.13035709248948049.10608326
    3
    2025-03-25 00:00:00.000Withdraw94.01717764548199520.11351732
    4
    2025-03-25 00:00:00.000Deposit78.83855116566875746.56231708
    5
    2025-03-24 00:00:00.000Deposit130.301730236511364330.5528746
    6
    2025-03-24 00:00:00.000Withdraw107.57252878429381991.88381209
    7
    2025-03-23 00:00:00.000Deposit167.775741895214130156.8698467
    8
    2025-03-23 00:00:00.000Withdraw194.808672545316406883.8056551
    9
    2025-03-22 00:00:00.000Deposit106.41905766468946384.12983205
    10
    2025-03-22 00:00:00.000Withdraw114.8985203369659231.35532025
    11
    2025-03-21 00:00:00.000Withdraw208.288614534417495514.6103691
    12
    2025-03-21 00:00:00.000Deposit215.068969876318065040.7276855
    13
    2025-03-20 00:00:00.000Deposit150.234774596312834406.5584491
    14
    2025-03-20 00:00:00.000Withdraw146.818418235712542550.6509707
    15
    2025-03-19 00:00:00.000Deposit290.105307278124172444.5176582
    16
    2025-03-19 00:00:00.000Withdraw328.954477737027409473.9478968
    17
    2025-03-18 00:00:00.000Deposit208.580226574417215481.8702948
    18
    2025-03-18 00:00:00.000Withdraw163.369331224313483932.8062395
    19
    2025-03-17 00:00:00.000Deposit80.35383845416694519.34278485
    20
    2025-03-17 00:00:00.000Withdraw123.03527956010250438.2409835
    99
    7KB
    17s