mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-13 08:12:19 +03:00
Add stubs for new keys storage
This commit is contained in:
parent
b63e2cfcb9
commit
adedb53c0c
@ -51,6 +51,8 @@
|
|||||||
2CC0CDBE2692027E0072922A /* PriceService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC0CDBD2692027E0072922A /* PriceService.swift */; };
|
2CC0CDBE2692027E0072922A /* PriceService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC0CDBD2692027E0072922A /* PriceService.swift */; };
|
||||||
2CC8946F269A2E8C00879245 /* SessionStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC8946E269A2E8C00879245 /* SessionStorage.swift */; };
|
2CC8946F269A2E8C00879245 /* SessionStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC8946E269A2E8C00879245 /* SessionStorage.swift */; };
|
||||||
2CC89471269A334A00879245 /* UserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC89470269A334A00879245 /* UserDefaults.swift */; };
|
2CC89471269A334A00879245 /* UserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CC89470269A334A00879245 /* UserDefaults.swift */; };
|
||||||
|
2CD0668A26B213E500728C20 /* EIKeystore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD0668926B213E500728C20 /* EIKeystore.swift */; };
|
||||||
|
2CD0668C26B2142000728C20 /* EIWallet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD0668B26B2142000728C20 /* EIWallet.swift */; };
|
||||||
2CD0B3F526A0DAA900488D92 /* NSPasteboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD0B3F426A0DAA900488D92 /* NSPasteboard.swift */; };
|
2CD0B3F526A0DAA900488D92 /* NSPasteboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD0B3F426A0DAA900488D92 /* NSPasteboard.swift */; };
|
||||||
2CD0B3F726AC619900488D92 /* AddAccountOptionCellView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD0B3F626AC619900488D92 /* AddAccountOptionCellView.swift */; };
|
2CD0B3F726AC619900488D92 /* AddAccountOptionCellView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CD0B3F626AC619900488D92 /* AddAccountOptionCellView.swift */; };
|
||||||
2CDAB3722675B3F0009F8B97 /* PasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CDAB3712675B3F0009F8B97 /* PasswordViewController.swift */; };
|
2CDAB3722675B3F0009F8B97 /* PasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CDAB3712675B3F0009F8B97 /* PasswordViewController.swift */; };
|
||||||
@ -105,6 +107,8 @@
|
|||||||
2CC0CDBD2692027E0072922A /* PriceService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PriceService.swift; sourceTree = "<group>"; };
|
2CC0CDBD2692027E0072922A /* PriceService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PriceService.swift; sourceTree = "<group>"; };
|
||||||
2CC8946E269A2E8C00879245 /* SessionStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SessionStorage.swift; sourceTree = "<group>"; };
|
2CC8946E269A2E8C00879245 /* SessionStorage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SessionStorage.swift; sourceTree = "<group>"; };
|
||||||
2CC89470269A334A00879245 /* UserDefaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaults.swift; sourceTree = "<group>"; };
|
2CC89470269A334A00879245 /* UserDefaults.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaults.swift; sourceTree = "<group>"; };
|
||||||
|
2CD0668926B213E500728C20 /* EIKeystore.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EIKeystore.swift; sourceTree = "<group>"; };
|
||||||
|
2CD0668B26B2142000728C20 /* EIWallet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EIWallet.swift; sourceTree = "<group>"; };
|
||||||
2CD0B3F426A0DAA900488D92 /* NSPasteboard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSPasteboard.swift; sourceTree = "<group>"; };
|
2CD0B3F426A0DAA900488D92 /* NSPasteboard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSPasteboard.swift; sourceTree = "<group>"; };
|
||||||
2CD0B3F626AC619900488D92 /* AddAccountOptionCellView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddAccountOptionCellView.swift; sourceTree = "<group>"; };
|
2CD0B3F626AC619900488D92 /* AddAccountOptionCellView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddAccountOptionCellView.swift; sourceTree = "<group>"; };
|
||||||
2CDAB3712675B3F0009F8B97 /* PasswordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordViewController.swift; sourceTree = "<group>"; };
|
2CDAB3712675B3F0009F8B97 /* PasswordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordViewController.swift; sourceTree = "<group>"; };
|
||||||
@ -183,6 +187,7 @@
|
|||||||
2C528A15267FA8EB00CA3ADD /* Defaults.swift */,
|
2C528A15267FA8EB00CA3ADD /* Defaults.swift */,
|
||||||
2C8A09D32675184700993638 /* Window.swift */,
|
2C8A09D32675184700993638 /* Window.swift */,
|
||||||
2C901C492689F01700D0926A /* Strings.swift */,
|
2C901C492689F01700D0926A /* Strings.swift */,
|
||||||
|
2CD0668826B213BB00728C20 /* Keystore */,
|
||||||
2C6706A7267A6C04006AAEF2 /* Extensions */,
|
2C6706A7267A6C04006AAEF2 /* Extensions */,
|
||||||
2C8A09C92675142700993638 /* Screens */,
|
2C8A09C92675142700993638 /* Screens */,
|
||||||
2C91742B267D2A7900049075 /* Services */,
|
2C91742B267D2A7900049075 /* Services */,
|
||||||
@ -266,6 +271,15 @@
|
|||||||
path = Services;
|
path = Services;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
|
2CD0668826B213BB00728C20 /* Keystore */ = {
|
||||||
|
isa = PBXGroup;
|
||||||
|
children = (
|
||||||
|
2CD0668926B213E500728C20 /* EIKeystore.swift */,
|
||||||
|
2CD0668B26B2142000728C20 /* EIWallet.swift */,
|
||||||
|
);
|
||||||
|
path = Keystore;
|
||||||
|
sourceTree = "<group>";
|
||||||
|
};
|
||||||
8E59B61AC986C705990A0C02 /* Frameworks */ = {
|
8E59B61AC986C705990A0C02 /* Frameworks */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
@ -414,6 +428,7 @@
|
|||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
2CD0668C26B2142000728C20 /* EIWallet.swift in Sources */,
|
||||||
2C901C4A2689F01700D0926A /* Strings.swift in Sources */,
|
2C901C4A2689F01700D0926A /* Strings.swift in Sources */,
|
||||||
0DB729152674E2DB0011F7A1 /* EIP712Error.swift in Sources */,
|
0DB729152674E2DB0011F7A1 /* EIP712Error.swift in Sources */,
|
||||||
2C6706A5267A6BFE006AAEF2 /* Bundle.swift in Sources */,
|
2C6706A5267A6BFE006AAEF2 /* Bundle.swift in Sources */,
|
||||||
@ -436,6 +451,7 @@
|
|||||||
2C8A09EE2675965F00993638 /* WaitingViewController.swift in Sources */,
|
2C8A09EE2675965F00993638 /* WaitingViewController.swift in Sources */,
|
||||||
2C797E7E267BB88800F2CE2D /* WelcomeViewController.swift in Sources */,
|
2C797E7E267BB88800F2CE2D /* WelcomeViewController.swift in Sources */,
|
||||||
0DB729192674E2DB0011F7A1 /* EIP712TypedData.swift in Sources */,
|
0DB729192674E2DB0011F7A1 /* EIP712TypedData.swift in Sources */,
|
||||||
|
2CD0668A26B213E500728C20 /* EIKeystore.swift in Sources */,
|
||||||
2CD0B3F726AC619900488D92 /* AddAccountOptionCellView.swift in Sources */,
|
2CD0B3F726AC619900488D92 /* AddAccountOptionCellView.swift in Sources */,
|
||||||
2C8A09E82675960D00993638 /* ErrorViewController.swift in Sources */,
|
2C8A09E82675960D00993638 /* ErrorViewController.swift in Sources */,
|
||||||
2C1995422674C4B900A8E370 /* ImportViewController.swift in Sources */,
|
2C1995422674C4B900A8E370 /* ImportViewController.swift in Sources */,
|
||||||
|
3
Encrypted Ink/Keystore/EIKeystore.swift
Normal file
3
Encrypted Ink/Keystore/EIKeystore.swift
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
// Copyright © 2021 Encrypted Ink. All rights reserved.
|
||||||
|
|
||||||
|
import Foundation
|
3
Encrypted Ink/Keystore/EIWallet.swift
Normal file
3
Encrypted Ink/Keystore/EIWallet.swift
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
// Copyright © 2021 Encrypted Ink. All rights reserved.
|
||||||
|
|
||||||
|
import Foundation
|
Loading…
Reference in New Issue
Block a user