Tomek Drwięga
Tomek Drwięga
The whole point of `ethabi-derive` is to provide type-safe wrapper for contracts, so you cannot dynamically call a function given it's function name as a string, cause you wouldn't know...
https://github.com/ethereum/go-ethereum/wiki/Whisper-v5-RPC-API Lists following methods: ``` shh_addPrivateKey shh_addSymKey shh_deleteKeyPair shh_deleteMessageFilter shh_deleteSymKey shh_generateSymKeyFromPassword shh_getFilterMessages shh_getPrivateKey shh_getPublicKey shh_getSymKey shh_hasKeyPair shh_hasSymKey shh_info shh_markTrustedPeer shh_newKeyPair shh_newMessageFilter shh_newSymKey shh_post shh_setMaxMessageSize shh_setMinPoW shh_subscribe shh_unsubscribe shh_version ``` Our...
Yeah, seems that deployment estimation is indeed missing in the API. However I don't think we should change existing `web3.eth().estimate_gas()` but rather add it to the `Contract` stuff somehow (probably...
@Vypo your solution looks reasonable, why it doesn't seem to work? Note that the value you get is just an estimation, and it might change (even significantly) depending on the...
@Vypo ah, sorry. I just realised that you are setting `to` to some address - that won't measure contract creation gas cost, but rather a call to that contract. There...
Partially addressable by `ethabi_derive`. Should add examples how to use it (after `ethabi_derive` supports async calls/transacts)
We should rather use `ethabi_derive` and make it more ergonomic to call using `web3`, see #120
@That3Percent cool stuff! Keep us informed on the progress. Would be cool if it supported an API that would allow easy integration with `web3`.
Do you get any verbose output when running the task? Could you try to remove trailing `/` in `dest` path? I suspect that you are running Windows. Could you try...