From e341e915f9d956694d10a00e0009c53723ada396 Mon Sep 17 00:00:00 2001 From: Dariusz Rybicki <dariusz@elixxir.io> Date: Fri, 3 Jun 2022 14:10:17 +0200 Subject: [PATCH] Add NDFDownloader example usage to README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 985aee7f..593ae563 100644 --- a/README.md +++ b/README.md @@ -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: ... ) ``` -- GitLab