Files
breez-sdk-docs/snippets/react-native/receive_payment.ts
2023-11-17 13:15:26 +01:00

11 lines
297 B
TypeScript

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