Andrei Podkovyrin

Results 11 comments of Andrei Podkovyrin

Sorry, was quite busy with other stuff. The issue has been fixed in #34

Everything works fine on release build `Version 8.1 (8B62)`

In my case, I downloaded Xcode archive from Apple Developer not from the AppStore

Take a look https://github.com/podkovyrin/UIViewController-KeyboardAdditions

@koraykoska would love to hear your feedback on this, since I'm not 100% sure that's the right fix though in our case of decoding tx data for dynamic contract constructed...

You need to estimate gas before sending tx to the network. ``` let call = EthereumCall(from: from, to: to, gasPrice: gasPrice, value: value, data: data) eth.estimateGas(call: call, block: .latest) {...

@mudilajaganios ``` let rlp = RLPItem( nonce: nonce, gasPrice: gasPrice, gasLimit: gasLimit, to: to, data: data ) ``` This looks kinda dangerous, you need to include chain id in the...

I would suggest this as a trustworthy source: https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/util/src/signature.ts#L53 Tests: https://github.com/ethereumjs/ethereumjs-monorepo/blob/master/packages/util/test/signature.spec.ts#L101 Reference: [Yellow Paper](https://ethereum.github.io/yellowpaper/paper.pdf), see page 26, Appendix F, line (314)

Try to update compatibility UUIDs with the following command and restart Xcode: ``` find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add `defaults read...