Skip to content
Snippets Groups Projects

Add basic usage examples

Merged Dariusz Rybicki requested to merge feature/basic-docs into main
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
+ 3
2
# elixxir-dapps-sdk-swift
# Elixxir dApps Swift SDK
![Swift 5.6](https://img.shields.io/badge/swift-5.6-orange.svg)
![platform iOS](https://img.shields.io/badge/platform-iOS-blue.svg)
@@ -14,10 +14,11 @@ For usage examples, checkout included example iOS application.
Create a new client and store it on disk:
```swift
let downloadNDF: NDFDownloader = .live
let createClient: ClientCreator = .live
try createClient(
directoryURL: ...,
ndf: ...,
ndf: try downloadNDF(.mainnet),
password: ...
)
```
Loading