Skip to content

Instantly share code, notes, and snippets.

@decryp2kanon
decryp2kanon / Solo-Mining.md
Created January 26, 2021 19:58 — forked from lrhel/Solo-Mining.md
Solo-mining Sugarchain with multiple computer

First of all, make sure you have a full node running and fully synced All machines need to be connected to the same local network (e.g same wi-fi)

Node configuration

On the computer with the full node, find the local IP address: On MacOS/Linux you can use

ifconfig
@decryp2kanon
decryp2kanon / create_ssh.sh
Created December 11, 2021 04:16 — forked from cryptozeny/create_ssh.sh
create github SSH key
ssh-keygen -t rsa -b 4096 -C "cryptozeny@gmail.com" && \
eval "$(ssh-agent -s)" && \
ssh-add ~/.ssh/id_rsa && \
echo "COPY to github ssh" ;\
echo "*******************" ; \
cat ~/.ssh/id_rsa.pub ; \
echo "*******************"