diff --git a/CHANGELOG.md b/CHANGELOG.md index 598fd32..d8e5903 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [comment]: <> (## [Unreleased](https://github.com/lidofinance/lido-python-sdk) - 2021-09-15) -## [4.0.1](https://github.com/lidofinance/lido-python-sdk/pull/91) - 2023-10-23 +## [4.1.0](https://github.com/lidofinance/lido-python-sdk/pull/91) - 2023-10-23 ### Changed - Removed support for Kovan, Rinkeby, xDai, Ropsten, Kintsugi, Kiln and Zhejiang. - Added support to Holesky. diff --git a/README.md b/README.md index 80475cf..12f7ad2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,10 @@ [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -A library with which you can get all Lido validator's signatures and check their validity. +### ❗Python SDK supports only Curated Staking module. Check out [KAPI](https://github.com/lidofinance/lido-keys-api) project if you need **all** Lido keys.❗ + +Lido Python SDK - convenient interface to check validator's pub keys in Node Operators registry. +Provides ability to download, verify and check for duplicates keys in curated module (Node Operators registry). ## Installation This library is available on PyPi: diff --git a/pyproject.toml b/pyproject.toml index 388aa53..58e71d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lido-sdk" -version = "4.0.1" +version = "4.1.0" description = "This library consolidates various functions to efficiently load network data for Lido, validate node operator keys and find key duplicates." authors = ["Lido "] license = "MIT License" diff --git a/setup.py b/setup.py index 7e751c9..bfe4324 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ # Where the magic happens: setup( name="lido-sdk", - version="4.0.1", + version="4.1.0", description="This library consolidates various functions to efficiently load network data for Lido," " validate node operator keys and find key duplicates.", long_description=long_description,