Difference between revisions of "Connecting to your own Bitcoin node"

From Bisq Wiki
Jump to navigation Jump to search
(add initial page on connecting bisq to specific bitcoin node)
 
 
(16 intermediate revisions by 5 users not shown)
Line 1: Line 1:
Bisq will '''connect to your local Bitcoin node''' if it finds it upon starting up. This article contains the requirements for this to work correctly.
+
Bisq will '''connect to [[Installing_your_own_Bitcoin_node|your local Bitcoin node]]''' if it finds it upon starting up. This article contains the requirements for this to work correctly.
  
 
You can also specify the addresses of particular Bitcoin nodes in <code>Settings</code> > <code>Network Info</code>.
 
You can also specify the addresses of particular Bitcoin nodes in <code>Settings</code> > <code>Network Info</code>.
  
 
__TOC__
 
__TOC__
 +
 +
= General node settings =
 +
 +
The bitcoin.conf file needs to contain the following settings (either by adding them or editing the existing ones):
 +
 +
<code>server=1</code><br>
 +
<code>prune=0</code><br>
 +
<code>peerbloomfilters=1</code><br>
 +
 +
which in turn:
 +
* enable the block server mode
 +
* disable the pruning of old blocks
 +
* allow Bisq to run its SPV wallet
 +
 +
Multiple reports have been received, where any declination of the Ronin node just won't work, or will work once, only to stop working after the next reboot, requiring a restore to network provided nodes. We are not able to suggest a workaround, except involving Ronin support.
  
 
= Connecting to a local Bitcoin node =
 
= Connecting to a local Bitcoin node =
Line 9: Line 24:
 
If you're running a Bitcoin full node on the same machine as Bisq, Bisq should connect to your node on startup—it will look for Bitcoin Core or <code>bitcoind</code> running on <code>localhost</code> on port 8333.
 
If you're running a Bitcoin full node on the same machine as Bisq, Bisq should connect to your node on startup—it will look for Bitcoin Core or <code>bitcoind</code> running on <code>localhost</code> on port 8333.
  
Other requirements:
+
Just make sure to not be running any other Bitcoin-based altcoin nodes (like LTC) while starting Bisq.
* Specify <code>peerbloomfilters=1</code> in your <code>bitocin.conf</code> file if running 0.19.0.1 or later
 
* Make sure your node is not running in pruned mode
 
  
 
= Connecting to another Bitcoin node =
 
= Connecting to another Bitcoin node =
Line 17: Line 30:
 
By default, Bisq maximizes your privacy by connecting to nodes run by trusted  Bisq contributors.  
 
By default, Bisq maximizes your privacy by connecting to nodes run by trusted  Bisq contributors.  
  
If you'd like to connect to another node, you can specify its address in <code>Settings</code> > <code>Network Info</code>. Bisq will make sure it can connect to the node to validate the address, and connect to that node the next time it starts.
+
If you'd like to connect to another node, you can specify its address in <code>Settings</code> > <code>Network Info</code>. Bisq will validate the address and connect to the specified node the next time it starts.
 +
 
 +
Bisq supports connecting to Bitcoin nodes with Tor v3 addresses: this is the easiest path to take, since you only have to fill in your node's onion address in settings.<br>
 +
If your node is on your local network, connecting directly to it rather than using Tor would reduce latency by a sensible degree. In order to do this:
 +
* make sure the node's firewall allows incoming connections on port 8333 from the local network
 +
* have Bitcoin daemon listen to <code>0.0.0.0</code> rather than <code>127.0.0.1</code> (add a line that says <code>bind 0.0.0.0</code>)
 +
* uncheck "Use Tor for Bitcoin network" under Settings>Network in Bisq application
 +
* fill in your node's local network <code>ipaddress:8333</code> in "Use custom bitcoin Core nodes" field
 +
 
 +
Explaining in detail each step of the above goes past the scope of this guide, yet you can usually find more information either by searching for specific guides, or asking on discussion boards/groups.
 +
 
 +
= Troubleshooting =
 +
 
 +
Most of the issues experienced by users come from trying to associate to a Ronin Dojo node, which often won't let Bisq connect a second time, if at all even the first; we are not aware of any reproducible solution to this, and suggest to use a different node distribution for Bisq.
 +
 
 +
If you get into a state where Bisq is unable to connect, you can revert to a provided node as follows. 
 +
 
 +
For MacOS:
 +
<code>Bisq -btcNodes=emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion:8333 -useTorForBtc=true </code>
 +
 +
For Linux:
 +
 
 +
<code>/opt/bisq/bin/Bisq -btcNodes=emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion:8333 -useTorForBtc=true </code>
 +
 
 +
For Windows:
 +
 
 +
<code>C:\Users\your-username-here\AppData\Local\Bisq\Bisq.exe -btcNodes=emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion:8333 -useTorForBtc=true </code>
 +
 
 +
Contributor nodes can be seen [https://github.com/bisq-network/bisq/blob/7c07cdb6ff60ad1186dea33acdfb688668c2aae6/core/src/main/java/bisq/core/btc/nodes/BtcNodes.java#L51-L76 here in the Bisq code].
 +
 
 +
[[Running_from_the_command_line|More info on running from the command line]].
 +
 
 +
[[Command_line_options|More info on command line options]].

Latest revision as of 10:53, 27 November 2023

Bisq will connect to your local Bitcoin node if it finds it upon starting up. This article contains the requirements for this to work correctly.

You can also specify the addresses of particular Bitcoin nodes in Settings > Network Info.

General node settings

The bitcoin.conf file needs to contain the following settings (either by adding them or editing the existing ones):

server=1
prune=0
peerbloomfilters=1

which in turn:

  • enable the block server mode
  • disable the pruning of old blocks
  • allow Bisq to run its SPV wallet

Multiple reports have been received, where any declination of the Ronin node just won't work, or will work once, only to stop working after the next reboot, requiring a restore to network provided nodes. We are not able to suggest a workaround, except involving Ronin support.

Connecting to a local Bitcoin node

If you're running a Bitcoin full node on the same machine as Bisq, Bisq should connect to your node on startup—it will look for Bitcoin Core or bitcoind running on localhost on port 8333.

Just make sure to not be running any other Bitcoin-based altcoin nodes (like LTC) while starting Bisq.

Connecting to another Bitcoin node

By default, Bisq maximizes your privacy by connecting to nodes run by trusted Bisq contributors.

If you'd like to connect to another node, you can specify its address in Settings > Network Info. Bisq will validate the address and connect to the specified node the next time it starts.

Bisq supports connecting to Bitcoin nodes with Tor v3 addresses: this is the easiest path to take, since you only have to fill in your node's onion address in settings.
If your node is on your local network, connecting directly to it rather than using Tor would reduce latency by a sensible degree. In order to do this:

  • make sure the node's firewall allows incoming connections on port 8333 from the local network
  • have Bitcoin daemon listen to 0.0.0.0 rather than 127.0.0.1 (add a line that says bind 0.0.0.0)
  • uncheck "Use Tor for Bitcoin network" under Settings>Network in Bisq application
  • fill in your node's local network ipaddress:8333 in "Use custom bitcoin Core nodes" field

Explaining in detail each step of the above goes past the scope of this guide, yet you can usually find more information either by searching for specific guides, or asking on discussion boards/groups.

Troubleshooting

Most of the issues experienced by users come from trying to associate to a Ronin Dojo node, which often won't let Bisq connect a second time, if at all even the first; we are not aware of any reproducible solution to this, and suggest to use a different node distribution for Bisq.

If you get into a state where Bisq is unable to connect, you can revert to a provided node as follows.

For MacOS:

Bisq -btcNodes=emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion:8333 -useTorForBtc=true 

For Linux:

/opt/bisq/bin/Bisq -btcNodes=emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion:8333 -useTorForBtc=true 

For Windows:

C:\Users\your-username-here\AppData\Local\Bisq\Bisq.exe -btcNodes=emzybtc3ewh7zihpkdvuwlgxrhzcxy2p5fvjggp7ngjbxcytxvt4rjid.onion:8333 -useTorForBtc=true 

Contributor nodes can be seen here in the Bisq code.

More info on running from the command line.

More info on command line options.