npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@breeztech/react-native-breez-sdk-liquid

v0.11.13

Published

React Native Breez Liquid SDK

Readme

React Native Breez SDK - Nodeless (Liquid Implementation)

The Breez SDK provides developers with a end-to-end solution for integrating self-custodial Lightning payments into their apps and services. It eliminates the need for third parties, simplifies the complexities of Bitcoin and Lightning, and enables seamless onboarding for billions of users to the future of peer-to-peer payments.

What Is the Breez SDK - Nodeless (Liquid Implementation)?

It’s a nodeless integration that offers a self-custodial, end-to-end solution for integrating Lightning payments, utilizing the Liquid Network with on-chain interoperability and third-party fiat on-ramps. Using the SDK you'll able to:

  • Send payments via various protocols such as: Bolt11, Bolt12, BIP353, LNURL-Pay, Lightning address, BTC address
  • Receive payments via various protocols such as: Bolt11, LNURL-Withdraw, LNURL-Pay, Lightning address, BTC address

Key Features

  • [x] Send and receive Lightning payments
  • [x] On-chain interoperability
  • [x] Complete LNURL functionality
  • [x] Multi-app support
  • [x] Multi-device support
  • [x] Real-time state backup
  • [x] Keys are only held by users
  • [x] USDT and multi-asset support on Liquid
  • [x] Built-in fiat on-ramp
  • [x] Free open-source solution

Getting Started

npm install @breeztech/react-native-breez-sdk-liquid

or

yarn add @breeztech/react-native-breez-sdk-liquid

Usage

Head over to the Breez SDK - Nodeless (Liquid Implementation) documentation to start implementing Lightning in your app.

You'll need an API key to use the Breez SDK - Nodeless (Liquid Implementation). To request an API key is free — you just need to complete this simple form.

import React, { useEffect } from "react"
import {
    addEventListener,
    connect,
    defaultConfig,
    LiquidNetwork,   
    NodeConfigVariant, 
    prepareSendPayment,
    SdkEvent,
    sendPayment
} from "@breeztech/react-native-breez-sdk-liquid";
import BuildConfig from "react-native-build-config"

const App = () => (
    ...

    const eventHandler = (sdkEvent: SdkEvent) => {
        console.log(`${JSON.stringify(sdkEvent)}`)
    }

    const payInvoice = async (bolt11: string) => {
        // Pay invoice
        let prepareSendRes = await prepareSendPayment({ destination: bolt11 })
        let sendPaymentRes = await sendPayment({ prepareResponse: prepareSendRes })
    }

    useEffect(() => {
        const asyncFn = async () => {
            // Construct the sdk default config
            const config = await defaultConfig(LiquidNetwork.MAINNET, BuildConfig.BREEZ_API_KEY)

            // Connect to the Breez SDK make it ready to use
            await connect({ config, mnemonic })

            // Add event handler
            await addEventListener(eventHandler)
        }

        asyncFn()
    }, [])

    ...
)

export default App

Example

In the example folder of the Breez SDK repository you will find a basic application for using Breez SDK. Change directory into the folder and install the dependencies:

yarn

Then to run on android:

yarn android

or for iOS:

yarn pods && yarn ios

Troubleshooting

Important fix for React Native versions below 0.71.0

If your project uses a React Native version less < 0.71.0, and you want to build your app for Android, you might run into an error like this:

 2 files found with path 'lib/arm64-v8a/libc++_shared.so' from inputs:
      - /(...)/.gradle/caches/transforms-3/c476ede63d070b991438fe0d1c323931/transformed/jetified-react-native-0.68.6/jni/arm64-v8a/libc++_shared.so
      - /(...)/.gradle/caches/transforms-3/7c318ac8dd87c1f0c7540616d6d47bd8/transformed/jetified-breez-sdk-0.1.3/jni/arm64-v8a/libc++_shared.so

To fix this you need to disambiguate which file to use by adding the following snippet to your app's android/app/build.gradle:

android {
    // ...
    packagingOptions {
        pickFirst 'lib/x86/libc++_shared.so'
        pickFirst 'lib/x86_64/libc++_shared.so'
        pickFirst 'lib/armeabi-v7a/libc++_shared.so'
        pickFirst 'lib/arm64-v8a/libc++_shared.so'
    }
}

Both the Breez SDK as well as React Native package the libc++_shared.so native library. React Native versions below 0.71.0 have a bug where they cannot automatically handle multiple versions of this file. This has been fixed in React Native 0.71.0 and thus the above snippet only needs to be added to projects using React Native < 0.71.0.