diff --git a/Sources/ElixxirDAppsSDK/Client.swift b/Sources/ElixxirDAppsSDK/Client.swift index 7183cc636a9f2c5410d14d437e9c41d5f540d71f..6cfc8fe9cfd8702a1903bec56e1087dc09687a64 100644 --- a/Sources/ElixxirDAppsSDK/Client.swift +++ b/Sources/ElixxirDAppsSDK/Client.swift @@ -3,13 +3,15 @@ import Bindings public struct Client { public var networkFollower: NetworkFollower public var waitForNetwork: NetworkWaiter + public var makeIdentity: IdentityMaker } extension Client { public static func live(bindingsClient: BindingsClient) -> Client { Client( networkFollower: .live(bindingsClient: bindingsClient), - waitForNetwork: .live(bindingsClient: bindingsClient) + waitForNetwork: .live(bindingsClient: bindingsClient), + makeIdentity: .live(bindingsClient: bindingsClient) ) } } @@ -18,7 +20,8 @@ extension Client { extension Client { public static let failing = Client( networkFollower: .failing, - waitForNetwork: .failing + waitForNetwork: .failing, + makeIdentity: .failing ) } #endif diff --git a/Sources/ElixxirDAppsSDK/IdentityMaker.swift b/Sources/ElixxirDAppsSDK/IdentityMaker.swift new file mode 100644 index 0000000000000000000000000000000000000000..91e7eeed7c4d90d73896c100a8416471581d7564 --- /dev/null +++ b/Sources/ElixxirDAppsSDK/IdentityMaker.swift @@ -0,0 +1,26 @@ +import Bindings + +public struct IdentityMaker { + public var make: () throws -> Data + + public func callAsFunction() throws -> Data { + try make() + } +} + +extension IdentityMaker { + public static func live(bindingsClient: BindingsClient) -> IdentityMaker { + IdentityMaker { + try bindingsClient.makeIdentity() + } + } +} + +#if DEBUG +extension IdentityMaker { + public static let failing = IdentityMaker { + struct NotImplemented: Error {} + throw NotImplemented() + } +} +#endif