mirror of
https://github.com/aljazceru/breez-sdk-docs.git
synced 2025-12-17 13:54:20 +01:00
* Bump breez-sdk snippet dependency to 0.2.12 * Bump the Swift snippet macos version to v13 * Bump breez-sdk snippet dependency to 0.2.14 * swiftformat * redeem_onchain_funds example * Document swapinfo fields * example on how to use local breez-sdk package * fix dart example * yarn lint * remove swapinfo docs * dart fixup --------- Co-authored-by: ok300 <106775972+ok300@users.noreply.github.com>
50 lines
1.3 KiB
Swift
50 lines
1.3 KiB
Swift
//
|
|
// GettingStarted.swift
|
|
//
|
|
//
|
|
// Created by ruben on 13/11/2023.
|
|
//
|
|
|
|
import BreezSDK
|
|
|
|
// ANCHOR: init-sdk
|
|
// SDK events listener
|
|
class SDKListener: EventListener {
|
|
func onEvent(e: BreezEvent) {
|
|
print("received event ", e)
|
|
}
|
|
}
|
|
|
|
func gettingStarted() throws -> BlockingBreezServices? {
|
|
// Create the default config
|
|
let seed = try? mnemonicToSeed(phrase: "<mnemonic words>")
|
|
|
|
let inviteCode = "<invite code>"
|
|
let apiKey = "<api key>"
|
|
var config = defaultConfig(envType: EnvironmentType.production, apiKey: apiKey,
|
|
nodeConfig: NodeConfig.greenlight(
|
|
config: GreenlightNodeConfig(partnerCredentials: nil, inviteCode: inviteCode)))
|
|
|
|
// Customize the config object according to your needs
|
|
config.workingDir = "path to an existing directory"
|
|
|
|
// Connect to the Breez SDK make it ready for use
|
|
guard seed != nil else {
|
|
return nil
|
|
}
|
|
let sdk = try? connect(config: config, seed: seed!, listener: SDKListener())
|
|
|
|
return sdk
|
|
}
|
|
|
|
// ANCHOR_END: init-sdk
|
|
|
|
func gettingStartedNodeInfo(sdk: BlockingBreezServices) {
|
|
// ANCHOR: fetch-balance
|
|
if let nodeInfo = try? sdk.nodeInfo() {
|
|
let lnBalance = nodeInfo.channelsBalanceMsat
|
|
let onchainBalance = nodeInfo.onchainBalanceMsat
|
|
}
|
|
// ANCHOR_END: fetch-balance
|
|
}
|