From 63257d70454459fe38674210250fe545a8fb389c Mon Sep 17 00:00:00 2001 From: void-57 Date: Thu, 8 Jan 2026 17:37:56 +0530 Subject: [PATCH] fix: Update transaction input selectors to use form references --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index e2b3ec7..6f3014c 100644 --- a/index.html +++ b/index.html @@ -3056,8 +3056,8 @@ getRef("send_tx_button").textContent = `Send ${asset.toUpperCase()}`; } async function sendTx() { - const receiver = getRef("receiver_input").value.trim(); - const amount = getRef("amount_input").value.trim(); + const receiver = getRef("send_tx_form").querySelector(".receiver-address").value.trim(); + const amount = getRef("send_tx_form").querySelector(".receiver-amount").value.trim(); const asset = getRef("asset_selector").value; try {