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 Foundation23/// The prepared transaction that can be sent or simulate in SolanaBlockchainClient4public struct PreparedVersionedTransaction: Equatable {5 public var transaction: VersionedTransaction6 public var expectedFee: FeeAmount78 public init(transaction: VersionedTransaction, expectedFee: FeeAmount) {9 self.transaction = transaction10 self.expectedFee = expectedFee11 }12}13