princefarzamHow much mSOL was deposited during the February 4th and February 11th epochs and how many unique users were in the covered call volt?
    Updated 2022-02-21
    SELECT
    --block_timestamp::date as date,
    'Deposited_mSOL',
    'Depositors',
    sum(INNER_INSTRUCTION:instructions[1]:parsed:info:amount/1e9) AS Deposited_mSOL,
    COUNT(instruction:accounts[0]) AS Depositors
    FROM Solana.events
    WHERE BLOCK_TIMESTAMP >= '2022-02-04'
    AND BLOCK_TIMESTAMP <= '2022-02-11'
    AND INNER_INSTRUCTION:instructions[0]:parsed:info:owner::string='VoLT1mJz1sbnxwq5Fv2SXjdVDgPXrb9tJyC8WpMDkSp'
    AND instruction:accounts[1]::string='6UA3yn28XecAHLTwoCtjfzy3WcyQj1x13bxnH8urUiKt'
    AND succeeded=TRUE
    --GROUP BY 1
    --ORDER BY 1
    Run a query to Download Data