We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you add feature to support delegate methods from WKWebView like web3view for TrustWallet on Android using your library:
Setters: web3View.setChainID(chainID) web3View.setChainType(chainType) // tesnet, mainet web3View.setRpsUrl(url) web3View.setWalletAddress(addressString) Delegate methods: web3View.setOnSignMessage(message) { print(message) web3View.signMessage() } web3View.setOnSignPersonalMessage(message) { print(message) web3View.signMessage() } web3View.setOnSignTransaction(transaction) { print(transaction) web3View.signMessage() } Send results: web3View.signMessageCancel() web3View.signMessageSuccessful(message, signedMessage) web3View.signPersonalMessage(message, signedMessage) web3View.signTransactionSuccessful(transaction, signedTx)
The text was updated successfully, but these errors were encountered:
Oh, making a pre-setup WkWebView is actually a great idea, thanks, will work on it
Sorry, something went wrong.
Not only pre-setup but also possibility to catch custom events and use it in some additional logic.
..something like this
web3View.setOnSignTransaction(transaction) { myAwesomeLogic(transaction) }
Already done in 2.0
TonioMacaronio
No branches or pull requests
Can you add feature to support delegate methods from WKWebView like web3view for TrustWallet on Android using your library:
The text was updated successfully, but these errors were encountered: