Releases: m8b-dev/ether-binder
v0.2.1-rc
v0.2.0-rc
eip-4844 transactions support
Changing the tag from -beta
to -rc
since binder is a year old already, and have been running in production here and there for months.
Fix type error in abigen
v0.1.9-beta Update readme version
Fix Hash (bytes32 solc type) bindings params
This release adds fix that breaks bytes32 type in solidity
Fix payable binding transactions
This release contains fix to payable transactions where value wasnt used for estimations, which usually ended up in exception.
Fix for bindings
Fixes #1
Add pubkey export
This release adds private key function to return public key (both binary and hex-encoded)
Fix
This release fixes issue introduced in 0.1.2 where Functions::hex2bin()
had typo making instead of always even amount of nibbles it made always odd amount of them, breaking multiple things
Abigen fix
This release explicitly ignores type "error" abi items in abigen instead of crashing.
Fix round 2
This release contains fixes around /** Doc Blocks */
, namely @throws
tags.
Also this release contains new Functions::hex2bin()
which is more tolerant than vanilla php hex2bin()
:
- instead of returning false, throws exception
- can handle 0x automagically
- will autoprefix 0 for odd size hexes ie.
0x123
->0x0123
(and will return bytes [0x01, 0x23])