Example: Events
Subscibe to the success
event to get notified once a user has paid and execute custom code.
HTML
<simple-boost id="boost" no-confetti="true" address="hello@getalby.com">
drop 100 sats
</simple-boost>
<script>
document.getElementById('boost').addEventListener('success', (e) => {
console.log(e);
alert(`Thanks for the sats! Payment preimage: ${e.detail.preimage}`);
});
</script>
React
<SimpleBoostButton id="boost" noConfetti={true} address="hello@getalby.com"
onSuccess={(e) => {
console.log(e)
alert(`Thanks for the sats! Payment preimage: ${e.detail.preimage}`);
}}
>
drop 100 sats
</SimpleBoostButton>