Swift implementation of WalletKit and AppKit for native iOS applications.
- iOS 13
- XCode 13
- Swift 5
- In order to build API documentation in XCode go to Product -> Build Documentation
- Getting started with wallet integration
- Beginner guide to WalletConnect v2.0 for iOS Developers
- Protocol Documentation
- Glossary
- Migration guide to AppKit
- Migration guide to WalletKit
Add .package(url:_:) to your Package.swift:
dependencies: [
.package(url: "https://github.com/reown-com/reown-swift", .branch("main")),
],
Add pod to your Podfile:
pod 'reown-swift'
If you encounter any problems during package installation, you can specify the exact path to the repository
pod 'reown-swift', :git => 'https://github.com/reown-com/reown-swift.git', :tag => '1.0.0'
Follow instructions from Configuration.xcconfig and configure PROJECT_ID with your ID from WalletConnect Dashboard
// Uncomment next line and paste your project id. Get this on: https://cloud.walletconnect.com/sign-in
// PROJECT_ID = YOUR_PROJECT_ID
// To use Push Notifications on the Simulator you need to grab the simulator identifier
// from Window->Devices and Simulators->Simulator you're using->Identifier
SIMULATOR_IDENTIFIER = YOUR_SIMULATOR_IDENTIFIER
open Example/ExampleApp.xcodeproj
Apache 2.0