SPB Git

spb/os-vault Public

Self-custody, multi-chain crypto wallet for macOS. One recovery phrase, six chain families, zero API keys — nothing leaves your Mac.

Swift 96% Shell 3.4% Makefile 0.6%
420 B · 20 lines swift
Raw Blame History
1import Foundation23public typealias SocketLogsNotification = Response<SocketLogsNotificationData>45public extension SocketLogsNotification {6    var logs: [String]? {7        params?.result?.value.logs8    }910    var signature: String? {11        params?.result?.value.signature12    }13}1415public struct SocketLogsNotificationData: Decodable {16    let signature: String17    let logs: [String]18    let err: ResponseError?19}20