Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links when landing at root URL #131

Merged
merged 2 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion snippets/react-native/closed_channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const examplePrepareRedeemOnchainFunds = async (feeRate: number) => {
// ANCHOR: prepare-redeem-onchain-funds
try {
const toAddress = 'bc1..'
const satPerVbyte = feeRate
const satPerVbyte = feeRate
const prepareRedeemOnchainFundsResp = await prepareRedeemOnchainFunds({ toAddress, satPerVbyte })
} catch (err) {
console.error(err)
Expand Down
4 changes: 2 additions & 2 deletions src/guide/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Join this [telegram group](https://t.me/breezsdk) or email us at <contact@breez.

## Installing

Breez SDK is available in several platforms. Follow the [Installing](install.md) page for instructions on how to install on your platform.
Breez SDK is available in several platforms. Follow the [Installing](/guide/install.md) page for instructions on how to install on your platform.

## Connecting

Expand Down Expand Up @@ -184,4 +184,4 @@ At any point we can fetch our balance from the Greenlight node:
</section>
</custom-tabs>

You are now ready to receive a Lightning [payment](payments.md).
You are now ready to receive a Lightning [payment](/guide/payments.md).
2 changes: 1 addition & 1 deletion src/guide/payment_notification.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Receiving payments via mobile notifications

The Breez SDK provides users the ability to receive Lightning payments via mobile notifications. It uses a webhook that allows your application to be notified (via a pre-specified URL) when a payment is about to be received. To use this feature, you need to set up a webhook that an LSP can call when a payment is received and [register it in the Breez SDK](https://sdk-doc.breez.technology/guide/payment_notification.html#step-3-register-a-webhook). This webhook, a URL endpoint in your application, will handle incoming payment notifications. This URL should be capable of receiving POST requests. The payment received webhook payload is json formatted and contains the following structure:
The Breez SDK provides users the ability to receive Lightning payments via mobile notifications. It uses a webhook that allows your application to be notified (via a pre-specified URL) when a payment is about to be received. To use this feature, you need to set up a webhook that an LSP can call when a payment is received and [register it in the Breez SDK](payment_notification.html#step-3-register-a-webhook). This webhook, a URL endpoint in your application, will handle incoming payment notifications. This URL should be capable of receiving POST requests. The payment received webhook payload is json formatted and contains the following structure:

<section>
<pre>
Expand Down
Loading