dannerActivity Timeline
    Updated 2022-12-24
    select
    date_trunc('month',block_timestamp) as "Date",
    -1*coalesce(sum(case when buyer_address in (
    lower('{{Wallet1}}')
    ,lower('{{Wallet2}}')
    ,lower('{{Wallet3}}')
    ,lower('{{Wallet4}}')
    ,lower('{{Wallet5}}')
    ,lower('{{Wallet6}}')
    )
    then price_usd end),0)
    as "Bought",
    sum(case when seller_address in (
    lower('{{Wallet1}}')
    ,lower('{{Wallet2}}')
    ,lower('{{Wallet3}}')
    ,lower('{{Wallet4}}')
    ,lower('{{Wallet5}}')
    ,lower('{{Wallet6}}')
    )
    then price_usd end)
    as "Sold",
    coalesce(sum(case when seller_address in (
    lower('{{Wallet1}}')
    ,lower('{{Wallet2}}')
    ,lower('{{Wallet3}}')
    ,lower('{{Wallet4}}')
    ,lower('{{Wallet5}}')
    ,lower('{{Wallet6}}')
    )
    then price_usd end),0)
    -
    coalesce(sum(case when buyer_address in (
    lower('{{Wallet1}}')
    ,lower('{{Wallet2}}')
    ,lower('{{Wallet3}}')
    Run a query to Download Data