binhachonSushi rewards distribution - How much is left
    Updated 2022-04-27
    select
    date_trunc('day', timestamp) as time,
    block,
    curr_value
    from tokenflow_eth.tokens_balance_diffs
    where symbol = 'SUSHI'
    and holder = '0xcbe6b83e77cdc011cc18f6f0df8444e5783ed982'
    qualify row_number() over (partition by time order by block desc) = 1
    Run a query to Download Data