Updated 2022-12-15

    /* this works */
    select *
    FROM flow.core.ez_token_transfers
    where sender = '0x72e2e778af6fb597'
    and tx_succeeded = TRUE
    order by block_timestamp DESC

    /* this works */
    select * from flow.core.ez_staking_actions
    where delegator = '0x9c6e56bd36b0f7c1'

    /* this works */
    select top 10*
    FROM flow.core.ez_token_transfers
    where recipient = '0xdf868d4de6d2e0ab'
    and tx_succeeded = TRUE
    order by block_timestamp DESC


    /* this works */
    select * from flow.core.ez_swaps
    where trader = '0x72e2e778af6fb597'

    select top 10* from flow.core.ez_nft_sales
    where buyer = '0xdf868d4de6d2e0ab'

    flow.core.ez_token_transfers
    Run a query to Download Data