diff --git a/src/app/profile/[address]/page.tsx b/src/app/profile/[address]/page.tsx index 2108efc5..cc09eeea 100644 --- a/src/app/profile/[address]/page.tsx +++ b/src/app/profile/[address]/page.tsx @@ -1579,7 +1579,7 @@ function HoldingRecentTrades({ address, storylineId, plotUsd }: { address: strin if (!supabase) return []; const { data } = await supabase .from("trade_history") - .select("event_type, reserve_amount, block_timestamp") + .select("event_type, reserve_amount, block_timestamp, tx_hash") .eq("user_address", address) .eq("storyline_id", storylineId) .eq("contract_address", MCV2_BOND.toLowerCase()) @@ -1599,10 +1599,26 @@ function HoldingRecentTrades({ address, storylineId, plotUsd }: { address: strin const date = new Date(t.block_timestamp).toLocaleDateString("en-US", { month: "short", day: "numeric" }); const amount = plotUsd != null ? formatUsdValue(t.reserve_amount * plotUsd) : `${formatPrice(t.reserve_amount)} ${RESERVE_LABEL}`; return ( -