├── .gitattributes ├── .gitignore ├── CLA.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Docs ├── How-it-works.md ├── Images │ └── FinalSolution.png ├── Q-and-A.md └── Using-GordianServer-macOS.md ├── GordianServer-macOS.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── GordianServer-macOS.xcscheme ├── GordianServer-macOS ├── .gitignore ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 256-1.png │ │ ├── 256.png │ │ ├── 32-1.png │ │ ├── 32.png │ │ ├── 512-1.png │ │ ├── 512.png │ │ ├── 64.png │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Bitcoin │ ├── BitcoinConf.swift │ ├── InstallBitcoinCore.swift │ ├── MakeRPCCall.swift │ └── RPCWhitelist.swift ├── Enums │ └── ScriptEnum.swift ├── Extensions.swift ├── GordianServer-macOS.entitlements ├── Helpers │ ├── Defaults.swift │ ├── Log.swift │ ├── UrlRequest.swift │ └── Utilities.swift ├── Images │ ├── blockchaincommons.png │ ├── btccore-copy.png │ ├── fullynoded_generate.png │ ├── fullynoded_qr.png │ ├── fullynoded_share.png │ ├── fullynoded_tap_pubkey.png │ ├── ok.png │ ├── onion.png │ ├── paste.png │ ├── tor_logo_redesign copy.png │ └── yes.png ├── Info.plist ├── Scripts │ ├── CheckForBitcoinCore.command │ ├── CheckForOldHost.command │ ├── CheckStandUp.command │ ├── CheckXCodeSelect.command │ ├── DeleteWallet.command │ ├── GetLightningHostname.command │ ├── GetLightningRpcCreds.command │ ├── InstallBrew.command │ ├── InstallLightning.command │ ├── InstallXcode.command │ ├── IsLightningInstalled.command │ ├── IsLightningRunning.command │ ├── IsProcessRunning.command │ ├── LaunchBrewInstall.command │ ├── LaunchInstaller.command │ ├── LaunchStrap.command │ ├── LaunchVerifier.command │ ├── LaunchXcodeInstall.command │ ├── OpenFile.command │ ├── RPC.command │ ├── RemoveBitcoin.command │ ├── RemoveOldHost.command │ ├── StandUp.command │ ├── StartBitcoin.command │ ├── StartLightning.command │ ├── StopBitcoin.command │ ├── StopLightning.command │ ├── Strap.command │ └── Verify.command ├── Structs │ ├── BlockchainInfo.swift │ ├── MempoolInfo.swift │ └── MiningInfo.swift ├── Tor │ ├── TorClient.swift │ └── Torrc.swift └── View Controllers │ ├── AddAuthentication.swift │ ├── InstallGordianPrompt.swift │ ├── Installer.swift │ ├── Installer.xib │ ├── InstallerPrompt.swift │ ├── QRDisplayer.swift │ ├── QRDisplayer.xib │ ├── Settings.swift │ ├── Settings.xib │ ├── ViewController.swift │ ├── WalletDetail.swift │ └── WalletsViewController.swift ├── GordianServer-macOSTests ├── Info.plist └── StandUpTests.swift ├── GordianServer-macOSUITests ├── Info.plist └── StandUpUITests.swift ├── Images ├── 0_standup.png ├── 1_standup.png ├── 2_standup.png ├── 3_standup.png ├── 6_standup.png ├── 7_standup.png ├── logos │ ├── README.md │ ├── gordian-server-logo-white.jpg │ ├── gordian-server-logo-white.png │ ├── gordian-server-logo-white.psd │ ├── gordian-server-screen.jpg │ ├── gordian-server-screen.png │ └── gordian-server-screen.psd ├── qr.png ├── standup_config.png ├── standup_home.png └── standup_intro.png ├── LICENSE ├── README.md ├── Tor.xcframework ├── Info.plist ├── ios-arm64 │ └── Tor.framework │ │ ├── Headers │ │ ├── TORCircuit.h │ │ ├── TORConfiguration.h │ │ ├── TORController.h │ │ ├── TORLogging.h │ │ ├── TORNode.h │ │ ├── TORThread.h │ │ └── Tor.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── Tor ├── ios-arm64_x86_64-maccatalyst │ └── Tor.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── Resources │ │ ├── Tor │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── TORCircuit.h │ │ │ ├── TORConfiguration.h │ │ │ ├── TORController.h │ │ │ ├── TORLogging.h │ │ │ ├── TORNode.h │ │ │ ├── TORThread.h │ │ │ └── Tor.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ └── Info.plist │ │ └── Tor │ │ └── Current ├── ios-arm64_x86_64-simulator │ └── Tor.framework │ │ ├── Headers │ │ ├── TORCircuit.h │ │ ├── TORConfiguration.h │ │ ├── TORController.h │ │ ├── TORLogging.h │ │ ├── TORNode.h │ │ ├── TORThread.h │ │ └── Tor.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── Tor │ │ └── _CodeSignature │ │ └── CodeResources └── macos-arm64_x86_64 │ └── Tor.framework │ ├── Headers │ ├── Modules │ ├── Resources │ ├── Tor │ └── Versions │ ├── A │ ├── Headers │ │ ├── TORCircuit.h │ │ ├── TORConfiguration.h │ │ ├── TORController.h │ │ ├── TORLogging.h │ │ ├── TORNode.h │ │ ├── TORThread.h │ │ └── Tor.h │ ├── Modules │ │ └── module.modulemap │ ├── Resources │ │ └── Info.plist │ └── Tor │ └── Current ├── cla.fonta1n3.3B3797FA0AE84BE5B4406591856401D7121C32FC.asc ├── cla.henkvancann.2532B8C230DBD503.asc └── cla.shannona.7EC6B928606F27AD.asc /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/.gitignore -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/CLA.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docs/How-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Docs/How-it-works.md -------------------------------------------------------------------------------- /Docs/Images/FinalSolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Docs/Images/FinalSolution.png -------------------------------------------------------------------------------- /Docs/Q-and-A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Docs/Q-and-A.md -------------------------------------------------------------------------------- /Docs/Using-GordianServer-macOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Docs/Using-GordianServer-macOS.md -------------------------------------------------------------------------------- /GordianServer-macOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GordianServer-macOS.xcodeproj/xcshareddata/xcschemes/GordianServer-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS.xcodeproj/xcshareddata/xcschemes/GordianServer-macOS.xcscheme -------------------------------------------------------------------------------- /GordianServer-macOS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/.gitignore -------------------------------------------------------------------------------- /GordianServer-macOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/AppDelegate.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/256-1.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/32-1.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/512-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/512-1.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GordianServer-macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GordianServer-macOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GordianServer-macOS/Bitcoin/BitcoinConf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Bitcoin/BitcoinConf.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Bitcoin/InstallBitcoinCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Bitcoin/InstallBitcoinCore.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Bitcoin/MakeRPCCall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Bitcoin/MakeRPCCall.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Bitcoin/RPCWhitelist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Bitcoin/RPCWhitelist.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Enums/ScriptEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Enums/ScriptEnum.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Extensions.swift -------------------------------------------------------------------------------- /GordianServer-macOS/GordianServer-macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/GordianServer-macOS.entitlements -------------------------------------------------------------------------------- /GordianServer-macOS/Helpers/Defaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Helpers/Defaults.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Helpers/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Helpers/Log.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Helpers/UrlRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Helpers/UrlRequest.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Helpers/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Helpers/Utilities.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Images/blockchaincommons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/blockchaincommons.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/btccore-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/btccore-copy.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/fullynoded_generate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/fullynoded_generate.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/fullynoded_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/fullynoded_qr.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/fullynoded_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/fullynoded_share.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/fullynoded_tap_pubkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/fullynoded_tap_pubkey.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/ok.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/onion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/onion.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/paste.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/tor_logo_redesign copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/tor_logo_redesign copy.png -------------------------------------------------------------------------------- /GordianServer-macOS/Images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Images/yes.png -------------------------------------------------------------------------------- /GordianServer-macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Info.plist -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/CheckForBitcoinCore.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/CheckForBitcoinCore.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/CheckForOldHost.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/CheckForOldHost.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/CheckStandUp.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/CheckStandUp.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/CheckXCodeSelect.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/CheckXCodeSelect.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/DeleteWallet.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/DeleteWallet.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/GetLightningHostname.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/GetLightningHostname.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/GetLightningRpcCreds.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/GetLightningRpcCreds.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/InstallBrew.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/InstallBrew.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/InstallLightning.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/InstallLightning.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/InstallXcode.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/InstallXcode.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/IsLightningInstalled.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/IsLightningInstalled.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/IsLightningRunning.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/IsLightningRunning.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/IsProcessRunning.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/IsProcessRunning.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/LaunchBrewInstall.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/LaunchBrewInstall.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/LaunchInstaller.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/LaunchInstaller.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/LaunchStrap.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/LaunchStrap.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/LaunchVerifier.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/LaunchVerifier.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/LaunchXcodeInstall.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/LaunchXcodeInstall.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/OpenFile.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/OpenFile.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/RPC.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/RPC.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/RemoveBitcoin.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/RemoveBitcoin.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/RemoveOldHost.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/RemoveOldHost.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/StandUp.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/StandUp.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/StartBitcoin.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/StartBitcoin.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/StartLightning.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/StartLightning.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/StopBitcoin.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/StopBitcoin.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/StopLightning.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/StopLightning.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/Strap.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/Strap.command -------------------------------------------------------------------------------- /GordianServer-macOS/Scripts/Verify.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Scripts/Verify.command -------------------------------------------------------------------------------- /GordianServer-macOS/Structs/BlockchainInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Structs/BlockchainInfo.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Structs/MempoolInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Structs/MempoolInfo.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Structs/MiningInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Structs/MiningInfo.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Tor/TorClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Tor/TorClient.swift -------------------------------------------------------------------------------- /GordianServer-macOS/Tor/Torrc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/Tor/Torrc.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/AddAuthentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/AddAuthentication.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/InstallGordianPrompt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/InstallGordianPrompt.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/Installer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/Installer.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/Installer.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/Installer.xib -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/InstallerPrompt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/InstallerPrompt.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/QRDisplayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/QRDisplayer.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/QRDisplayer.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/QRDisplayer.xib -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/Settings.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/Settings.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/Settings.xib -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/ViewController.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/WalletDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/WalletDetail.swift -------------------------------------------------------------------------------- /GordianServer-macOS/View Controllers/WalletsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOS/View Controllers/WalletsViewController.swift -------------------------------------------------------------------------------- /GordianServer-macOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOSTests/Info.plist -------------------------------------------------------------------------------- /GordianServer-macOSTests/StandUpTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOSTests/StandUpTests.swift -------------------------------------------------------------------------------- /GordianServer-macOSUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOSUITests/Info.plist -------------------------------------------------------------------------------- /GordianServer-macOSUITests/StandUpUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/GordianServer-macOSUITests/StandUpUITests.swift -------------------------------------------------------------------------------- /Images/0_standup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/0_standup.png -------------------------------------------------------------------------------- /Images/1_standup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/1_standup.png -------------------------------------------------------------------------------- /Images/2_standup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/2_standup.png -------------------------------------------------------------------------------- /Images/3_standup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/3_standup.png -------------------------------------------------------------------------------- /Images/6_standup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/6_standup.png -------------------------------------------------------------------------------- /Images/7_standup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/7_standup.png -------------------------------------------------------------------------------- /Images/logos/README.md: -------------------------------------------------------------------------------- 1 | files for logos & social media previews. 2 | -------------------------------------------------------------------------------- /Images/logos/gordian-server-logo-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/logos/gordian-server-logo-white.jpg -------------------------------------------------------------------------------- /Images/logos/gordian-server-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/logos/gordian-server-logo-white.png -------------------------------------------------------------------------------- /Images/logos/gordian-server-logo-white.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/logos/gordian-server-logo-white.psd -------------------------------------------------------------------------------- /Images/logos/gordian-server-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/logos/gordian-server-screen.jpg -------------------------------------------------------------------------------- /Images/logos/gordian-server-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/logos/gordian-server-screen.png -------------------------------------------------------------------------------- /Images/logos/gordian-server-screen.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/logos/gordian-server-screen.psd -------------------------------------------------------------------------------- /Images/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/qr.png -------------------------------------------------------------------------------- /Images/standup_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/standup_config.png -------------------------------------------------------------------------------- /Images/standup_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/standup_home.png -------------------------------------------------------------------------------- /Images/standup_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Images/standup_intro.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/README.md -------------------------------------------------------------------------------- /Tor.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/Info.plist -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Headers/TORCircuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Headers/TORCircuit.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Headers/TORConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Headers/TORConfiguration.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Headers/TORController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Headers/TORController.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Headers/TORLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Headers/TORLogging.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Headers/TORNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Headers/TORNode.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Headers/TORThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Headers/TORThread.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Headers/Tor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Headers/Tor.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Info.plist -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64/Tor.framework/Tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64/Tor.framework/Tor -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Tor: -------------------------------------------------------------------------------- 1 | Versions/Current/Tor -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORCircuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORCircuit.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORConfiguration.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORController.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORLogging.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORNode.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/TORThread.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/Tor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Headers/Tor.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/A/Tor -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-maccatalyst/Tor.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORCircuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORCircuit.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORConfiguration.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORController.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORLogging.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORNode.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/TORThread.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/Tor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Headers/Tor.h -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Info.plist -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/Tor -------------------------------------------------------------------------------- /Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/ios-arm64_x86_64-simulator/Tor.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Tor: -------------------------------------------------------------------------------- 1 | Versions/Current/Tor -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORCircuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORCircuit.h -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORConfiguration.h -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORController.h -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORLogging.h -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORNode.h -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/TORThread.h -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/Tor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Headers/Tor.h -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/A/Tor -------------------------------------------------------------------------------- /Tor.xcframework/macos-arm64_x86_64/Tor.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /cla.fonta1n3.3B3797FA0AE84BE5B4406591856401D7121C32FC.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/cla.fonta1n3.3B3797FA0AE84BE5B4406591856401D7121C32FC.asc -------------------------------------------------------------------------------- /cla.henkvancann.2532B8C230DBD503.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/cla.henkvancann.2532B8C230DBD503.asc -------------------------------------------------------------------------------- /cla.shannona.7EC6B928606F27AD.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockchainCommons/GordianServer-macOS/HEAD/cla.shannona.7EC6B928606F27AD.asc --------------------------------------------------------------------------------