Files
breez-sdk-docs/snippets/react-native/send_payment.ts
2023-10-24 22:38:52 +02:00

13 lines
306 B
TypeScript

import { sendPayment } from "@breeztech/react-native-breez-sdk"
const exampleSendLightningPayment = async () => {
// ANCHOR: send-payment
const bolt11 = "..."
const sendPaymentResponse = await sendPayment({
bolt11,
amountMsat: 3000000
})
// ANCHOR_END: send-payment
}