Skip to content

Instantly share code, notes, and snippets.

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 martindale/32e4d6515d7588808cc97c9f53c56425 to your computer and use it in GitHub Desktop.
Save martindale/32e4d6515d7588808cc97c9f53c56425 to your computer and use it in GitHub Desktop.

Signet

This is a description of how to get started with Signet. This document assumes you are capable of using git, and that you are able to compile Bitcoin. (If you have not yet done so, you should begin by doing that now.)

Fetch and compile signet

$ git clone https://github.com/kallewoof/bitcoin.git signet
$ cd signet
$ git checkout signet-0.18
$ ./autogen.sh
$ ./configure
$ make -j5

Create bitcoin.conf file and start up the daemon

cd src
mkdir signet
echo "signet=1
daemon=1" > signet/bitcoin.conf
./bitcoind -datadir=signet

Verify that you're connected

./bitcoin-cli -datadir=signet getconnectioncount
***SHOULD BE MORE THAN ZERO***
./bitcoin-cli -datadir=signet getblockcount
***SHOULD BE MORE THAN ZERO***

Ask me for some coins

You first need an address

./bitcoin-cli -datadir=signet getnewaddress

Then just DM @kallewoof on Twitter or on IRC with "Signet coins plz: PASTEADDRESSHERE" and I'll try to send you some asap. (It's manual tho so may take awhile if I'm not near a computer.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment