adambalapenalty fee for Redemptions transactions
    Updated 2022-11-28
    select
    case when min (AMOUNT) ='0.00025' then min (AMOUNT) else 0 end as penalty_fee ,count(distinct TX_ID) as txs_num , BLOCK_TIMESTAMP::date as date
    from flipside_prod_db.ethereum.udm_events
    where
    from_ADDRESS='0xa4b41efc1b6f73355c90119aeefddb1ffcf907b0' and
    ORIGIN_FUNCTION_SIGNATURE ='0xbe5021ec' and
    --TO_ADDRESS ='0xa45645ebb075a96d1c89511e28d3e9b94f3b7905' and
    --FROM_ADDRESS ='0xa4b41efc1b6f73355c90119aeefddb1ffcf907b0' and
    SYMBOL ='WETH'
    group by 3


    Run a query to Download Data