diff --git a/Sources/WalletConnectNotify/ProtocolMethods/NotifyMessageProtocolMethod.swift b/Sources/WalletConnectNotify/ProtocolMethods/NotifyMessageProtocolMethod.swift index 86864ab71..361aec841 100644 --- a/Sources/WalletConnectNotify/ProtocolMethods/NotifyMessageProtocolMethod.swift +++ b/Sources/WalletConnectNotify/ProtocolMethods/NotifyMessageProtocolMethod.swift @@ -5,5 +5,5 @@ struct NotifyMessageProtocolMethod: ProtocolMethod { let requestConfig: RelayConfig = RelayConfig(tag: 4002, prompt: true, ttl: 2592000) - let responseConfig: RelayConfig = RelayConfig(tag: 4003, prompt: true, ttl: 2592000) + let responseConfig: RelayConfig = RelayConfig(tag: 4003, prompt: false, ttl: 2592000) } diff --git a/Sources/WalletConnectNotify/ProtocolMethods/NotifySubscribeProtocolMethod.swift b/Sources/WalletConnectNotify/ProtocolMethods/NotifySubscribeProtocolMethod.swift index b96ee4ffe..efb256dd7 100644 --- a/Sources/WalletConnectNotify/ProtocolMethods/NotifySubscribeProtocolMethod.swift +++ b/Sources/WalletConnectNotify/ProtocolMethods/NotifySubscribeProtocolMethod.swift @@ -4,7 +4,7 @@ import Foundation struct NotifySubscribeProtocolMethod: ProtocolMethod { let method: String = "wc_notifySubscribe" - let requestConfig: RelayConfig = RelayConfig(tag: 4000, prompt: true, ttl: 86400) + let requestConfig: RelayConfig = RelayConfig(tag: 4000, prompt: false, ttl: 86400) - let responseConfig: RelayConfig = RelayConfig(tag: 4001, prompt: true, ttl: 86400) + let responseConfig: RelayConfig = RelayConfig(tag: 4001, prompt: false, ttl: 86400) } diff --git a/Sources/WalletConnectNotify/ProtocolMethods/NotifyUpdateProtocolMethod.swift b/Sources/WalletConnectNotify/ProtocolMethods/NotifyUpdateProtocolMethod.swift index b95a67cc5..01ed5a6d8 100644 --- a/Sources/WalletConnectNotify/ProtocolMethods/NotifyUpdateProtocolMethod.swift +++ b/Sources/WalletConnectNotify/ProtocolMethods/NotifyUpdateProtocolMethod.swift @@ -4,8 +4,8 @@ import Foundation struct NotifyUpdateProtocolMethod: ProtocolMethod { let method: String = "wc_notifyUpdate" - let requestConfig: RelayConfig = RelayConfig(tag: 4008, prompt: true, ttl: 86400) + let requestConfig: RelayConfig = RelayConfig(tag: 4008, prompt: false, ttl: 86400) - let responseConfig: RelayConfig = RelayConfig(tag: 4009, prompt: true, ttl: 86400) + let responseConfig: RelayConfig = RelayConfig(tag: 4009, prompt: false, ttl: 86400) }