0 purchases
btcpay client
BTCPay client library for Dart #
This client takes care of communications to a BTCPay server. This is heavily
dependent on PointyCastle but eschews reflection so it can be used in Flutter.
This is not a complete library. Pairing and creating invoices is supported but
other endpoints are not. Note that most of the heavy lifting is done. The
generation of the SIN and the signing of requests.
Installing #
Add it to your pubspec.yaml:
dependencies:
btcpay_client: ^0.1.2
copied to clipboard
Getting Started #
Have a look in the example directory for several examples.
Creating a client is done by passing a URL on which to reach your BTCPay server
and either a BigInt or a
AsymmetricKeyPair.
var client = Client.fromBarePrivateKey("url-to-btcpay-server", someBigInt);
await client.createInvoice(10.0, "EUR");
copied to clipboard
Tests #
$ pub run test
copied to clipboard
Licence overview #
All files in this repository fall under the license specified in
COPYING. The project is licensed as AGPL with a lesser
clause. It may be used within a
proprietary project, but the core library and any changes to it must be
published online. Source code for this library must always remain free for
everybody to access.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.