Skip to content

Commit 21ebb18

Browse files
Make uBitcoin a dependency (#12)
* Make uBitcoin a dependency instead of including it * Remove unused file .gitmodules
1 parent 1ada306 commit 21ebb18

6 files changed

+7
-8
lines changed

.gitmodules

-3
This file was deleted.

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ Check the [platformio registry page](https://registry.platformio.org/libraries/r
2828

2929
### ESP32 dependencies
3030
This library depends on the following additional libraries for the esp32 platform:
31-
- WebSockets@^2.4.1
31+
- ArduinoJson (>=7.1.0)
32+
- uBitcoin (>=0.2.0)
33+
- WebSockets (>=2.4.1)
3234

3335

3436
## Usage

library.json

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"version": "1.3.4",
3030
"dependencies": {
3131
"ArduinoJson": "^7.1.0",
32+
"uBitcoin": "^0.2.0",
3233
"WebSockets": "^2.4.1"
3334
}
3435
}

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ paragraph=This library allows you to send and receive Nostr events.
77
category=Communication
88
url=https://github.com/riccardobl/nostrduino
99
architectures=esp32
10-
depends=ArduinoJson (>=7.1.0),WebSockets (>=2.4.1)
10+
depends=ArduinoJson (>=7.1.0),uBitcoin (>=0.2.0),WebSockets (>=2.4.1)

src/NostrUtils.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "NostrUtils.h"
22

3-
#include "uBitcoin/src/Bitcoin.h"
4-
#include "uBitcoin/src/Hash.h"
3+
#include "Hash.h" // depends on uBitcoin: https://github.com/micro-bitcoin/uBitcoin
4+
#include "Bitcoin.h" // depends on uBitcoin: https://github.com/micro-bitcoin/uBitcoin
55

66
using namespace nostr;
77

src/uBitcoin

-1
This file was deleted.

0 commit comments

Comments
 (0)