From 68669e3a5c5fc5d875cd5a14f71f49ad374f09e0 Mon Sep 17 00:00:00 2001 From: Omer Yacine Date: Sat, 14 Jun 2025 23:23:41 +0200 Subject: [PATCH] add a todo regarding session properties not existing in the spec --- relay_rpc/src/rpc/params/session_settle.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/relay_rpc/src/rpc/params/session_settle.rs b/relay_rpc/src/rpc/params/session_settle.rs index fc9014a..a4b8e78 100644 --- a/relay_rpc/src/rpc/params/session_settle.rs +++ b/relay_rpc/src/rpc/params/session_settle.rs @@ -37,6 +37,8 @@ pub struct SessionSettleRequest { /// /// Expiry should be between .now() + TTL. pub expiry: u64, + // TODO: There doesn't seem to be a sessionProperties field as per the spec: https://specs.walletconnect.com/2.0/specs/clients/sign/rpc-methods#wc_sessionsettle + // Instead, there is an optional specialNamespaces field that's missing. pub session_properties: Option, }