mr_sami7-pmCkDGStep 2: Which protocol have I sent the most money to?
    Updated 2021-12-11
    SELECT
    to_label,
    -- to_label_type,
    sum(amount_usd) as amount_usd
    FROM ethereum.udm_events
    WHERE from_address = lower('0x4a11Fa53abA6DbC197d2980De951F282ab861b8F')
    -- AND to_label_type = 'cex'
    AND block_timestamp >= current_date - 30
    GROUP BY 1
    Run a query to Download Data