bachifriktion1
    Updated 2022-07-28
    -- Top 10 wallets who deposited BTC to Friktion
    select
    distinct (inner_instructions:instructions[0]:parsed:info:source) as wallets,
    sum(inner_instructions:instructions[1]:parsed:info:amount/1e6) as amount_BTC
    from Solana.core.fact_transactions
    where instructions:programId='VoLT1mJz1sbnxwq5Fv2SXjdVDgPXrb9tJyC8WpMDkSp'
    and post_balances[1]:mint='3BjcHXvyzMsjmeqE2qFLx45K4XFx3JPiyRnjJiF5MAHt'
    and inner_instructions:instructions[1]:parsed:type='transfer'
    and SUCCEEDED = 'TRUE' and block_timestamp >= dateadd(month, -3, getdate())
    group by 1
    order by 2 desc
    limit 50
    Run a query to Download Data