Skip to content

Commit

Permalink
Project ID changed
Browse files Browse the repository at this point in the history
  • Loading branch information
flypaper0 committed Sep 27, 2022
1 parent ba90193 commit cc13267
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Example/DApp/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
private let authCoordinator = AuthCoordinator()

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
Relay.configure(projectId: "3ca2919724fbfa5456a25194e369a8b4", socketFactory: SocketFactory())
Relay.configure(projectId: "e42c15f0391c158e0e84e61cbf317b7f", socketFactory: SocketFactory())

setupWindow(scene: scene)
}
Expand Down
2 changes: 1 addition & 1 deletion Example/ExampleApp/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {
url: "example.wallet",
icons: ["https://avatars.githubusercontent.com/u/37784886"])

Relay.configure(projectId: "3ca2919724fbfa5456a25194e369a8b4", socketFactory: SocketFactory())
Relay.configure(projectId: "e42c15f0391c158e0e84e61cbf317b7f", socketFactory: SocketFactory())
Sign.configure(metadata: metadata)
#if DEBUG
if CommandLine.arguments.contains("-cleanInstall") {
Expand Down
2 changes: 1 addition & 1 deletion Example/IntegrationTests/Auth/AuthTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ final class AuthTests: XCTestCase {

func makeClient(prefix: String, account: Account? = nil) -> AuthClient {
let logger = ConsoleLogger(suffix: prefix, loggingLevel: .debug)
let projectId = "3ca2919724fbfa5456a25194e369a8b4"
let projectId = "e42c15f0391c158e0e84e61cbf317b7f"
let keychain = KeychainStorageMock()
let relayClient = RelayClient(relayHost: URLConfig.relayHost, projectId: projectId, keychainStorage: keychain, socketFactory: SocketFactory(), logger: logger)

Expand Down
2 changes: 1 addition & 1 deletion Example/IntegrationTests/Chat/ChatTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ final class ChatTests: XCTestCase {

func makeClient(prefix: String) -> ChatClient {
let logger = ConsoleLogger(suffix: prefix, loggingLevel: .debug)
let projectId = "3ca2919724fbfa5456a25194e369a8b4"
let projectId = "e42c15f0391c158e0e84e61cbf317b7f"
let keychain = KeychainStorageMock()
let relayClient = RelayClient(relayHost: URLConfig.relayHost, projectId: projectId, keychainStorage: keychain, socketFactory: SocketFactory(), logger: logger)
return ChatClientFactory.create(registry: registry, relayClient: relayClient, kms: KeyManagementService(keychain: keychain), logger: logger, keyValueStorage: RuntimeKeyValueStorage())
Expand Down
2 changes: 1 addition & 1 deletion Example/IntegrationTests/Pairing/PairingTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ final class PairingTests: XCTestCase {
func makeClients(prefix: String) -> (PairingClient, PushClient) {
let keychain = KeychainStorageMock()
let logger = ConsoleLogger(suffix: prefix, loggingLevel: .debug)
let projectId = "3ca2919724fbfa5456a25194e369a8b4"
let projectId = "e42c15f0391c158e0e84e61cbf317b7f"
let relayClient = RelayClient(relayHost: URLConfig.relayHost, projectId: projectId, keychainStorage: keychain, socketFactory: SocketFactory(), logger: logger)

let pairingClient = PairingClientFactory.create(logger: logger, keyValueStorage: RuntimeKeyValueStorage(), keychainStorage: keychain, relayClient: relayClient)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ final class RelayClientEndToEndTests: XCTestCase {

let defaultTimeout: TimeInterval = 10

let projectId = "3ca2919724fbfa5456a25194e369a8b4"
let projectId = "e42c15f0391c158e0e84e61cbf317b7f"
private var publishers = Set<AnyCancellable>()

func makeRelayClient() -> RelayClient {
Expand Down
2 changes: 1 addition & 1 deletion Example/IntegrationTests/Sign/SignClientTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ final class SignClientTests: XCTestCase {

static private func makeClientDelegate(
name: String,
projectId: String = "3ca2919724fbfa5456a25194e369a8b4"
projectId: String = "e42c15f0391c158e0e84e61cbf317b7f"
) -> ClientDelegate {
let logger = ConsoleLogger(suffix: name, loggingLevel: .debug)
let keychain = KeychainStorageMock()
Expand Down

0 comments on commit cc13267

Please sign in to comment.