Files
breez-sdk-liquid/packages/dart
Roei Erez 5a6649ade6 Merge branch 'v0.8.3'
* v0.8.3:
  update version to 0.8.3
  Set esplora/waterfalls as default chain explorer backend
  Update version to 0.8.2
  Fix recommended fees calculation
  update version to 0.8.1
  Broadcast receive swap server lockup txs (#904)
2025-05-19 10:02:59 +03:00
..
2024-07-09 17:25:05 +02:00
2025-05-04 12:01:09 +03:00
2024-07-09 17:25:05 +02:00

Breez Liquid SDK plugin

pub package

Table of contents

Description

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

Installation

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

Usage

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

import 'package:breez_liquid/breez_liquid.dart';

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

import 'package:breez_liquid/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