From 7315a635c1c983eae2a7ebaa24aab607d68373c5 Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Fri, 29 Nov 2024 11:25:17 +0200 Subject: [PATCH] small fixes --- examples/Cookbook.ipynb | 2 +- multiversx_sdk/core/config.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/Cookbook.ipynb b/examples/Cookbook.ipynb index 7e124ed7..c6eea953 100644 --- a/examples/Cookbook.ipynb +++ b/examples/Cookbook.ipynb @@ -190,7 +190,7 @@ "source": [ "### Changing the default hrp\n", "\n", - "We have a configuration class, called `LibraryConfig`, that only stores the **default hrp** of the addresses. The default value is `erd`. The hrp can be changed when instantiating an address, or it can be changed in the `LibraryConfig` class, and all the addresses created will have the newly set hrp. " + "We have a configuration class, called `LibraryConfig`, that only stores (for the moment) the **default hrp** of the addresses. The default value is `erd`. The hrp can be changed when instantiating an address, or it can be changed in the `LibraryConfig` class, and all the addresses created will have the newly set hrp. " ] }, { diff --git a/multiversx_sdk/core/config.py b/multiversx_sdk/core/config.py index 64e962e8..6edc1fd0 100644 --- a/multiversx_sdk/core/config.py +++ b/multiversx_sdk/core/config.py @@ -6,11 +6,11 @@ class LibraryConfig: """ Global configuration of the library. - Generally speaking, this configuration should only be altered on exotic use cases - it can be seen as a collection of constants (or , to be more precise, rarely changed variables) that are used throughout the library. + Generally speaking, this configuration should only be altered in exotic use cases. + It can be seen as a collection of constants or, more precisely, variables that are rarely changed and used throughout the library. Never alter the configuration within a library! - Only alter the configuration(if needed) within an(end) application that uses this library. + Only alter the configuration, if needed, within a final application that uses this library. """ # The human-readable part of the bech32 addresses