Afonso_DiazUser Classification
    Updated 2025-03-08
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    origin_to_address as user,
    'ETH' as symbol,
    amount,
    amount_usd,
    'Bridge to Ink' as type
    from
    ink.core.ez_native_transfers
    where
    to_address = origin_to_address
    and from_address = origin_from_address
    and from_address = '0xf70da97812cb96acdf810712aa562db8dfa3dbef'
    and tx_hash not in (select distinct tx_hash from ink.core.ez_decoded_event_logs where event_name = 'Swap')

    union all

    select
    tx_hash,
    block_timestamp,
    to_address as user,
    symbol,
    amount,
    amount_usd,
    'Bridge to Ink' as type
    from
    ink.core.ez_token_transfers
    where
    from_address = '0x836caf2409d91df0bda01bc9f3cec524ba1c571d'
    and origin_to_address = from_address
    and tx_hash not in (select distinct tx_hash from ink.core.ez_decoded_event_logs where event_name = 'Swap')

    Last run: about 2 months ago
    TYPE
    USER_CATEGORY
    USERS
    1
    Bridge from InkCasual User (6 - 15 Transactions)3421
    2
    Bridge from InkEngaged User (16 - 30 Transactions)640
    3
    Bridge from InkFrequent User (31 - 50 Transactions)245
    4
    Bridge from InkHeavy User (51 - 100 Transactions)129
    5
    Bridge from InkNew User (1 Transaction)26349
    6
    Bridge from InkOccasional User (2 - 5 Transactions)14683
    7
    Bridge from InkSuper User (100+ Transactions)88
    8
    Bridge to InkCasual User (6 - 15 Transactions)11080
    9
    Bridge to InkEngaged User (16 - 30 Transactions)1669
    10
    Bridge to InkFrequent User (31 - 50 Transactions)381
    11
    Bridge to InkHeavy User (51 - 100 Transactions)180
    12
    Bridge to InkNew User (1 Transaction)77789
    13
    Bridge to InkOccasional User (2 - 5 Transactions)39863
    14
    Bridge to InkSuper User (100+ Transactions)117
    14
    832B
    17s