You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Non-permanently connected peers are now included in node.listPeers().
9
+
10
+
#### API changed
11
+
- node.newFundingAddress renamed to `newOnchainAddress`.
12
+
- node.sendToOnChainAddress renamed to `sendToOnchainAddress`.
13
+
- node.sendAllToOnChainAddress renamed to `sendAllToOnchainAddress`.
14
+
- Remove node.onChainBalance.
15
+
1
16
## [0.1.1-alpha]
2
17
Support `Dart 3` and `Flutter 3.10`
3
18
19
+
## [0.1.1]
20
+
Support `Dart 3` and `Flutter 3.10`
21
+
4
22
### Fixed
5
23
-`setEntropyBip39Mnemonic` issue resolved
6
-
## [0.1.0-alpha]
24
+
## [0.1.0]
7
25
8
26
This is the first release of `ldk_node`. It features support for sourcing chain data via an `Esplora` server, filesystem persistence, gossip sourcing via the `Lightning` peer-to-peer network, and configurble entropy sources for the integrated LDK & BDK-based wallets.
Copy file name to clipboardExpand all lines: README.md
+25-7Lines changed: 25 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ A Flutter library for [LDK Node](https://github.com/lightningdevkit/ldk-node), a
4
4
5
5
LDK Node is a non-custodial Lightning node. Its central goal is to provide a small, simple, and straightforward interface that enables users to easily set up and run a Lightning node with an integrated on-chain wallet. While minimalism is at its core, LDK Node aims to be sufficiently modular and configurable to be useful for a variety of use cases.
6
6
7
-
The primary abstraction of the library is the Node, which can be retrieved by setting up and configuring a Builder to your liking and calling build(). Node can then be controlled via commands such as start, stop, connectOpen_channel, sendPayment, etc.:
7
+
The primary abstraction of the library is the Node, which can be retrieved by setting up and configuring a Builder to your liking and calling build(). Node can then be controlled via commands such as start, stop, connectOpenChannel, sendPayment, etc.:
8
8
9
9
This release covers the same API from LDK Node 0.1.0 Rust. It has support for sourcing chain data via an Esplora server, filesystem persistence, gossip sourcing via the Lightning peer-to-peer network, and configurable entropy sources for the integrated LDK and BDK-based wallets.
10
10
@@ -15,7 +15,7 @@ To use the `ldk_node` package in your project, add it as a dependency in your pr
15
15
16
16
```dart
17
17
dependencies:
18
-
ldk_node: ^0.1.1-alpha
18
+
ldk_node: ^0.1.2
19
19
```
20
20
or add from pub.dev using `pub add` command
21
21
@@ -39,12 +39,25 @@ final path = "${directory.path}alice's_node";
39
39
final esploraUrl = https://blockstream.info/testnet/api;
0 commit comments