Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Swift
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
Elixxir dApps SDK Swift
Commits
d8b78e4e
Commit
d8b78e4e
authored
2 years ago
by
Dariusz Rybicki
Browse files
Options
Downloads
Patches
Plain Diff
Add ContactPubkeyProvider
parent
d7071f1c
No related branches found
No related tags found
1 merge request
!2
Bindings API wrapper
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Sources/ElixxirDAppsSDK/ContactPubkeyProvider.swift
+32
-0
32 additions, 0 deletions
Sources/ElixxirDAppsSDK/ContactPubkeyProvider.swift
with
32 additions
and
0 deletions
Sources/ElixxirDAppsSDK/ContactPubkeyProvider.swift
0 → 100644
+
32
−
0
View file @
d8b78e4e
import
Bindings
public
struct
ContactPubkeyProvider
{
public
var
get
:
(
Data
)
throws
->
Data
public
func
callAsFunction
(
contact
:
Data
)
throws
->
Data
{
try
get
(
contact
)
}
}
extension
ContactPubkeyProvider
{
public
static
let
live
=
ContactPubkeyProvider
{
contact
in
var
error
:
NSError
?
let
pubkey
=
BindingsGetPubkeyFromContact
(
contact
,
&
error
)
if
let
error
=
error
{
throw
error
}
guard
let
pubkey
=
pubkey
else
{
fatalError
(
"BindingsGetPubkeyFromContact returned `nil` without providing error"
)
}
return
pubkey
}
}
#if DEBUG
extension
ContactPubkeyProvider
{
public
static
let
failing
=
ContactPubkeyProvider
{
_
in
struct
NotImplemented
:
Error
{}
throw
NotImplemented
()
}
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment