Getting Started
Initialize FCL and add Blocto as a wallet provider
Installation
Requirements
CocoaPods
pod 'FCL-SDK', '~> 0.2.0'Swift Package Manager
.package(url: "https://github.com/blocto/fcl-swift", .upToNextMinor(from: "0.2.0"))// swift-tools-version: 5.6
import PackageDescription
let package = Package(
name: "MyPackage",
products: [
.library(
name: "MyPackage",
targets: ["MyPackage"]
),
],
dependencies: [
.package(url: "https://github.com/blocto/fcl-swift", .upToNextMinor(from: "0.2.0"))
],
targets: [
.target(
name: "MyPackage",
dependencies: [
.product(name: "FCL_SDK", package: "fcl-swift"),
]
)
]
)Configuration

Last updated
Was this helpful?