Eman-RazTransaction Types Over Time
    Updated 2025-03-14
    select date_trunc('day',block_timestamp) as "Date",
    count(distinct tx_hash) as "Number of Transactions",
    sum(tx_fee) as "Transaction Fees", case
    when origin_function_signature='0xe884624b' then 'GM to a Fren'
    when origin_function_signature='0xc0129d43' then 'GM'
    end as "Txn Type"
    from ink.core.fact_transactions
    where to_address='0x9f500d075118272b3564ac6ef2c70a9067fd2d3f'
    and tx_succeeded='TRUE' and (origin_function_signature='0xe884624b' -- GM_to_a_Fren
    or origin_function_signature='0xc0129d43') -- GM
    group by 1, 4
    order by 1
    Last run: about 1 month ago
    Date
    Number of Transactions
    Transaction Fees
    Txn Type
    1
    2025-01-21 00:00:00.0001190.0007524898332GM
    2
    2025-01-21 00:00:00.00060.00003892067979GM to a Fren
    3
    2025-01-22 00:00:00.000600.0005248536537GM to a Fren
    4
    2025-01-22 00:00:00.0009950.005575391613GM
    5
    2025-01-23 00:00:00.00051080.0463071876GM
    6
    2025-01-23 00:00:00.00086500.07034663648GM to a Fren
    7
    2025-01-24 00:00:00.00084700.03905812185GM
    8
    2025-01-24 00:00:00.00058990.04463903004GM to a Fren
    9
    2025-01-25 00:00:00.000276440.04455561499GM to a Fren
    10
    2025-01-25 00:00:00.000237760.04944602019GM
    11
    2025-01-26 00:00:00.000465220.04929441879GM
    12
    2025-01-26 00:00:00.00064280.02336260644GM to a Fren
    13
    2025-01-27 00:00:00.00063610.02475073301GM to a Fren
    14
    2025-01-27 00:00:00.000868090.1163588665GM
    15
    2025-01-28 00:00:00.000717000.1333635022GM
    16
    2025-01-28 00:00:00.00055440.02018123203GM to a Fren
    17
    2025-01-29 00:00:00.000640840.07175675565GM
    18
    2025-01-29 00:00:00.00052880.01628035474GM to a Fren
    19
    2025-01-30 00:00:00.000722430.06069295902GM
    20
    2025-01-30 00:00:00.00054810.01261733479GM to a Fren
    ...
    106
    6KB
    3s