From 29c504da99b062729de2b6ac8305e2a44a5765b7 Mon Sep 17 00:00:00 2001 From: Roy Sheinfeld <31890660+kingonly@users.noreply.github.com> Date: Sun, 17 Dec 2023 15:45:09 +0200 Subject: [PATCH] Update static_channel_backup.md --- src/guide/static_channel_backup.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/guide/static_channel_backup.md b/src/guide/static_channel_backup.md index 049d652..7278415 100644 --- a/src/guide/static_channel_backup.md +++ b/src/guide/static_channel_backup.md @@ -1,11 +1,10 @@ -# Static Channel Backup +# Exporting SCB (Static Channel Backup) -A static channel backup is automatically saved by the Breez SDK in the background. More specifically, the static backup is updated -each time a new channel is opened. +An SCB file is automatically generated by the Breez SDK in the background. More specifically, the SCB file is updated whenever a new channel is opened. -The static channel backup can be used as a last resort to recover funds in case the Greenlight node becomes inaccessible. Recovering the funds is currently not part of the Breez SDK. In order to recover the funds, the user can initialize a new core lightning node with its [HSM secret](https://docs.corelightning.org/docs/hsm-secret) using their seed. Then trigger a channel recovery through [the recoverchannel method](https://docs.corelightning.org/reference/lightning-recoverchannel) provided by CLN. +The SCB file can be used as a last resort to recover funds in case the Greenlight node becomes inaccessible ("doom day" scenario). In order to recover the funds using the SBC information, users can initialize a new core lightning node with its [HSM secret](https://docs.corelightning.org/docs/hsm-secret) using their seed. Then, trigger a channel recovery through [the recoverchannel method](https://docs.corelightning.org/reference/lightning-recoverchannel) provided by CLN. -In order to use the recoverchannel method, the user needs to provide the static channel backup file. It can be retrieved from the SDK's working directory as follows: +In order to use the recoverchannel method, the user needs to provide the SCB file. It can be retrieved from the SDK's working directory as follows:
Rust