andurilCMV2 Deploy Txs 8/22
    Updated 2022-08-22

    with cmv2_deploy_txs as (

    select
    distinct tx_id
    from solana.core.fact_events
    where program_id = 'cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ'
    and succeeded = 'TRUE'
    )


    select
    date(t.block_timestamp) as date ,
    count (distinct t.signers[0]) as wallets,
    count(distinct t.tx_id) as deploy_txs
    from cmv2_deploy_txs e
    inner join solana.core.fact_transactions t
    on e.tx_id = t.tx_id
    where
    --date(t.block_timestamp) between '2022-01-01' and '2022-06-01'
    --and e.program_id = 'cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ'
    --and e.succeeded = 'TRUE'
    --and log_messages::string like '%Program log: Instruction: InitializeCandyMachine%'
    t.instructions[0]:parsed:info:owner = 'cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ'
    group by 1
    Run a query to Download Data