adriaparcerisasSunloan payments: Arbitrum
    Updated 2024-01-30
    with
    nfts as (
    select tx_hash,block_timestamp,'ETH' as symbol, amount
    from arbitrum.core.ez_eth_transfers
    where origin_to_address='0xef0b56692f78a44cf4034b07f80204757c31bcc9'
    and origin_function_signature='0x88a7765b'
    and eth_from_address='0xef0b56692f78a44cf4034b07f80204757c31bcc9'
    union
    select tx_hash,block_timestamp, case when symbol is null then 'CVPA' else symbol end as symbol, case when decimals is not null then raw_amount/pow(10,decimals) else raw_amount end as amount
    from arbitrum.core.ez_token_transfers
    where origin_to_address='0xef0b56692f78a44cf4034b07f80204757c31bcc9'
    and origin_function_signature='0x88a7765b'
    and from_address='0xef0b56692f78a44cf4034b07f80204757c31bcc9'
    ),
    data as (
    select
    'ETH' as symbol,
    amount,
    amount_usd,
    block_timestamp,
    tx_hash
    from arbitrum.core.ez_eth_transfers
    where origin_to_address = lower('0xEF0B56692F78A44CF4034b07F80204757c31Bcc9')
    -- 0xd75233704795206de38Cc58B77a1f660B5C60896
    UNION
    select
    symbol,
    amount,
    amount_usd,
    block_timestamp,
    tx_hash
    from arbitrum.core.ez_token_transfers
    where origin_to_address = lower('0xEF0B56692F78A44CF4034b07F80204757c31Bcc9')
    )
    SELECT
    symbol as "Symbol",
    Last run: about 1 year agoAuto-refreshes every 3 hours
    Symbol
    Payment type
    Amount in native tokens
    USD equivalent amount
    Date time
    1
    ETHOthers0.0122.682024-01-29 16:42:24.000
    2
    ETHOthers0.000751.72024-01-29 16:42:24.000
    3
    ETHOthers0.000250.572024-01-29 16:42:24.000
    4
    ETHOthers0.00920.422024-01-29 16:42:24.000
    5
    ETHNFT0.0666150.182024-01-28 22:22:54.000
    6
    ETHNFT0.061605138.922024-01-28 22:22:54.000
    7
    ETHNFT0.0016653.752024-01-28 22:22:54.000
    8
    ETHNFT0.003337.512024-01-28 22:22:54.000
    9
    ETHNFT0.00051.12024-01-25 15:27:20.000
    10
    ETHNFT0.019543.062024-01-25 15:27:20.000
    10
    542B
    106s