Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #67 from lidofinance/feature/kiln
Browse files Browse the repository at this point in the history
Added Kiln network
  • Loading branch information
infloop authored Apr 1, 2022
2 parents e26ea2a + 00fce0c commit 507e67d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[comment]: <> (## [Unreleased]&#40;https://github.com/lidofinance/lido-python-sdk&#41; - 2021-09-15)

## [2.5.1](https://github.com/lidofinance/lido-python-sdk) - 2022-04-01
### Changed
- Added Kiln network ([#0067](https://github.com/lidofinance/lido-python-sdk/pull/67))

## [2.5.0](https://github.com/lidofinance/lido-python-sdk) - 2021-02-15
### Changed
- Now python processes validates a bunch of keys (1000) instead of 1. ([#0065](https://github.com/lidofinance/lido-python-sdk/pull/65))
Expand Down
2 changes: 2 additions & 0 deletions lido_sdk/contract/load_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
Network.Ropsten: "0xd40EefCFaB888C9159a61221def03bF77773FC19",
Network.Rinkeby: "0xF4242f9d78DB7218Ad72Ee3aE14469DBDE8731eD",
Network.Kintsugi: "0x3a6a994AC0CC96b6DDbaA99F10769384Fa14227B",
Network.Kiln: "0x3E50180cf438e185ec52Ade55855718584541476",
}

NODE_OPS_ADDRESSES = {
Expand All @@ -19,6 +20,7 @@
Network.Ropsten: "0x32c6f34F3920E8c0074241619c02be2fB722a68d",
Network.Rinkeby: "0x776dFe7Ec5D74526Aa65898B7d77FCfdf15ffBe6",
Network.Kintsugi: "0xeb7D01f713F59EFfB350D05b7AF66720373D4F41",
Network.Kiln: "0xb849C5b35DC45277Bad5c6F2c6C77183d842367c",
}


Expand Down
1 change: 1 addition & 0 deletions lido_sdk/eth_multicall/multicall_address.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
Network.xDai: "0xb5b692a88BDFc81ca69dcB1d924f59f0413A602a",
Network.Ropsten: "0x53c43764255c17bd724f74c4ef150724ac50a3ed",
Network.Kintsugi: "0x34cA8B8879C3578FBcDd50D88ECc29eDdBEDE0fD",
Network.Kiln: "0x7C7080f63Bc44321eDbB0b64D3e8B37aC7edc623",
}
3 changes: 3 additions & 0 deletions lido_sdk/network/type.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class Network(IntEnum):
xDai = 100
Ropsten = 3
Kintsugi = 1337702
Kiln = 1337802


# Network
Expand All @@ -18,6 +19,7 @@ class Network(IntEnum):
Network.Ropsten: bytes.fromhex("00000000"),
Network.Rinkeby: bytes.fromhex("00000000"),
Network.Kintsugi: bytes.fromhex("60000069"),
Network.Kiln: bytes.fromhex("70000069"),
}

# Existing withdrawal credentials on the chain
Expand All @@ -39,4 +41,5 @@ class Network(IntEnum):
],
Network.Rinkeby: [],
Network.Kintsugi: [],
Network.Kiln: [],
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "lido-sdk"
version = "2.5.0"
version = "2.5.1"
description = "This library consolidates various functions to efficiently load network data for Lido, validate node operator keys and find key duplicates."
authors = ["Lido <[email protected]>"]
license = "MIT License"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
EMAIL = "[email protected]"
AUTHOR = "Lido"
REQUIRES_PYTHON = ">=3.7,<4"
VERSION = "2.5.0"
VERSION = "2.5.1"

# Detecting target platform
PLATFORMS = {"windows", "linux", "darwin", "cygwin", "android"}
Expand Down

0 comments on commit 507e67d

Please sign in to comment.