Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "sw-utils"
version = "v0.12.14"
version = "v0.12.15"
Comment thread
cyc60 marked this conversation as resolved.
description = "StakeWise Python utils"
authors = ["StakeWise Labs <info@stakewise.io>"]
license = "GPL-3.0-or-later"
Expand Down
4 changes: 4 additions & 0 deletions sw_utils/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class BaseNetworkConfig:
MIN_EFFECTIVE_PRIORITY_FEE_PER_GAS: Wei
COMMUNITY_VAULT_CONTRACT_ADDRESS: ChecksumAddress
NODES_MANAGER_CONTRACT_ADDRESS: ChecksumAddress
NODES_MANAGER_GENESIS_BLOCK: BlockNumber
OS_TOKEN_REDEEMER_CONTRACT_ADDRESS: ChecksumAddress
VALIDATORS_CHECKER_CONTRACT_ADDRESS: ChecksumAddress
Comment thread
cyc60 marked this conversation as resolved.

Expand Down Expand Up @@ -138,6 +139,7 @@ def PECTRA_SLOT(self) -> int:
NODES_MANAGER_CONTRACT_ADDRESS=Web3.to_checksum_address(
'0x5674848102D29d0652f03AcDc548C342ecA13592'
),
NODES_MANAGER_GENESIS_BLOCK=BlockNumber(24923159),
OS_TOKEN_REDEEMER_CONTRACT_ADDRESS=Web3.to_checksum_address(
'0xc43A7b16A7a167c0318390Cba16787C11e9e1FD0'
),
Expand Down Expand Up @@ -201,6 +203,7 @@ def PECTRA_SLOT(self) -> int:
NODES_MANAGER_CONTRACT_ADDRESS=Web3.to_checksum_address(
'0x7FaE5772fEe74e71077D3B47e629DD7a9Adb7149'
),
NODES_MANAGER_GENESIS_BLOCK=BlockNumber(2657589),
OS_TOKEN_REDEEMER_CONTRACT_ADDRESS=Web3.to_checksum_address(
'0x3A422b2433f28CD123a8DE665887f7a040BF0258'
),
Expand Down Expand Up @@ -264,6 +267,7 @@ def PECTRA_SLOT(self) -> int:
MIN_EFFECTIVE_PRIORITY_FEE_PER_GAS=Web3.to_wei(1, 'gwei'),
COMMUNITY_VAULT_CONTRACT_ADDRESS=Web3.to_checksum_address(EMPTY_ADDR_HEX),
NODES_MANAGER_CONTRACT_ADDRESS=Web3.to_checksum_address(EMPTY_ADDR_HEX),
NODES_MANAGER_GENESIS_BLOCK=BlockNumber(0),
OS_TOKEN_REDEEMER_CONTRACT_ADDRESS=Web3.to_checksum_address(
'0xB790391ee99b9193Ebb80022bf127d24Bac586c4'
),
Expand Down
Loading