saeedmznWallet Providers - top 5 providers
    Updated 2022-07-12
    select
    case when payer='0x55ad22f01ef568a1' then 'Blocto'
    when payer='0xecfad18ba9582d4f' then 'Joyride'
    when payer='0x1b65c33d7a352c61' then 'CricketMoments'
    when payer='0x6f649aee955bef6d' then 'RCRDSHP'
    when payer='0x18eb4ee6b3c026d2' then 'TopShot'
    else payer
    end as wallet_provider,
    count(DISTINCT tx_id) as num_transactions,
    sum(EVENT_DATA:amount) as subside_amount,
    count (DISTINCT proposer) as num_wallets
    from flow.core.fact_transactions
    join flow.core.fact_events using (tx_id)
    where TX_SUCCEEDED=true
    and authorizers[0] != payer
    and EVENT_TYPE='TokensWithdrawn'
    group by 1
    order by num_transactions DESC limit 5




    Run a query to Download Data