freeman_7ETHEREUM
    Updated 2025-02-03
    -- For ethereum
    with transactions as (
    select
    date(date_trunc('{{Period}}',block_timestamp)) as date_time,
    count(distinct origin_from_address) as address,
    count( distinct tx_hash) as transaction
    from ethereum.core.ez_decoded_event_logs
    where origin_to_address = lower('0x1231DEB6f5749EF6cE6943a275A1D3E7486F4EaE')
    or decoded_log:bridgeData:integrator = 'jumper.exchange'
    or decoded_log:integrator = 'jumper.exchange'
    And event_name in ('LiFiGenericSwapCompleted','LiFiTransferStarted','LiFiSwappedGeneric')
    group by date_time
    )
    select
    date_time,
    address,
    transaction,
    sum(transaction) over() as total_transaction
    from transactions
    order by date_time




    Last run: about 1 month ago
    DATE_TIME
    ADDRESS
    TRANSACTION
    TOTAL_TRANSACTION
    1
    2022-10-17 00:00:00.000223993459
    2
    2022-10-24 00:00:00.000313993459
    3
    2022-10-31 00:00:00.00022993459
    4
    2022-11-07 00:00:00.000778910993459
    5
    2022-11-14 00:00:00.00018142179993459
    6
    2022-11-21 00:00:00.00015451850993459
    7
    2022-11-28 00:00:00.00013431655993459
    8
    2022-12-05 00:00:00.000603789993459
    9
    2022-12-12 00:00:00.000607779993459
    10
    2022-12-19 00:00:00.000381473993459
    11
    2022-12-26 00:00:00.000344428993459
    12
    2023-01-02 00:00:00.000279346993459
    13
    2023-01-09 00:00:00.000358455993459
    14
    2023-01-16 00:00:00.000453557993459
    15
    2023-01-23 00:00:00.000439568993459
    16
    2023-01-30 00:00:00.000448564993459
    17
    2023-02-06 00:00:00.000477611993459
    18
    2023-02-13 00:00:00.000564688993459
    19
    2023-02-20 00:00:00.000581719993459
    20
    2023-02-27 00:00:00.000586746993459
    ...
    121
    5KB
    167s