From a6bd1757fc36f65df7d7042e041df97ed3a123e5 Mon Sep 17 00:00:00 2001 From: Rodrigo <39995243+RodriFS@users.noreply.github.com> Date: Mon, 14 Sep 2026 16:13:51 +0200 Subject: [PATCH] feat: expose request_metadata in GetWithdrawalsRequestStatus response --- src/Proto/nodeguard.proto | 2 ++ src/Rpc/NodeGuardService.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/src/Proto/nodeguard.proto b/src/Proto/nodeguard.proto index 546853ce..b7fb3595 100644 --- a/src/Proto/nodeguard.proto +++ b/src/Proto/nodeguard.proto @@ -491,6 +491,8 @@ message WithdrawalRequest { optional string reference_id = 4; uint64 confirmations = 5; optional string tx_id = 6; + // in JSON format + optional string request_metadata = 7; } message GetWithdrawalsRequestStatusResponse { diff --git a/src/Rpc/NodeGuardService.cs b/src/Rpc/NodeGuardService.cs index a036b239..62130363 100644 --- a/src/Rpc/NodeGuardService.cs +++ b/src/Rpc/NodeGuardService.cs @@ -1301,6 +1301,7 @@ private async Task GetWithdrawalsRequestSta ReferenceId = withdrawalRequest.ReferenceId ?? "", Confirmations = confirmations, TxId = withdrawalRequest.TxId ?? "", + RequestMetadata = withdrawalRequest.RequestMetadata ?? "", }); }