NBXplorer.Client 4.3.0

dotnet add package NBXplorer.Client --version 4.3.0
NuGet\Install-Package NBXplorer.Client -Version 4.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NBXplorer.Client" Version="4.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NBXplorer.Client --version 4.3.0
#r "nuget: NBXplorer.Client, 4.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NBXplorer.Client as a Cake Addin
#addin nuget:?package=NBXplorer.Client&version=4.3.0

// Install NBXplorer.Client as a Cake Tool
#tool nuget:?package=NBXplorer.Client&version=4.3.0

NBXplorer

NuGet Docker Automated buil CircleCI

A minimalist UTXO tracker for HD Wallets. The goal is to have a flexible, .NET based UTXO tracker for HD wallets. The explorer supports P2SH,P2PKH,P2WPKH,P2WSH and Multi-sig derivation.

This explorer is not meant to be exposed on internet, but should be used as an internal tool for tracking the UTXOs of your own service.

It has a bunch of features:

  • Can pass arguments via environment variable, command line or configuration file
  • Automatically reconnect to your node if the connection goes temporarily down
  • An easy to use REST API
  • Persistence (via in-file no-SQL datbase called DBreeze or Postgres)
  • Connect via RPC to broadcast transaction instead of using the P2P protocol like this example
  • Connect via RPC to your trusted node to get the proper fee rate.
  • Altcoin support
  • Huge test suite
  • Pruning of transaction data (in practice, we don't need to save the whole transaction, only the spent outpoint and received coin for the wallet)
  • Multi-wallet
  • Flexible address generation schemes (multisig, segwit, legacy etc...)
  • Pruning for big wallets (Removal of tracked transaction which do not impact the resulting UTXO set)

It currently supports the following altcoins:

  • Althash
  • Argoneum
  • BCash (also known as Bitcoin Cash)
  • BGold (also known as Bitcoin Gold)
  • BitCore
  • Chaincoin
  • ColossusXT
  • Dash
  • Dogecoin
  • Feathercoin
  • Gobyte
  • Groestlcoin
  • Litecoin
  • Monacoin
  • MonetaryUnit
  • Monoeci
  • Polis
  • Qtum
  • Terracoin
  • Ufo
  • Viacoin

Read our API Specification.

Prerequisite

There are two backend available:

  • DBTrie (with the --dbtrie flag)
  • Postgres (with the --postgres flags)

However, DBTrie is now deprecated. We will continue to support it to give more time for our users to migrate.

API Specification

Read our API Specification.

How to build and run?

If you are using Bitcoin core default settings:

On Powershell:

.\build.ps1

On Linux:

./build.sh

Then to run:

On Powershell:

.\run.ps1 --help

On Linux:

./run.sh --help

Example, if you have ltc node and btc node on regtest (default configuration), and want to connect to them: (see documentation for other options in the postgres connection string)

./run.sh --chains=btc,ltc --network=regtest --postgres "User ID=postgres;Host=127.0.0.1;Port=39382;Database=nbxplorer"

How to use the API?

Check the API documentation, you can then use any client library:

Here is a small C# example showing a 2-2 multisig with Alice and Bob that you can run on regtest.

With Docker

Use our image. You can check the sample for configuring and composing it bitcoin core.

How to develop on it?

If you are on Windows, I recommend Visual Studio 2022 (17.8.0). If you are on other platform and want lightweight environment, use Visual Studio Code. If you are hardcore, you can code on vim.

I like Visual Studio Code and Visual Studio 2022 as it allows me to debug in step by step.

How to configure?

NBXplorer supports configuration through command line arguments, configuration file, or environment variables.

Configuration file

If you are not using standard install for bitcoind, you will have to change the configuration file: In Windows it is located in

C:\Users\<user>\AppData\Roaming\NBXplorer\<network>\settings.config

On linux or mac:

~/.nbxplorer/<network>/settings.config

The default configuration assumes mainnet with only btc chain supported, and uses the default settings of bitcoind.

You can change the location of the configuration file with the --conf=pathToConf command line argument.

Command line parameters

Please note that NBXplorer uses cookie authentication by default. If you run your Bitcoin/Litecoin/Dash nodes using their daemon (like bitcoind, litecoind or dashd), they generate a new cookie every time you start them, and that should work without any extra configuration. If you run the node(s) using the GUI versions, like Bitcoin\Litecoin\Dash Core Qt with the -server parameter while you set the rpcusername and rpcpassword in their .conf files, you must set those values for every crypto you are planning to support. See samples below.

Run from source (requires .NET Core SDK)

You should use run.ps1 (Windows) or run.sh (Linux) to execute NBXplorer, but you can also execute it manually with the following command: dotnet run --no-launch-profile -p .\NBXplorer\NBXplorer.csproj -- <parameters>

Run using built DLL (requires .NET Core Runtime only)

If you already have a compiled DLL, you can run the executable with the following command: dotnet NBXplorer.dll <parameters>

Sample parameters

Running NBXplorer HTTP server on port 20300, connecting to the BTC mainnet node locally. --port=20300 --network=mainnet --btcnodeendpoint=127.0.0.1:32939

Running NBXplorer on testnet, supporting Bitcoin, Litecoin and Dash, using cookie authentication for BTC and LTC, and RPC username and password for Dash, connecting to all of them locally. --chains=btc,ltc,dash --network=testnet --dashrpcuser=myuser --dashrpcpassword=mypassword

Environment variables

The same settings as above, for example export NBXPLORER_PORT=20300. This is usefull for configuring docker.

How to Run

Command Line

You can use the dotnet command which is part of .NET Core to run NBXplorer. To run from source you must have the .NET Core SDK installed e.g. dotnet run NBXplorer.dll As described above you may add configuration parameters if desired.

If you have a compiled version of NBXplorer you should have a file in your build folder named NBXplorer.dll. This cannot itself be directly executed on the command line as it is not an executable file. Instead we can use the dotnet runtime to execute the dll file.

e.g. dotnet NBXplorer.dll

Important Note

This tool will only start scanning from the configured startheight. (By default, the height of the blockchain during your first run) This means that you might not see old payments from your HD key.

If you need to see old payments, you need to configure --[crypto]startheight to a specific height of your choice, then run it again with --[crypto]rescan, e.g. ./run.sh --chains=ltc --ltcrescan --ltcstartheight=101

How to query?

Using Postman

Postman is a useful tool for testing and experimenting with REST API's.

You can test the NBXplorer API quickly and easily using Postman.

If you use cookie authentication (enabled by default) in your locally run NBXplorer, you need to set that up in Postman:

  • Run NBXplorer and locate you cookie file (NBXplorer will generate a new Cookie file each time it runs in its default data folder)
  • In Postman create a new GET API test
  • In Authorization select Basic Auth, you should see 2 input boxes for username and password
  • Open your cookie file with a text editor e.g. Notepad on windows . You should see a cookie string e.g. __cookie__:0ff9cd83a5ac7c19a6b56a3d1e7a5c96e113d42dba7720a1f72a3a5e8c4b6c66
  • Back in Postman paste the __cookie__ part of your cookie file into username (whatever comes before the 😃
  • Paste the Hex string (after the : ) into the password box
  • Click the Update Request button in Postman - this will force Postman to generate the correct HTTP headers based on your cookie details
  • You should now see a new entry in the Headers section with a Key of Authorization and Value of Basic xxxxxxxxx where the string after Basic will be your Base64 encoded username and password.
  • Enter the API URL you are going to test

You can also disable authentication in NBXplorer for testing with the --noauth parameter. This makes testing quicker:

  • Run NBXplorer with the --noauth parameter
  • In Postman create a new GET API test
  • In Authorization select No Auth
  • Enter the API URL you are going to test

You are now ready to test the API - it is easiest to start with something simple such as the fees endpoint e.g.

http://localhost:24444/v1/cryptos/btc/fees/3

this should return a JSON payload e.g.

{ "feeRate": 9, "blockCount": 3 }

Message Brokers

Azure Service Bus

Support has been added for Azure Service Bus as a message broker. Currently 2 Queues and 2 Topics are supported

Queues

  • New Block
  • New Transaction

Topics

  • New Block
  • New Transaction

Filters should be applied on the client, if required.

To activate Azure Service Bus Mesages you should add an Azure Service Bus Connection string to your config file or on the command line.

  • To use queues you should specify the queue names you wish to use
  • To use topics you should specify the topic names you wish to use

You can use both queues and topics at the same time.

Config Settings

If you use the Configuration file to setup your NBXplorer options:

asbcnstr=Your Azure Service Bus Connection string
asbblockq=Name of queue to send New Block message to
asbtranq=Name of queue to send New Transaction message to
asbblockt=Name of topic to send New Block message to
asbtrant=Name of queue to send New Transaction message to

RabbitMq

Support has been added for RabbitMq as a message broker. Currently 2 exchanges supported;

  • New Block
  • New Transaction

Filters can be applied on the client by defining routing keys;

For transactions;

  • transactions.# to get all transactions.
  • transactions.[BTC].# to get all [Bitcoin] transactions.
  • transactions.[BTC].confirmed to get only confirmed [Bitcoin] transactions.
  • transactions.[BTC].unconfirmed to get only unconfirmed [Bitcoin] transactions.
  • transactions.*.confirmed to get all confirmed transactions.
  • transactions.*.unconfirmed to get all unconfirmed transactions.

For blocks;

  • blocks.# to get all blocks.
  • blocks.[BTC] to get all [Bitcoin] blocks.

To activate RabbitMq mesages you should add following settings to your config file or on the command line.

  • rmqhost, rmquser, rmqpass
Config Settings

If you use the Configuration file to setup your NBXplorer options:

rmqhost= RabbitMq host name
rmqvirtual= RabbitMq virtual host
rmquser= RabbitMq username
rmqpass= RabbitMq password
rmqtranex= Name of exchange to send transaction messages
rmqblockex= Name of exchange to send block messages

Payloads are JSON and map to NewBlockEvent, NewTransactionEvent in the NBXplorer.Models namespace. There is no support in NBXplorer client for message borkers at the current time. You will need to use the Serializer in NBXplorer.Client to de-serialize the objects or then implement your own JSON de-serializers for the custom types used in the payload.

For configuring serializers you can get crypto code info from BasicProperties.Headers[CryptoCode] of RabbitMq messages or UserProperties[CryptoCode] of Azure Service Bus messages. Examples can be found in unit tests.

Troubleshooting

If you receive a 401 Unauthorized then your cookie data is not working. Check you are using the current cookie by opening the cookie file again - also check the date/time of the cookie file to ensure it is the latest cookie (generated when you launched NBXplorer).

If you receive a 404 or timeout then Postman cannot see the endpoint

  • are you using the correct Port ?
  • are you running postman on localhost ?

Client API

A better documentation is on the way, for now the only documentation is the client API in C# on nuget. The ExplorerClient classes allows you to query unused addresses, and the UTXO of an HD PubKey. You can take a look at the tests to see how it works.

There is a simple use case documented on Blockchain Programming in C#.

How to run the tests?

This is easy, from repo directory:

cd NBXplorer.Tests
dotnet test

The tests can take long the first time, as it download Bitcoin Core binaries. (Between 5 and 10 minutes)

How to add support to my altcoin

First you need to add support for your altcoin to NBitcoin.Altcoins. (See here).

Once this is done and NBXplorer updated to use the last version of NBitcoin.Altcoins, follow Litecoin example.

If you want to test if everything is working, modify ServerTester.Environment.cs to match your altcoin.

Then run the tests.

Licence

This project is under MIT License.

Special thanks

Special thanks to Digital Garage for allowing me to open source the project, which is based on an internal work I have done on Elements.

Thanks to the DG Lab Blockchain Team who had to fight with lots of bugs. (in particular kallewoof :p)

Thanks to Metaco SA, whose constant challenging projects refine my taste on what a perfect Bitcoin API should be.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NBXplorer.Client:

Package Downloads
NLCoreBase

Package Description

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on NBXplorer.Client:

Repository Stars
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
dgarage/NBXplorer
NBitcoin Explorer
bizanc/Bizanc.io.Core
Bizanc Blockchain
Version Downloads Last updated
4.3.0 2,841 1/18/2024
4.2.6 2,913 11/15/2023
4.2.5 11,398 6/1/2023
4.2.4 511 5/9/2023
4.2.3 10,225 1/16/2023
4.2.2 3,588 12/8/2022
4.2.1 3,153 10/18/2022
4.2.0 14,632 4/3/2022
4.1.3 10,376 10/23/2021
4.1.2 1,847 9/2/2021
4.1.1 773 8/31/2021
4.1.0 2,578 8/30/2021
4.0.3 1,458 8/5/2021
4.0.2 761 7/31/2021
4.0.1 983 7/31/2021
4.0.0 1,019 7/28/2021
3.0.21 6,150 4/23/2021
3.0.20 7,842 1/25/2021
3.0.19 5,585 10/24/2020
3.0.18 2,722 8/19/2020
3.0.17 3,265 7/28/2020
3.0.16 9,802 6/11/2020
3.0.15 2,217 5/23/2020
3.0.14 1,018 5/23/2020
3.0.13 942 5/22/2020
3.0.12 931 5/22/2020
3.0.11 1,959 5/5/2020
3.0.10 937 5/4/2020
3.0.9 3,620 4/8/2020
3.0.8 896 4/3/2020
3.0.7 1,323 4/1/2020
3.0.6 999 3/31/2020
3.0.5 3,698 3/10/2020
3.0.4 931 3/10/2020
3.0.3 2,430 1/27/2020
3.0.2 3,395 1/13/2020
3.0.1 3,024 12/2/2019
3.0.0 1,031 12/1/2019
2.0.0.26 1,522 11/16/2019
2.0.0.25 957 11/16/2019
2.0.0.24 1,071 11/15/2019
2.0.0.23 1,148 11/11/2019
2.0.0.22 992 11/11/2019
2.0.0.21 1,695 10/23/2019
2.0.0.20 957 10/23/2019
2.0.0.19 2,661 8/13/2019
2.0.0.18 1,710 7/15/2019
2.0.0.17 1,863 5/30/2019
2.0.0.16 1,244 5/19/2019
2.0.0.15 1,105 5/16/2019
2.0.0.14 1,058 5/16/2019
2.0.0.13 1,195 5/14/2019
2.0.0.12 1,252 5/10/2019
2.0.0.11 1,303 5/3/2019
2.0.0.10 1,035 5/2/2019
2.0.0.9 1,032 5/2/2019
2.0.0.7 1,015 5/1/2019
2.0.0.6 8,964 3/31/2019
2.0.0.5 1,303 3/2/2019
2.0.0.4 1,281 3/1/2019
2.0.0.3 1,948 1/16/2019
2.0.0.2 1,290 1/16/2019
2.0.0.1 2,079 12/1/2018
2.0.0 3,002 11/21/2018
1.0.3.11 1,321 11/15/2018
1.0.3.10 1,382 11/9/2018
1.0.3.8 1,046 11/4/2018
1.0.3.6 1,100 11/4/2018
1.0.3.5 1,236 11/2/2018
1.0.3.4 1,193 10/31/2018
1.0.3.3 1,214 10/26/2018
1.0.3.2 1,140 10/25/2018
1.0.3.1 1,201 10/18/2018
1.0.3 1,469 10/2/2018
1.0.2.19 1,309 9/28/2018
1.0.2.18 1,532 8/14/2018
1.0.2.17 2,326 8/10/2018
1.0.2.16 1,220 8/7/2018
1.0.2.15 1,530 7/23/2018
1.0.2.14 1,301 7/21/2018
1.0.2.13 1,358 7/13/2018
1.0.2.12 1,545 6/29/2018
1.0.2.11 1,510 6/23/2018
1.0.2.10 1,564 5/31/2018
1.0.2.8 1,515 5/11/2018
1.0.2.7 1,451 5/8/2018
1.0.2.6 1,398 5/7/2018
1.0.2.5 1,400 5/7/2018
1.0.2.4 1,622 5/5/2018
1.0.2.3 1,544 4/26/2018
1.0.2.2 1,452 4/25/2018
1.0.2.1 1,441 4/25/2018
1.0.2 1,489 4/19/2018
1.0.1.24 1,578 4/13/2018
1.0.1.23 1,600 4/13/2018
1.0.1.22 1,418 4/13/2018
1.0.1.21 1,458 4/12/2018
1.0.1.20 1,463 4/10/2018
1.0.1.19 1,379 4/10/2018
1.0.1.18 1,469 4/9/2018
1.0.1.17 1,584 4/6/2018
1.0.1.16 1,814 3/12/2018
1.0.1.15 1,374 3/9/2018
1.0.1.14 1,508 3/6/2018
1.0.1.13 1,411 3/4/2018
1.0.1.11 1,463 3/3/2018
1.0.1.10 1,507 3/2/2018
1.0.1.9 1,571 2/12/2018
1.0.1.8 1,553 2/1/2018
1.0.1.7 1,478 2/1/2018
1.0.1.6 1,460 1/31/2018
1.0.1.5 1,469 1/31/2018
1.0.1.4 1,445 1/31/2018
1.0.1.3 1,471 1/31/2018
1.0.1.2 1,631 1/17/2018
1.0.1 1,465 1/16/2018
1.0.0.34 1,447 1/15/2018
1.0.0.33 1,473 1/12/2018
1.0.0.32 1,463 1/12/2018
1.0.0.31 1,383 1/12/2018
1.0.0.30 1,317 1/12/2018
1.0.0.29 1,460 1/11/2018
1.0.0.28 1,417 1/10/2018
1.0.0.27 1,448 1/10/2018
1.0.0.26 1,465 1/9/2018
1.0.0.25 1,458 1/8/2018
1.0.0.24 1,439 1/7/2018
1.0.0.23 1,486 1/7/2018
1.0.0.22 1,453 12/30/2017
1.0.0.21 1,436 12/20/2017
1.0.0.20 1,483 12/16/2017
1.0.0.19 1,466 12/16/2017
1.0.0.18 1,571 11/4/2017
1.0.0.17 1,436 10/6/2017
1.0.0.16 1,392 10/5/2017
1.0.0.15 1,342 10/5/2017
1.0.0.14 1,312 10/4/2017
1.0.0.12 1,351 9/15/2017
1.0.0.11 1,295 9/15/2017
1.0.0.10 1,337 9/15/2017
1.0.0.9 1,375 9/14/2017
1.0.0.8 1,292 9/12/2017
1.0.0.7 1,311 9/1/2017
1.0.0.6 1,397 8/30/2017
1.0.0.5 1,272 8/30/2017
1.0.0.4 1,376 8/25/2017
1.0.0.3 1,355 8/23/2017
1.0.0.2 1,285 8/22/2017
1.0.0.1 1,334 8/22/2017
1.0.0 1,354 8/18/2017