pull down to refresh

the docs at webln.guide don't say how to specify the recipient of a payment.
		await window.webln.enable();
		await webln.enable();
		const hex = npubToHex(PAYMENT_RECIPIENT_NIP05);
		console.log(PAYMENT_RECIPIENT_NIP05, hex);

		const invoice = await webln.makeInvoice({
			amount: 10
		});
		const result = await webln.keysend({
			destination: hex,
			amount: '10',
			customRecords: {
				'34349334': 'Hello! ⚡'
			}
		});
		console.log(result);

reply