Files
breez-sdk-docs/snippets/react-native/receive_payment.ts

13 lines
366 B
TypeScript

import { receivePayment } from '@breeztech/react-native-breez-sdk'
const exampleReceiveLightningPayment = async () => {
// ANCHOR: receive-payment
const receivePaymentResponse = await receivePayment({
amountMsat: 3_000_000,
description: 'Invoice for 3000 sats'
})
const invoice = receivePaymentResponse.lnInvoice
// ANCHOR_END: receive-payment
}