with mint_transactions as (
select
block_timestamp,
status,
tx_fee as mint_fee,
floor(mint_fee, 3) as rounded_mint_cost
from ethereum_core.fact_transactions
where block_timestamp > '2022-04-10'
and to_address = '0x23581767a106ae21c074b2276d25e5c3e136a68b'
and origin_function_signature = '0x0dfd025a'
)
select
status,
sum(mint_fee) as total_mint_fee
from mint_transactions
group by 1