diff --git a/Encrypted Ink.xcodeproj/project.pbxproj b/Encrypted Ink.xcodeproj/project.pbxproj index fece62ea..364ae8db 100644 --- a/Encrypted Ink.xcodeproj/project.pbxproj +++ b/Encrypted Ink.xcodeproj/project.pbxproj @@ -26,6 +26,7 @@ 2C1995442674C4BA00A8E370 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2C1995432674C4BA00A8E370 /* Assets.xcassets */; }; 2C1995472674C4BA00A8E370 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 2C1995452674C4BA00A8E370 /* Main.storyboard */; }; 2C1995562674D0F300A8E370 /* Ethereum.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C1995552674D0F300A8E370 /* Ethereum.swift */; }; + 2C528A16267FA8EB00CA3ADD /* Defaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C528A15267FA8EB00CA3ADD /* Defaults.swift */; }; 2C6706A5267A6BFE006AAEF2 /* Bundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C6706A4267A6BFE006AAEF2 /* Bundle.swift */; }; 2C797E7E267BB88800F2CE2D /* WelcomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C797E7D267BB88800F2CE2D /* WelcomeViewController.swift */; }; 2C8A09B52675101300993638 /* AccountsService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C8A09B42675101300993638 /* AccountsService.swift */; }; @@ -69,6 +70,7 @@ 2C1995482674C4BA00A8E370 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 2C1995492674C4BA00A8E370 /* Encrypted_Ink.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Encrypted_Ink.entitlements; sourceTree = ""; }; 2C1995552674D0F300A8E370 /* Ethereum.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Ethereum.swift; sourceTree = ""; }; + 2C528A15267FA8EB00CA3ADD /* Defaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Defaults.swift; sourceTree = ""; }; 2C6706A4267A6BFE006AAEF2 /* Bundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Bundle.swift; sourceTree = ""; }; 2C797E7D267BB88800F2CE2D /* WelcomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WelcomeViewController.swift; sourceTree = ""; }; 2C8A09B42675101300993638 /* AccountsService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountsService.swift; sourceTree = ""; }; @@ -160,6 +162,7 @@ 2C19953F2674C4B900A8E370 /* AppDelegate.swift */, 2C8A09C5267513FC00993638 /* Agent.swift */, 2C8A09D626751A0C00993638 /* WalletConnect.swift */, + 2C528A15267FA8EB00CA3ADD /* Defaults.swift */, 2C8A09D32675184700993638 /* Window.swift */, 2C6706A7267A6C04006AAEF2 /* Extensions */, 2C8A09C92675142700993638 /* Screens */, @@ -389,6 +392,7 @@ 2CDAB3722675B3F0009F8B97 /* PasswordViewController.swift in Sources */, 2C1995402674C4B900A8E370 /* AppDelegate.swift in Sources */, 0DB729142674E2DB0011F7A1 /* EIP712Parameter.swift in Sources */, + 2C528A16267FA8EB00CA3ADD /* Defaults.swift in Sources */, 2CE3D015267F73E80032A62E /* Account.swift in Sources */, 2CE3D012267F73C00032A62E /* Transaction.swift in Sources */, 0DB7291B2674E2DB0011F7A1 /* EIP712Hash.swift in Sources */, diff --git a/Encrypted Ink/Defaults.swift b/Encrypted Ink/Defaults.swift new file mode 100644 index 00000000..625e5611 --- /dev/null +++ b/Encrypted Ink/Defaults.swift @@ -0,0 +1,9 @@ +// Copyright © 2021 Encrypted Ink. All rights reserved. + +import Foundation + +struct Defaults { + + private static let userDefaults = UserDefaults.standard + +}