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 WalletCoreC2import Foundation3// SPDX-License-Identifier: Apache-2.04//5// Copyright © 2017 Trust Wallet.67import Foundation89public func CardanoMinAdaAmount(tokenBundle: Data) -> UInt64 {10 let tokenBundleData = TWDataCreateWithNSData(tokenBundle)11 defer {12 TWDataDelete(tokenBundleData)13 }14 return TWCardanoMinAdaAmount(tokenBundleData)15}16