Skip to content

Releases: m8b-dev/ether-binder

v0.2.1-rc

11 Oct 11:53
983f325
Compare
Choose a tag to compare

Fix EIP1559 base fee calculation
Fix implicit conversion warning

v0.2.0-rc

10 Oct 11:16
Compare
Choose a tag to compare

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

11 Nov 18:25
b574f6f
Compare
Choose a tag to compare
v0.1.9-beta

Update readme version

Fix Hash (bytes32 solc type) bindings params

11 Nov 18:14
8395908
Compare
Choose a tag to compare

This release adds fix that breaks bytes32 type in solidity

Fix payable binding transactions

23 Oct 13:19
0d0976a
Compare
Choose a tag to compare

This release contains fix to payable transactions where value wasnt used for estimations, which usually ended up in exception.

Fix for bindings

17 Oct 11:44
e6f7c4d
Compare
Choose a tag to compare

Add pubkey export

12 Oct 14:53
addde83
Compare
Choose a tag to compare

This release adds private key function to return public key (both binary and hex-encoded)

Fix

10 Oct 12:33
e0ac7de
Compare
Choose a tag to compare
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

10 Oct 11:53
793c879
Compare
Choose a tag to compare

This release explicitly ignores type "error" abi items in abigen instead of crashing.

Fix round 2

06 Oct 15:19
ecced2a
Compare
Choose a tag to compare

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])