DarkClaw 69 Posted December 21, 2018 (edited) We added an infographic that shows the block reward schedule and coin supply that should be helpful: http://www.xaya-gaming.net/#blockreward In case anyone wants to check the math, here is what I did to get reward/supply at a given blockheight. This is up to 21 million blocks, please let me know if something looks off: by_int = 1e3 premine = 46382344.69674 reward0 = 3.82934346 halving = 4.2e6 height = seq(0, 21e6, by = by_int) reward = ifelse(height < 440e3, 1, reward0/2^floor((height + 1)/halving)) supply = premine + cumsum(reward*by_int) Edited December 21, 2018 by DarkClaw 2 Share this post Link to post Share on other sites