0xHaM-dworld Cup II - [chain] USDC transfers over time bars copy
    Updated 2023-09-25
    -- forked from marqu / world Cup II - [chain] USDC transfers over time bars @ https://flipsidecrypto.xyz/marqu/q/5lJBGt5DnRw7/world-cup-ii-chain]-usdc-transfers-over-time-bars

    with

    txs_ethereum as (

    select

    block_timestamp,
    tx_hash,
    from_address as user_address,
    amount,
    'Ethereum' as blockchain

    from ethereum.core.ez_token_transfers
    where block_timestamp ::date > current_date() - interval '{{months}} months'
    and contract_address = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
    and amount > 0
    ),

    txs_solana as (

    select

    block_timestamp,
    tx_id as tx_hash,
    tx_from as user_address,
    amount as amount,
    'Solana' as blockchain

    from solana.core.fact_transfers
    where block_timestamp ::date > current_date() - interval '{{months}} months'
    and mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
    and amount > 0
    ),

    Run a query to Download Data