mirror of
https://github.com/aljazceru/breez-sdk-docs.git
synced 2025-12-17 22:04:21 +01:00
Merge branch 'main' into ok300-bump-sdk-dependency-version
# Conflicts: # snippets/dart_snippets/lib/send_spontaneous_payment.dart
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
//
|
||||
// GettingStarted.swift
|
||||
//
|
||||
//
|
||||
//
|
||||
// Created by ruben on 13/11/2023.
|
||||
//
|
||||
@@ -10,33 +10,33 @@ import BreezSDK
|
||||
// ANCHOR: init-sdk
|
||||
// SDK events listener
|
||||
class SDKListener: EventListener {
|
||||
func onEvent(e: BreezEvent) {
|
||||
print("received event ", e)
|
||||
}
|
||||
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)))
|
||||
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
|
||||
@@ -48,5 +48,3 @@ func gettingStartedNodeInfo(sdk: BlockingBreezServices) {
|
||||
}
|
||||
// ANCHOR_END: fetch-balance
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user