--with a as(
select tx_hash, source_chain, amount,
CUME_DIST() OVER (ORDER BY amount) AS cdf
from axelar.core.ez_squid
where block_timestamp>'2023-02-23'
and (token_symbol='axlUSDC' or token_symbol='USDC')
--and source_chain='binance')
--group by 1,2