A Web3 tool for your native iOS app
View Demo
·
Report Bug
·
Request Feature
[]
The purpuse of Glaip is to make Web3 integrations easier in your native mobile apps. Glaip takes care of all the wallet configuration so you can focus on building.
I created this project because I spent a lot of time trying to integrate my native apps into Web3 and found there was little documentation and tools to solve this problem.
Some of the goals for this project are:
To make this project great, I will need community feedback. Please feel free to post an issue or reach out on Twitter!
For this current versión we only support MetaMask login using the WalletConnectSwift framework.
Add this package to your porject (In Xcode: Add Packages -> Enter the following url in the search fill, Select Glaip)
https://github.com/maurovz/Glaip.git
For a complete login flow see the Example Project
You can initiate Glaip in SwiftUI as follow:
@ObservedObject private var glaip = Glaip(
title: "Glaip Demo App",
description: "Demo app to demonstrate Web3 login",
supportedWallets: [.WalletConnect])
Adding the connect event to a SwiftUI button:
Button("Connect to MetaMask") {
glaip.loginUser(type: .MetaMask) { result in
switch result {
case .success(let user):
print(user.wallet.address)
case .failure(let error):
print(error)
}
}
}
See the open issues to see if your problem is listed or feel free to create one.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the Apache 2.0 License.
Mauricio Vazquez - @_mau_vaz
Project Link: https://github.com/maurovz/Glaip