select date_trunc('day', block_timestamp) as days,
trunc(avg(((ethereum.public.udf_hex_to_int(substring(data,45,22))::integer)/1e25)),2) as avg_utilization_rate
from ethereum.core.fact_event_logs
where origin_to_address = lower('0x3b968d2d299b895a5fcf3bba7a64ad0f566e6f88')--bendao address
and topics[0] = lower('0x4063a2df84b66bb796eb32622851d833e57b2c4292900c18f963af8808b13e35')
and block_timestamp >= '2022-01-01'
group by 1