Skip to content

Instantly share code, notes, and snippets.

@vbuterin
Last active August 5, 2019 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vbuterin/b695a53e5a6036fb3694af676020ef92 to your computer and use it in GitHub Desktop.
Save vbuterin/b695a53e5a6036fb3694af676020ef92 to your computer and use it in GitHub Desktop.
x1 = prompt("11.9 million ETH was given to the foundation + early contributors. Is this a premine? Answer Yes/No").toLowerCase() == "yes" ? 11.9 : 0
x2 = prompt("61.1 million ETH was sold in an open widely publicized process where anyone could obtain ETH by sending bitcoin to a specific address. Is this a premine? Answer Yes/No").toLowerCase() == "yes" ? 61.1 : 0
x3 = prompt("3.6 million ETH was economically reallocated during the DAO fork. Is this a premine? Answer Yes/No").toLowerCase() == "yes" ? 3.6 : 0
x4 = prompt("36.1 million ETH was mined so far. Is this a premine? Answer Yes/No").toLowerCase() == "yes" ? 46.1 : 0
alert((x1+x2+x3+x4)+" million out of 107.2 million ETH was premined!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment