@Melt_Dem Doesn't the fact that people are holding USDC, Dai in their personal wallets say much more about adoption than how much it's traded on CEXs?
Most trading volume for Tether and bUSD happens off-chain, which doesn't really seem like a relevant metric for stablecoin adoption.
@loopringorg The experience is quite confusing in the web client when this happens. Could you make an update that notifies the user of issues with the relayer?
@codeOfRobin def is_prime?(x) when x in 2..3, do: true
def is_prime?(x) when x > 3 do
Enum.count(for y <- 2..div(x, 2), rem(x, y) == 0, do: nil) == 0
end