From a74f421765138dc8b062cad2ac194092b514fecf Mon Sep 17 00:00:00 2001 From: Ross Savage Date: Fri, 29 Sep 2023 17:00:38 +0200 Subject: [PATCH] Add text about the node configuration and how the working directory is used --- src/guide/getting_started.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/guide/getting_started.md b/src/guide/getting_started.md index ff6b673..2c5d7d7 100644 --- a/src/guide/getting_started.md +++ b/src/guide/getting_started.md @@ -27,6 +27,12 @@ Breez SDK is available in several platforms. Follow the [Installing](install.md) ## Connecting +The first step is to construct the SDK configuration. In it the environment and Greenlight node configuration is defined, whether you are using an invite code or partner credentials. + +The SDK uses the config working directory to store the state of the SDK instance. Once a connection has been established with a node, the working directory can only be used for that node. When handling multiple instances of the SDK, one per node, each needs to have a different working directory defined. + +Now your SDK is ready to be used. +
Rust