Swift Protocol
protocol SecureWalletStorage : Sendable
func getPrivateKey(forEmail email: String) -> String?
func savePrivateKey(_ privateKey: String, forEmail email: String)
Was this page helpful?