-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
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
Dapp Browser #303
Comments
Hello. |
你这个demo打开https://app.compound.finance可以自动连接上钱包, |
@skywinder When I open "https://app.compound.finance", demo can auto connect wallet. Check with alpha wallet app when you open "https://app.uniswap.org/#/swap" it will auto connect wallet. |
老哥,help me help me |
@skywinder Please help to solve this.. |
dear, @RajKumar7777 , this is low level library. This question is not related to this functionality. |
@skywinder I'm facing the same problem,when entered a dapp page with My code: class DAppsViewController: BrowserViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
webView.translatesAutoresizingMaskIntoConstraints = false
view.addSubview(webView)
NSLayoutConstraint.activate([
webView.topAnchor.constraint(equalTo: view.topAnchor),
webView.leadingAnchor.constraint(equalTo: view.leadingAnchor),
webView.trailingAnchor.constraint(equalTo: view.trailingAnchor),
webView.bottomAnchor.constraint(equalTo: view.bottomAnchor),
])
var urlToOpen = "https://1inch.exchange/"
urlToOpen = "https://app.compound.finance"
urlToOpen = "https://app.uniswap.org"
webView.load(URLRequest(url: URL(string: urlToOpen)!))
do {
let keystoreManager = KeystoreManager(["My EthereumKeystoreV3"])
let web3 = Web3.InfuraMainnetWeb3()
web3.addKeystoreManager(keystoreManager)
self.registerBridges(for: web3)
} catch {
print(error)
}
}
} |
Hi, Am integrating a Dapp browser into my ETH wallet following your documentation.
I just downloaded your example project web3swiftBrowser and tried to work with.Only https://app.compound.finance this link is connecting and working.
I want to connect my wallet to https://uniswap.org.
Now what should I do..Please help me to continue....
Thanks.
The text was updated successfully, but these errors were encountered: