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

13 lines
336 B
TypeScript

import { sendSpontaneousPayment } from '@breeztech/react-native-breez-sdk'
const exampleSendSpontaneousPayment = async () => {
// ANCHOR: send-spontaneous-payment
const nodeId = '...'
const sendPaymentResponse = await sendSpontaneousPayment({
nodeId,
amountMsat: 3000000
})
// ANCHOR_END: send-spontaneous-payment
}