kiacryptonot retention users percentage
    Updated 2022-12-19
    with flow as (
    select
    proposer as addr,
    count(distinct block_timestamp) as tx_count
    from flow.core.fact_transactions
    where block_timestamp::date >= '2022-01-01'
    group by 1
    ),
    eth as (
    select
    from_address as addr,
    count(distinct block_timestamp) as tx_count
    from ethereum.core.fact_transactions
    where block_timestamp::date >= '2022-01-01'
    group by 1
    ),
    algo as (
    select
    tx_sender as addr,
    count(distinct block_timestamp) as tx_count
    from algorand.core.fact_transaction
    where block_timestamp::date >= '2022-01-01'
    group by 1
    ),
    ava as (
    select
    from_address as addr,
    count(distinct block_timestamp) as tx_count
    from avalanche.core.fact_transactions
    where block_timestamp::date >= '2022-01-01'
    group by 1
    ),
    -- tx_rank_bsc as (
    -- select
    -- from_address as addr,
    -- block_timestamp as time,
    Run a query to Download Data