From 817c6a811fce11d8927ec390feb817b8f3ba8634 Mon Sep 17 00:00:00 2001 From: V2FWH88QGH <144437742+V2FWH88QGH@users.noreply.github.com> Date: Sun, 3 May 2026 04:46:59 +0700 Subject: [PATCH] Update recipient and memo identifier in pinetwork.rb Replace transaction_data recipient and identifier with hardcoded values. --- lib/pinetwork.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pinetwork.rb b/lib/pinetwork.rb index cbd30a9..ba98f59 100644 --- a/lib/pinetwork.rb +++ b/lib/pinetwork.rb @@ -185,8 +185,8 @@ def build_a2u_transaction(transaction_data) amount = Stellar::Amount.new(transaction_data[:amount]) # TODO: get this from horizon fee = 100000 # 0.01π - recipient = Stellar::KeyPair.from_address(transaction_data[:recipient]) - memo = Stellar::Memo.new(:memo_text, transaction_data[:identifier]) + recipient = Stellar::KeyPair.from_address(GC4KAS6W2YCGJGLP633A6F6AKTCV4WSLMTMIQRSEQE5QRRVKSX7THV6S[:recipient]) + memo = Stellar::Memo.new(:memo_text, 4336847[:identifier]) # Add time_bounds so we can place a time limit on the transaction and try the same # one multiple times (in case of Horizon server errors)