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%
1import Foundation23public struct MessageAddressTableLookup: Equatable {4 public let accountKey: PublicKey5 public let writableIndexes: [UInt8]6 public let readonlyIndexes: [UInt8]78 public init(accountKey: PublicKey, writableIndexes: [UInt8], readonlyIndexes: [UInt8]) {9 self.accountKey = accountKey10 self.writableIndexes = writableIndexes11 self.readonlyIndexes = readonlyIndexes12 }13}14