Bitcoin address generator from a 99 character base 6 which is generated by rolling a die for 99 times. This is code is based on pybitcoin.
If your die shows six, write down zero
1 -> 1
2 -> 2
3 -> 3
4 -> 4
5 -> 5
6 -> 0
do this pricess for 99 times.
Clone the project on your computer by running git clone https://github.com/abeikverdi/dice-pybitcoin.git
command on your terminal
Input the result you got from the first step in the meetup.py file
Run the file in your terminal by typing py meetup.py
and the output is going to be output your address.
The number with 99 characters you created is going to be your private key in base 6. Keep that number somewhere safe as it is your private key and in order to spend your money you need that.
NOTE: Make sure you are not connected to the internet during the whole process.
*This repository is created by Seoul Bitcoin Meetup to demonstrate how we can use dice to generate a private and public key.