Skip to content

Instantly share code, notes, and snippets.

Verifying that +snakecharmer is my Bitcoin username. You can send me #bitcoin here: https://onename.io/snakecharmer
@illuzen
illuzen / bitcoinxt-installer.sh
Last active December 22, 2015 23:20
Installer for bitcoin XT
cat <<EOF | apt-key add -
-----BEGIN PGP PUBLIC KEY BLOCK-----
Comment: GPGTools - https://gpgtools.org
mQINBFXPTUoBEADLYhZu9ZrtkAZog8dis59Cx+6CqAZhQBmMQPvUZ9+9NKxa7Jt4
idZT1q+2FYmbl8hhUjtkAMW0zSrTrkTBUBjsi3mak6Ormdh1L6rApaSPY+jlizON
IkoDyNf3BPEv4ccPhQi3AGXNyytgVhSIBu8kJAkrLCHMjMwA14WgM+Z7GljLCRIc
IyBIpSG0gZYs5Uq3BoZzRytspRPTsIp/+wvyX+YsxlXXOg/vzcjwiCqVVEfMVfLq
Ro8KXmnS1w2a9lBdK7M1RpftqJ3RUhbsywkyUakNdN17iUKbvGjc2OzmH+v5W/rw
DT9o0ayJ7Oa9ufsSUKq10Ylt4obVK167gXZ8yQ/nICjev7Fqc/L97D0L4fetj1K2
@illuzen
illuzen / bitcoin-unlimited-installer.sh
Last active December 13, 2018 02:58
bitcoin-unlimited-installer.sh
apt-get -y update
apt-get -y install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev
git clone https://github.com/gandrewstone/BitcoinUnlimited.git
cd ./BitcoinUnlimited
./autogen.sh
./configure --disable-wallet
make
make install
printf "rpcuser=bitcoirpc\nrpcpassword=$RANDOM$RANDOM$RANDOM\n" >> ~/.bitcoin/bitcoin.conf
bitcoind &