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%
291 B · 12 lines swift
Raw Blame History
1import Foundation23public struct SwapResponse {4    public let transactionId: String5    public let newWalletPubkey: String?67    public init(transactionId: String, newWalletPubkey: String?) {8        self.transactionId = transactionId9        self.newWalletPubkey = newWalletPubkey10    }11}12