- Fixed
Contract.noncecalculation - Fixed
Transaction.mined? - Fix
BigDecimal.newdeprecation
Unclaimed project
Are you a maintainer of ethereum.rb? Claim this project to take control of your public changelog and roadmap.
Contract.nonce calculationTransaction.mined?BigDecimal.new deprecationThis release contains multiple little improvements and compatibility fixes:
Compatibility fixes for solc 0.4.13 and parity 1.6.10 on Ubuntu.
Ethereum.rb now supports signing transactions with key using ruby-eth gem.
To create a new key simply do the following:
key = Eth::Key.new
Then you can use the key to deploy contracts and send transactions, i.e.:
contract = Ethereum::Contract.create(file: "...")
contract.key = key
contract.deploy_and_...