banbannardMiso User Base
    Updated 2022-09-16
    with base as (select distinct(from_address),
    '1. Ethereum' as chain,
    1 as numbering
    from ethereum.core.fact_transactions
    where origin_function_signature = '0x29762960'
    and status = 'SUCCESS'

    union
    select distinct(from_address),
    '3. Polygon',
    1 as numbering
    from polygon.core.fact_transactions
    where origin_function_signature = '0x29762960'
    and status = 'SUCCESS'

    union
    select distinct(from_address),
    '5. Arbitrum',
    1 as numbering
    from arbitrum.core.fact_transactions
    where origin_function_signature = '0x29762960'
    and status = 'SUCCESS'

    union
    select distinct(from_address),
    '4. Avalanche',
    1 as numbering
    from avalanche.core.fact_transactions
    where origin_function_signature = '0x29762960'
    and status = 'SUCCESS'

    union
    Run a query to Download Data