nitsKatana wLUNA pool
    Updated 2022-02-20
    SELECT date(block_timestamp) as day, sum(amt) as total_vol,avg(amt) as amt_size, count(DISTINCT addr) as unique_participants,
    sum(total_vol) over (order by day) as cumulative_vol
    from
    (SELECT *,inner_instruction:instructions[1]:parsed:info:amount/pow(10,6) as amt, inner_instruction:instructions[1]:parsed:info:destination as addr
    from solana.events
    where inner_instruction:instructions[0]:parsed:info:mint = '3JU8iPVMrrhmct4RP7rTSBFwStv6oksEsSj4C6mkk2Yg'
    and inner_instruction:instructions[0]:parsed:info:authority = 'FzJ3VxEBuKxpX6meAWtFeAmoGjN8xw8fVNnArKwDp4os'
    and inner_instruction:instructions[0]:parsed:type = 'burn'
    and block_timestamp > '2022-02-04'
    )
    GROUP by 1
    Run a query to Download Data