lagandispenserOpenSea Fees Earned By Token 2
    Updated 2022-08-01
    with ethereum_table as (SELECT SUM(amount_usd) as ethereum_fee,symbol FROM ethereum.udm_events
    WHERE to_address LIKE '0x5b3256965e7c3cf26e11fcaf296dfc8807c01073' AND symbol IS NOT NULL AND amount_usd IS NOT NULL GROUP by 2),
    polygon_table as (SELECT SUM(amount_usd) as polygon_fee,symbol FROM polygon.udm_events WHERE to_label like 'opensea' GROUP by 2)
    SELECT * FROM polygon_table
    Run a query to Download Data