aboutsummaryrefslogtreecommitdiff
path: root/contrib/signet
diff options
context:
space:
mode:
authorKarl-Johan Alm <karljohan-alm@garage.co.jp>2020-10-16 12:50:18 +0900
committerKarl-Johan Alm <karljohan-alm@garage.co.jp>2020-10-16 12:50:18 +0900
commite9c8e6eea2dde6ccd5f685956392ee70c8cfefb7 (patch)
tree5d8a7a002cdf6c13e1932d3b900a888c7d15f71b /contrib/signet
parent355d0c4f6b8a7687a3940a2d90d66b08e560bfa7 (diff)
downloadbitcoin-e9c8e6eea2dde6ccd5f685956392ee70c8cfefb7.tar.xz
doc: add contrib/signet readme
Diffstat (limited to 'contrib/signet')
-rw-r--r--contrib/signet/README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/signet/README.md b/contrib/signet/README.md
new file mode 100644
index 0000000000..c4aa5ae2f7
--- /dev/null
+++ b/contrib/signet/README.md
@@ -0,0 +1,19 @@
+Contents
+========
+This directory contains tools related to Signet, both for running a Signet yourself and for using one.
+
+getcoins.py
+===========
+
+A script to call a faucet to get Signet coins.
+
+Syntax: `getcoins.py [-h|--help] [-c|--cmd=<bitcoin-cli path>] [-f|--faucet=<faucet URL>] [-a|--addr=<signet bech32 address>] [-p|--password=<faucet password>] [--] [<bitcoin-cli args>]`
+
+* `--cmd` lets you customize the bitcoin-cli path. By default it will look for it in the PATH
+* `--faucet` lets you specify which faucet to use; the faucet is assumed to be compatible with https://github.com/kallewoof/bitcoin-faucet
+* `--addr` lets you specify a Signet address; by default, the address must be a bech32 address. This and `--cmd` above complement each other (i.e. you do not need `bitcoin-cli` if you use `--addr`)
+* `--password` lets you specify a faucet password; this is handy if you are in a classroom and set up your own faucet for your students; (above faucet does not limit by IP when password is enabled)
+
+If using the default network, invoking the script with no arguments should be sufficient under normal
+circumstances, but if multiple people are behind the same IP address, the faucet will by default only
+accept one claim per day. See `--password` above.