Composable Compliance
iOS SDK of kycDAO
With the kycDAO iOS SDK you can
- check whether a wallet address have been verified and has a valid token.
- go through the verification process from identification till kycNFT minting.
The SDK can be used by
- Wallets
- DApps
- Web2 Applications
The documentation of the SDK is available here.
Tip: You can build, use and view the documentation in Xcode locally once you have the SDK added to your project.
Use Xcode to add to the project (File -> Swift Packages):
https://github.com/kycdao/kycdao-ios-sdk
or add this to your Package.swift
file:
.package(url: "https://github.com/kycdao/kycdao-ios-sdk", from: "0.1.1")
Add KycDao to your Podfile:
pod 'KycDao'
Then run the following command:
$ pod install
Add an import at the top of your source file
import KycDao
That's it. You can start coding.
Set up the environment and Configure the SDK for your needs
Important: It is recommended that you bring your own nodes when using the SDK, you can check the Configure SDK article to see how to set your own RPC URLs for your supported networks.
An example Xcode project for a DApp implementation is available in the iOS Example folder.
Learn the Wallet Integration or DApp Integration specific steps to use the SDK
Help your users getting verified by implementing the Onboarding flow
Deep dive into the SDK by visiting the API documentation
Main | Test |
---|---|
Polygon | Polygon Mumbai |
Celo | Celo Alfajores |
The SDK is also available on other mobile platforms (Android, React Native) and Web. You can browse our available SDKs here
You can learn about smart contract gating here