kingharald-ethDaily Number of Velodrome Users since inception
    Updated 2022-08-03
    select date_trunc('day', block_timestamp) as day, count(distinct(from_address)) as total_users from optimism.core.fact_transactions
    where to_address = '0xa132dab612db5cb9fc9ac426a0cc215a3423f9c9'
    and (
    origin_function_signature = '0x13dcfc59' OR
    origin_function_signature = '0xf41766d8'
    )
    and status = 'SUCCESS'
    group by day
    Run a query to Download Data