- Merged balance checking and transaction history into a single Transactions page. - Updated navigation links and icons for improved user experience. - Added search type selection for balance and transaction details. - Implemented URL management for sharing balance and transaction links. - Enhanced transaction search - Improved loading states and notifications for user actions.
358 lines
13 KiB
JavaScript
358 lines
13 KiB
JavaScript
function updateURLForPage(page, value) {
|
|
let params = new URLSearchParams();
|
|
if (page === "transaction") {
|
|
params.set("page", "transactions");
|
|
params.set("tx", value);
|
|
} else if (page === "balance" || page === "history") {
|
|
params.set("page", "transactions");
|
|
params.set("address", value);
|
|
}
|
|
window.history.replaceState(
|
|
{},
|
|
"",
|
|
`${location.pathname}?${params.toString()}`
|
|
);
|
|
}
|
|
|
|
function shareBalanceLink(address) {
|
|
const addr =
|
|
address || (document.getElementById("balanceAddr").value || "").trim();
|
|
if (!addr) return;
|
|
const url = new URL(window.location.href);
|
|
url.searchParams.set("page", "transactions");
|
|
url.searchParams.set("address", addr);
|
|
navigator.clipboard.writeText(url.toString()).then(() => {
|
|
if (typeof notify === "function")
|
|
notify("Shareable balance link copied", "success");
|
|
});
|
|
}
|
|
function shareTxLink(txid) {
|
|
const id = txid || (document.getElementById("txHash").value || "").trim();
|
|
if (!id) return;
|
|
const url = new URL(window.location.href);
|
|
url.searchParams.set("page", "transactions");
|
|
url.searchParams.set("tx", id);
|
|
navigator.clipboard.writeText(url.toString()).then(() => {
|
|
if (typeof notify === "function")
|
|
notify("Shareable tx link copied", "success");
|
|
});
|
|
}
|
|
async function getTransactionDetails(txHash) {
|
|
const url = "https://api.shasta.trongrid.io/wallet/gettransactionbyid";
|
|
const headers = {
|
|
Accept: "application/json",
|
|
"Content-Type": "application/json",
|
|
};
|
|
const body = JSON.stringify({
|
|
value: txHash,
|
|
visible: true,
|
|
});
|
|
|
|
const response = await fetch(url, {
|
|
method: "POST",
|
|
headers,
|
|
body,
|
|
});
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
}
|
|
|
|
const data = await response.json();
|
|
console.log("Transaction details:", data);
|
|
return data;
|
|
}
|
|
|
|
async function getTransactionInfoById(txHash) {
|
|
const url = "https://api.shasta.trongrid.io/wallet/gettransactioninfobyid";
|
|
const headers = {
|
|
Accept: "application/json",
|
|
"Content-Type": "application/json",
|
|
};
|
|
const body = JSON.stringify({
|
|
value: txHash,
|
|
});
|
|
|
|
const response = await fetch(url, {
|
|
method: "POST",
|
|
headers,
|
|
body,
|
|
});
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`Error ${response.status}: ${response.statusText}`);
|
|
}
|
|
|
|
const data = await response.json();
|
|
console.log("Transaction info:", data);
|
|
return data;
|
|
}
|
|
async function getBalanceByAddress(address) {
|
|
try {
|
|
const balance = await tronWeb.trx.getBalance(address);
|
|
return balance / 1e6;
|
|
} catch (err) {
|
|
throw new Error("Failed to fetch balance: " + err.message);
|
|
}
|
|
}
|
|
|
|
async function getBalanceByPrivKey(privKey) {
|
|
try {
|
|
let rawHexKey;
|
|
|
|
// Detect WIF (BTC/FLO style)
|
|
if (/^[5KLc9RQ][1-9A-HJ-NP-Za-km-z]{50,}$/.test(privKey)) {
|
|
const decoded = coinjs.wif2privkey(privKey);
|
|
if (!decoded || !decoded.privkey) {
|
|
throw new Error("Invalid WIF private key");
|
|
}
|
|
rawHexKey = decoded.privkey;
|
|
console.log("Detected WIF private key:", rawHexKey);
|
|
|
|
// Detect 64-char raw hex private key
|
|
} else if (/^[0-9a-fA-F]{64}$/.test(privKey)) {
|
|
rawHexKey = privKey;
|
|
} else {
|
|
throw new Error("Unsupported private key format");
|
|
}
|
|
|
|
// Derive Tron address from private key
|
|
const tronAddress = tronWeb.address.fromPrivateKey(rawHexKey);
|
|
const balance = await getBalanceByAddress(tronAddress);
|
|
|
|
return { tronAddress, balance };
|
|
} catch (err) {
|
|
throw new Error("Invalid private key: " + err.message);
|
|
}
|
|
}
|
|
|
|
async function runBalanceCheck() {
|
|
const inputVal = document.getElementById("balanceAddr").value.trim();
|
|
const output = document.getElementById("balanceOutput");
|
|
|
|
// Set loading state
|
|
if (typeof setButtonLoading === "function") {
|
|
setButtonLoading("balanceBtn", true);
|
|
}
|
|
|
|
try {
|
|
if (inputVal.startsWith("T")) {
|
|
// Direct Tron address
|
|
const tronAddress = inputVal;
|
|
const balance = await getBalanceByAddress(inputVal);
|
|
output.innerHTML = `
|
|
<div class="card balance-info">
|
|
<div class="balance-header">
|
|
<h3><i class="fas fa-wallet"></i> Account Balance</h3>
|
|
<button class="btn-icon share-btn" onclick="shareBalanceLink('${tronAddress}')" title="Copy shareable balance link">
|
|
<i class="fas fa-share-alt"></i>
|
|
</button>
|
|
</div>
|
|
<div class="balance-display">
|
|
<div class="balance-amount">
|
|
<span class="amount-number">${balance.toLocaleString()} TRX</span>
|
|
</div>
|
|
</div>
|
|
<div class="account-details">
|
|
<div class="detail-row">
|
|
<label><i class="fas fa-map-marker-alt"></i> Address</label>
|
|
<div class="value-container">
|
|
<code>${tronAddress}</code>
|
|
<button class="btn-icon" onclick="navigator.clipboard.writeText('${tronAddress}').then(()=>notify && notify('Address copied','success'))" title="Copy Address">
|
|
<i class="fas fa-copy"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
if (typeof notify === "function") notify("Balance loaded", "success");
|
|
loadHistoryFor(tronAddress);
|
|
|
|
updateURLForPage("balance", tronAddress);
|
|
} else {
|
|
// Treat as private key (WIF or HEX)
|
|
const { tronAddress, balance } = await getBalanceByPrivKey(inputVal);
|
|
output.innerHTML = `
|
|
<div class="card balance-info">
|
|
<div class="balance-header">
|
|
<h3><i class="fas fa-wallet"></i> Account Balance</h3>
|
|
<button class="btn-icon share-btn" onclick="shareBalanceLink('${tronAddress}')" title="Copy shareable balance link">
|
|
<i class="fas fa-share-alt"></i>
|
|
</button>
|
|
</div>
|
|
<div class="balance-display">
|
|
<div class="balance-amount">
|
|
<span class="amount-number">${balance.toLocaleString()} TRX</span>
|
|
</div>
|
|
</div>
|
|
<div class="account-details">
|
|
<div class="detail-row">
|
|
<label><i class="fas fa-map-marker-alt"></i> Address</label>
|
|
<div class="value-container">
|
|
<code>${tronAddress}</code>
|
|
<button class="btn-icon" onclick="navigator.clipboard.writeText('${tronAddress}').then(()=>notify && notify('Address copied','success'))" title="Copy Address">
|
|
<i class="fas fa-copy"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
if (typeof notify === "function") notify("Balance loaded", "success");
|
|
loadHistoryFor(tronAddress);
|
|
|
|
updateURLForPage("balance", tronAddress);
|
|
}
|
|
} catch (err) {
|
|
output.innerHTML = `<div class="error-state"><div class="error-icon"><i class=\"fas fa-exclamation-triangle\"></i></div><h3>Failed</h3><p>${err.message}</p></div>`;
|
|
if (typeof notify === "function") notify(err.message, "error");
|
|
} finally {
|
|
setButtonLoading("balanceBtn", false);
|
|
}
|
|
}
|
|
|
|
async function runTxSearch() {
|
|
|
|
const input = document.getElementById("txHash");
|
|
const output = document.getElementById("txOutput");
|
|
const txid = (input.value || "").trim();
|
|
if (!txid) {
|
|
alert("Please enter a transaction hash");
|
|
return;
|
|
}
|
|
|
|
// Validation for Tron transaction hash
|
|
if (!/^[a-fA-F0-9]{64}$/.test(txid)) {
|
|
if (typeof notify === "function") {
|
|
notify("Invalid transaction hash format.", "error");
|
|
} else {
|
|
alert("Invalid transaction hash format.");
|
|
}
|
|
return;
|
|
}
|
|
|
|
setButtonLoading("txSearchBtn", true);
|
|
try {
|
|
if (typeof notify === "function")
|
|
notify("Searching transaction...", "success", 1200);
|
|
|
|
const [tx, txInfo] = await Promise.all([
|
|
getTransactionDetails(txid),
|
|
getTransactionInfoById(txid),
|
|
]);
|
|
|
|
// Extract transaction details from the response
|
|
const id = tx.txID || txid;
|
|
const ret = (tx.ret && tx.ret[0] && tx.ret[0].contractRet) || "SUCCESS";
|
|
const contract =
|
|
(tx.raw_data && tx.raw_data.contract && tx.raw_data.contract[0]) || {};
|
|
const type = contract.type || "TransferContract";
|
|
const parameter = contract.parameter && contract.parameter.value;
|
|
const to = (parameter && parameter.to_address) || "-";
|
|
const owner = (parameter && parameter.owner_address) || "-";
|
|
const amount =
|
|
parameter && parameter.amount ? parameter.amount / 1000000 : "-";
|
|
const timestamp =
|
|
tx.raw_data && tx.raw_data.timestamp
|
|
? new Date(tx.raw_data.timestamp).toLocaleString()
|
|
: "-";
|
|
const fee = txInfo.fee ? txInfo.fee / 1000000 : "-";
|
|
const blockNumber = txInfo.blockNumber || "-";
|
|
|
|
output.innerHTML = `
|
|
<div class="card transaction-details">
|
|
<div class="transaction-details-header">
|
|
<h3><i class="fas fa-receipt"></i> Transaction Details</h3>
|
|
<button
|
|
onclick="shareTxLink('${id}')"
|
|
class="btn-icon share-btn"
|
|
title="Copy Shareable Link"
|
|
>
|
|
<i class="fas fa-share-alt"></i>
|
|
</button>
|
|
</div>
|
|
<div class="transaction-details-content">
|
|
<div class="tx-detail-card">
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-check-circle"></i>
|
|
Status:
|
|
</span>
|
|
<span class="tx-detail-value success">${ret}</span>
|
|
</div>
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-exchange-alt"></i>
|
|
Type:
|
|
</span>
|
|
<span class="tx-detail-value">${type}</span>
|
|
</div>
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-coins"></i>
|
|
Amount:
|
|
</span>
|
|
<span class="tx-detail-value amount">${amount} TRX</span>
|
|
</div>
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-receipt"></i>
|
|
Fee:
|
|
</span>
|
|
<span class="tx-detail-value">${fee} TRX</span>
|
|
</div>
|
|
</div>
|
|
<div class="tx-detail-card">
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-user-minus"></i>
|
|
From:
|
|
</span>
|
|
<span class="tx-detail-value">${owner}</span>
|
|
</div>
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-user-plus"></i>
|
|
To:
|
|
</span>
|
|
<span class="tx-detail-value">${to}</span>
|
|
</div>
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-hashtag"></i>
|
|
Hash:
|
|
</span>
|
|
<span class="tx-detail-value">${id}</span>
|
|
</div>
|
|
</div>
|
|
<div class="tx-detail-card">
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-layer-group"></i>
|
|
Block:
|
|
</span>
|
|
<span class="tx-detail-value">${blockNumber}</span>
|
|
</div>
|
|
<div class="tx-detail-row">
|
|
<span class="tx-detail-label">
|
|
<i class="fas fa-clock"></i>
|
|
Date:
|
|
</span>
|
|
<span class="tx-detail-value">${timestamp}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
if (typeof notify === "function") notify("Transaction found", "success");
|
|
} catch (err) {
|
|
output.innerHTML = `<div class="error-state"><div class="error-icon"><i class="fas fa-exclamation-triangle"></i></div><h3>Failed</h3><p>${err.message}</p></div>`;
|
|
if (typeof notify === "function") notify(err.message, "error");
|
|
} finally {
|
|
setButtonLoading("txSearchBtn", false);
|
|
}
|
|
updateURLForPage("transaction", txid);
|
|
}
|