Skip to content

Commit

Permalink
Preparing a release
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Oct 18, 2023
1 parent e1312d8 commit 25bd631
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion eth_defi/hotwallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,14 @@ def __repr__(self):

@property
def raw_transaction(self) -> HexBytes:
"""Get the bytes to be broadcasted to the P2P network."""
"""Get the bytes to be broadcasted to the P2P network.
Legacy web3.py compatibility.
"""
return self.rawTransaction

def __getitem__(self, index):
# Legacy web3.py compatibility.
return __getitem__(self, index)


Expand Down
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 = "web3-ethereum-defi"
version = "0.22.23"
version = "0.22.24"
description = "Python library for Uniswap, Aave, ChainLink, Enzyme and other protocols on BNB Chain, Polygon, Ethereum and other blockchains"
authors = ["Mikko Ohtamaa <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 25bd631

Please sign in to comment.