Files
breez-sdk-liquid/packages/flutter
ok300 08b2e5a6e2 Add fetch_onchain_limits service method (#343)
* Add pay_onchain_limits service method

* Add receive_onchain_limits service method

* Merge pay/receive_onchain_limits

* Update field names

* Split swapper method in get_chain_pair and get_chain_pairs

* Fix test

* Introduce and re-use Limits model

* Add fetch_lightning_limits SDK method

* Fix CI: propagate latest sdk-common changes
2024-07-03 09:22:29 +00:00
..
2024-05-06 11:10:17 +03:00
2024-06-14 15:26:26 +03:00

Breez Liquid SDK plugin

pub package

Table of contents

Description

This is a Flutter package that wraps the Dart bindings of Breez Liquid SDK.

Installation

To use this plugin, add breez_liquid_sdk as a dependency in your pubspec.yaml file.

Usage

To start using this package first import it in your Dart file.

import 'package:flutter_breez_liquid/flutter_breez_liquid.dart';

Call initialize() to initialize Breez Liquid SDK, preferably on main.dart:

import 'package:flutter_breez_liquid/flutter_breez_liquid.dart' as liquid_sdk;

void main() async {
    // Initialize library
    await liquid_sdk.initialize();
}

Please refer to Dart examples on Breez Liquid SDK documentation for more information on features & capabilities of the Breez Liquid SDK.

Documentation