Updated 2022-12-15
    select * FROM
    flow.core.dim_contract_labels

    select
    top 10 *
    FROM
    flow.core.fact_transactions
    where
    Proposer = '0xdf868d4de6d2e0ab'
    and tx_succeed = TRUE
    order by
    block_timestamp DESC
    /* this works */
    select
    top 10 *
    FROM
    flow.core.ez_token_transfers
    where
    sender = '0xdf868d4de6d2e0ab'
    and tx_succeeded = TRUE
    order by
    block_timestamp DESC
    /* 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
    *
    Run a query to Download Data