I'm learning ethereum blockchain with Ruby and using this library:
https://github.com/EthWorks/ethereum.rb
I follow the guide and use the file greeter.sol here:
https://github.com/marekkirejczyk/ruby_ethereum_example/blob/master/contracts/greeter.sol
But I always got this error:
invalid argument 0: json: cannot unmarshal non-string into Go struct field SendTxArgs.from of type common.Address
This is my current code
contract = Ethereum::Contract.create file: File.join(File.dirname(__FILE__), '../contracts/greeter.sol')
address = contract.deploy_and_wait("Hello from ethereum.rb!")
Anyone can help me, I'm very new to this.
Thanks.
Probably you should specify the
default_account
forclient(sender address)
.In my case I have added it in this way:
then