Skip to content

Releases: LedgerHQ/python-erc7730

v0.3.1

23 Jan 16:13
5aad9a7
Compare
Choose a tag to compare
  • feat: exclude array slices from schema path @fsamier (#180)

🛠️ Dependency updates

v0.3.0

10 Jan 14:21
e237dd7
Compare
Choose a tag to compare

⚠️ Breaking changes

erc7730.generate.generate_descriptor interface change: method now expects either string or bytes rather than path. Path should be resolved by caller.

Migration guide:

generate_descriptor(chain_id=..., contract_address=..., abi_file="/path/to/abi.json")

Should be replaced by:

with open("/path/to/abi.json", "rb") as f:
   generate_descriptor(chain_id=..., contract_address=..., abi=f.read())

CLI is unchanged.

🛠️ Dependency updates

v0.2.1

17 Dec 13:44
dd7ffe9
Compare
Choose a tag to compare

v0.2.0

17 Dec 11:33
45c2c49
Compare
Choose a tag to compare

v0.1.34

06 Dec 09:16
4c86f68
Compare
Choose a tag to compare

🛠️ Dependency updates

v0.1.33

03 Dec 18:10
a3c209a
Compare
Choose a tag to compare

v0.1.32

03 Dec 17:33
02b6629
Compare
Choose a tag to compare

v0.1.31

03 Dec 17:20
770bb7c
Compare
Choose a tag to compare

🛠️ Dependency updates

v0.1.30

21 Nov 11:29
f62f2b6
Compare
Choose a tag to compare

🛠️ Dependency updates

v0.1.29

18 Nov 15:50
046d172
Compare
Choose a tag to compare

🌈 Tech improvements

🛠️ Dependency updates