kiacryptoNumber of unique satellite bridge users
    Updated 2022-10-29
    select
    date_trunc('month', block_timestamp) as date,
    count(distinct sender) as unique_
    from axelar.core.fact_transfers
    where transfer_type in ('IBC_TRANSFER_IN', 'IBC_TRANSFER_OUT') and tx_succeeded = 'TRUE'
    group by 1
    Run a query to Download Data