Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clarify TP instructions #239

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,20 @@ server=1
rpcuser=username
rpcpassword=password
```
Run the Template provider:

Unpack the Template Provider. For example, assuming you downloaded `bitcoin-sv2-tp-0.1.12-x86_64-linux-gnu.tar.gz`:

```bash
tar xvf bitcoin-sv2-tp-0.1.12-x86_64-linux-gnu.tar.gz
cd sv2-tp-0.1.12
```

⚠️ Note: macOS binaries are not code signed. Read release notes for instructions on how to proceed.

Start the Template Provider.

```bash
./bitcoin-sv2-tp-0.1.*/bin/bitcoind -testnet4 -sv2 -sv2port=8442 -debug=sv2
./bitcoind -testnet4 -sv2 -sv2port=8442 -debug=sv2
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can only confirm this works, above, I can't test on MacOS. Thanks for pushing a PR.

```

⚠️ Note: you need to wait until `bitcoind` is fully synced with the testnet before you proceed.
Expand Down
Loading