select
block_timestamp::date,
label,
sum(from_amount/power(10,from_decimal)) as swap_amount
from osmosis.core.fact_swaps left join osmosis.core.dim_labels on from_currency =address
where label in ('Dai Stablecoin','Tether USD','USD Coin')
group by 1,2