ArioUntitled Query
    Updated 2023-01-01
    select
    date_trunc('month', block_timestamp) as date,
    regexp_substr(sender, '[a-zA-Z]+|\d+') as "Source Chain",
    count(distinct tx_id) as "# Transfer",
    count(distinct sender) as "# Sender"
    from
    osmosis.core.fact_transfers
    where
    transfer_type = 'IBC_TRANSFER_IN'
    and receiver like 'osmo%'
    --and amount / pow(10, decimal) < 10000000
    group by
    1,
    2
    /*having
    "Volume" is not null*/
    Run a query to Download Data