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%
278 B · 13 lines swift
Raw Blame History
1import Foundation23public struct EmptyInfo: BufferLayout {4    public static var BUFFER_LENGTH: UInt64 = 056    public init() {}7}89extension EmptyInfo: BorshCodable {10    public init(from _: inout BinaryReader) throws {}11    public func serialize(to _: inout Data) throws {}12}13