d72323b1c6
Big-picture changes since 01be8e7:
New routes — /trump /btc /kol /trades /analytics /archive plus four
SEO landing pages (/methodology /glossary /case-studies /contact),
all served under /[locale]. Each has dedicated metadata + JSON-LD.
KOL page (new) — DigestWidget + OnchainWidget + TalkVsTradesWidget,
filter by handle/ticker, click-through to per-post detail with the
original AI-extracted ticker/conviction/quote.
BTC page (new) — tabbed: macro-bottom (AHR999 + 200WMA + Pi Cycle)
and funding-rate reversal, with live sparkline + threshold bands.
Telegram card on Settings — wallet-link code generation, status,
disconnect. Preferences moved into the bot itself (/trump /btc etc.)
so the card stays minimal.
SignalMonitor (new) — ETH/LINK Bollinger breakout monitor in its own
component, shares the singleton WsProvider so no second WS opens.
WS singleton refactor (lib/wsContext) — shared WsProvider + useWsSubscribe
hook. Cleanup now actively closes the socket on unmount; previously the
local `ws` couldn't be reached from cleanup and leaked one connection
per StrictMode remount.
OpenPositions polling no longer pops MetaMask in the background —
splits into load('first') for user-initiated and load('poll') that
uses getCachedViewEnvelope without signing.
i18n shelved — proxy.ts (Next 16 middleware rename) wires next-intl
but only Navbar + layout footer have translations. Rest of UI used
isZh ternary scattered across 28 files. All `const isZh = locale === 'zh'`
flipped to `const isZh = false` so every site renders English; Chinese
branches kept as dead code so revival is one regex away.
LanguageSwitch hidden but file kept. zh-CN hreflang removed from
metadata + sitemap to avoid duplicate-content penalties.
Wallet error handling — lib/walletError.ts: isUserRejection walks EIP-1193
code 4001 + .cause chain; previous string-match for "reject"/"denied"
broke for users running MetaMask in non-English UIs. 12 call sites
migrated across 5 components.
PWA icons — app/icon.tsx + app/apple-icon.tsx render the brand "α" via
Next's ImageResponse so no static PNG asset is required. manifest.ts
references /icon and /apple-icon dynamic routes.
OG image + sitemap + robots — dynamic 1200×630 OG card; robots blocks
both /en/settings and /zh/settings; sitemap only emits /en routes;
JSON-LD covers SoftwareApplication + Organization + 10-Q FAQPage.
Landing page polish — Launch Dashboard button stripped of magnetic
hover + shimmer + lift + glow expansion (multiple users found it busy);
hero scramble alphabet swapped to alphanumeric (was block characters);
"15 KOL feeds" copy updated to 19 in 5 places.
PostCards source icons — new entries for btc_bottom_reversal,
funding_reversal, kol_divergence so they no longer fall through to
the generic "first letter" fallback.
Archive page filter — excludes funding_reversal + kol_divergence
(previously only excluded truth + btc_bottom_reversal so new live
signals leaked into the legacy archive).
Cache + skeleton loading — lib/cache.ts SWR module with per-key TTL,
applied across the major pages so navigation feels instant.
SignConfirmSheet — 4 hardcoded Chinese strings translated to English
(English users were seeing zh-only "需要钱包签名" etc).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
281 lines
10 KiB
TypeScript
281 lines
10 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useState } from 'react'
|
|
import { useAccount, useConnect, useSignMessage } from 'wagmi'
|
|
import type { BotPerformance } from '@/types'
|
|
import { useDashboardStore } from '@/store/dashboard'
|
|
import { getUserPublic, setHlApiKey, subscribe } from '@/lib/api'
|
|
import { signRequest } from '@/lib/signedRequest'
|
|
import { isUserRejection, walletErrorLabel } from '@/lib/walletError'
|
|
|
|
// Action names must match backend/app/api/{user,subscribe}.py
|
|
const ACTION_SET_API_KEY = 'set_hl_api_key'
|
|
const ACTION_SUBSCRIBE = 'subscribe'
|
|
|
|
interface Props {
|
|
performance?: BotPerformance | null
|
|
}
|
|
|
|
type SaveState = 'idle' | 'signing' | 'saving' | 'success' | 'error'
|
|
|
|
function fmtHold(s: number) {
|
|
if (s < 60) return s + 's'
|
|
const m = Math.floor(s / 60)
|
|
if (m < 60) return m + 'm'
|
|
return Math.floor(m / 60) + 'h ' + (m % 60) + 'm'
|
|
}
|
|
|
|
export default function BotPanel({ performance }: Props) {
|
|
const { isSubscribed, hlApiKeySet, hlApiKeyMasked, botReadiness, setBotReadiness, setHlApiKeySet, setSubscribed } = useDashboardStore()
|
|
const { address, isConnected } = useAccount()
|
|
const { connect, connectors } = useConnect()
|
|
const { signMessageAsync } = useSignMessage()
|
|
|
|
const [mounted, setMounted] = useState(false)
|
|
const [apiKey, setApiKey] = useState('')
|
|
const [saveState, setSaveState] = useState<SaveState>('idle')
|
|
const [errorMsg, setErrorMsg] = useState('')
|
|
const [subState, setSubState] = useState<'idle' | 'signing' | 'saving' | 'error'>('idle')
|
|
const [subError, setSubError] = useState('')
|
|
|
|
useEffect(() => { setMounted(true) }, [])
|
|
|
|
useEffect(() => {
|
|
if (!isConnected || !address) {
|
|
setSubscribed(false)
|
|
setHlApiKeySet(false)
|
|
setBotReadiness('unknown')
|
|
return
|
|
}
|
|
setSubscribed(false)
|
|
setHlApiKeySet(false)
|
|
setBotReadiness('unknown')
|
|
getUserPublic(address.toLowerCase())
|
|
.then((user) => {
|
|
setSubscribed(user.active)
|
|
setHlApiKeySet(user.hl_api_key_set)
|
|
setBotReadiness(user.hl_api_key_set ? 'saved' : 'unknown')
|
|
})
|
|
.catch(() => {})
|
|
}, [address, isConnected, setHlApiKeySet, setSubscribed, setBotReadiness])
|
|
|
|
async function refreshUserState(wallet: string) {
|
|
const pub = await getUserPublic(wallet.toLowerCase())
|
|
setSubscribed(pub.active)
|
|
setHlApiKeySet(pub.hl_api_key_set)
|
|
setBotReadiness(pub.hl_api_key_set ? 'saved' : 'unknown')
|
|
return pub
|
|
}
|
|
|
|
async function handleSubscribe() {
|
|
if (!address) return
|
|
setSubError('')
|
|
try {
|
|
setSubState('signing')
|
|
const env = await signRequest({
|
|
action: ACTION_SUBSCRIBE,
|
|
wallet: address,
|
|
body: null,
|
|
signMessageAsync,
|
|
})
|
|
setSubState('saving')
|
|
await subscribe(env)
|
|
await refreshUserState(address)
|
|
setSubState('idle')
|
|
} catch (err: unknown) {
|
|
setSubError(walletErrorLabel(err, 'Signature cancelled', 120))
|
|
setSubState('error')
|
|
}
|
|
}
|
|
|
|
async function handleSaveKey() {
|
|
if (!address || !apiKey.trim()) return
|
|
if (!apiKey.trim().startsWith('0x') || apiKey.trim().length !== 66) {
|
|
setErrorMsg('Key must start with 0x and be 66 characters')
|
|
setSaveState('error')
|
|
return
|
|
}
|
|
setErrorMsg('')
|
|
try {
|
|
setSaveState('signing')
|
|
const trimmed = apiKey.trim()
|
|
const env = await signRequest({
|
|
action: ACTION_SET_API_KEY,
|
|
wallet: address,
|
|
body: { api_key: trimmed },
|
|
signMessageAsync,
|
|
})
|
|
setSaveState('saving')
|
|
const res = await setHlApiKey(env, trimmed)
|
|
const pub = await refreshUserState(address)
|
|
setHlApiKeySet(pub.hl_api_key_set, res.masked_key)
|
|
setApiKey('')
|
|
setSaveState('success')
|
|
} catch (err: unknown) {
|
|
if (isUserRejection(err)) {
|
|
setErrorMsg('Signature cancelled')
|
|
} else {
|
|
setErrorMsg(walletErrorLabel(err, 'Signature cancelled', 120))
|
|
}
|
|
setSaveState('error')
|
|
}
|
|
}
|
|
|
|
const saveLabel =
|
|
saveState === 'signing' ? 'Waiting for signature…'
|
|
: saveState === 'saving' ? 'Saving…'
|
|
: saveState === 'success' ? '✓ Saved'
|
|
: 'Save key'
|
|
|
|
function handleConnectWallet() {
|
|
const connector = connectors[0]
|
|
if (connector) connect({ connector })
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{/* Bot status card — dark design */}
|
|
<div className="bot-status">
|
|
<div className="bot-head">
|
|
<h3>
|
|
<span style={{ width: 8, height: 8, borderRadius: 999, background: botReadiness === 'ready' ? 'var(--amber)' : hlApiKeySet ? 'var(--up)' : isSubscribed ? 'var(--up)' : 'oklch(70% 0.01 85)', display: 'inline-block' }} />
|
|
Auto-trader
|
|
</h3>
|
|
<span style={{ fontSize: 11, opacity: 0.7, textTransform: 'uppercase', letterSpacing: '0.08em' }}>30 days</span>
|
|
</div>
|
|
|
|
<div className="bot-stats">
|
|
<div className="bot-stat">
|
|
<div className="k">Net P&L</div>
|
|
<div className="v amber">
|
|
{performance ? (performance.net_pnl_usd >= 0 ? '+$' : '-$') + Math.abs(performance.net_pnl_usd).toLocaleString('en-US', { maximumFractionDigits: 0 }) : '—'}
|
|
</div>
|
|
</div>
|
|
<div className="bot-stat">
|
|
<div className="k">Win rate</div>
|
|
<div className="v up">
|
|
{performance ? (performance.win_rate * 100).toFixed(1) + '%' : '—'}
|
|
</div>
|
|
</div>
|
|
<div className="bot-stat">
|
|
<div className="k">Trades</div>
|
|
<div className="v">{performance?.total_trades ?? '—'}</div>
|
|
</div>
|
|
<div className="bot-stat">
|
|
<div className="k">Avg hold</div>
|
|
<div className="v">{performance ? fmtHold(performance.avg_hold_seconds) : '—'}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bot-cta">
|
|
{(!mounted || !isConnected) && (
|
|
<button className="btn amber" style={{ width: '100%' }}
|
|
onClick={handleConnectWallet}>
|
|
Connect wallet
|
|
</button>
|
|
)}
|
|
{mounted && isConnected && !isSubscribed && (
|
|
<div style={{ width: '100%' }}>
|
|
<button
|
|
className="btn amber"
|
|
style={{ width: '100%' }}
|
|
onClick={handleSubscribe}
|
|
disabled={subState === 'signing' || subState === 'saving'}
|
|
>
|
|
{subState === 'signing' ? 'Waiting for signature…' : subState === 'saving' ? 'Activating…' : 'Start trading'}
|
|
</button>
|
|
{subState === 'error' && subError && (
|
|
<p style={{ fontSize: 11, color: 'var(--down)', marginTop: 6, textAlign: 'center' }}>{subError}</p>
|
|
)}
|
|
</div>
|
|
)}
|
|
{mounted && isConnected && isSubscribed && !hlApiKeySet && (
|
|
<div style={{ width: '100%', textAlign: 'center', fontSize: 12, color: 'oklch(75% 0.01 85)', padding: '6px 0' }}>
|
|
↓ Paste your Hyperliquid API key below to finish setup
|
|
</div>
|
|
)}
|
|
{mounted && isConnected && isSubscribed && hlApiKeySet && (
|
|
<div style={{ width: '100%', textAlign: 'center', fontSize: 12, color: 'var(--amber)', padding: '6px 0', fontWeight: 500 }}>
|
|
✓ Setup saved · verification still depends on backend
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* HL API Key card — only when subscribed */}
|
|
{mounted && isConnected && isSubscribed && (
|
|
<div className="card" style={{ padding: 20 }}>
|
|
<div className="section-title">
|
|
<h2 style={{ fontSize: 14 }}>Hyperliquid API key</h2>
|
|
{hlApiKeySet && <span style={{ fontSize: 11, color: 'var(--up)', fontWeight: 500 }}>✓ Connected</span>}
|
|
</div>
|
|
|
|
{hlApiKeySet && !apiKey && (
|
|
<div className="row between" style={{ padding: '10px 12px', background: 'var(--bg-sunk)', borderRadius: 'var(--r-sm)', border: '1px solid var(--line)', marginBottom: 12 }}>
|
|
<span style={{ fontSize: 12, color: 'var(--up)', fontFamily: 'var(--mono)' }}>
|
|
{hlApiKeyMasked ?? '···'}
|
|
</span>
|
|
<button
|
|
style={{ fontSize: 11, color: 'var(--ink-3)' }}
|
|
onClick={() => { setSaveState('idle'); setApiKey(' ') }}
|
|
>
|
|
Update
|
|
</button>
|
|
</div>
|
|
)}
|
|
|
|
{(!hlApiKeySet || apiKey) && (
|
|
<>
|
|
<div className="field" style={{ marginBottom: 12 }}>
|
|
<label>API wallet private key</label>
|
|
<input
|
|
value={apiKey.trim() === '' && hlApiKeySet ? '' : apiKey}
|
|
onChange={(e) => {
|
|
setApiKey(e.target.value)
|
|
if (saveState === 'error' || saveState === 'success') setSaveState('idle')
|
|
}}
|
|
placeholder="0x…"
|
|
/>
|
|
<div className="hint">
|
|
From{' '}
|
|
<a href="https://app.hyperliquid.xyz/API" target="_blank" rel="noopener noreferrer" style={{ color: 'var(--amber-ink)' }}>
|
|
app.hyperliquid.xyz/API
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
{saveState === 'error' && errorMsg && (
|
|
<p style={{ fontSize: 11, color: 'var(--down)', marginBottom: 8 }}>{errorMsg}</p>
|
|
)}
|
|
|
|
<button
|
|
className={`btn ${saveState === 'success' ? 'ghost' : 'amber'}`}
|
|
style={{ width: '100%' }}
|
|
onClick={handleSaveKey}
|
|
disabled={saveState === 'signing' || saveState === 'saving' || !apiKey.trim()}
|
|
>
|
|
{saveLabel}
|
|
</button>
|
|
</>
|
|
)}
|
|
|
|
{!hlApiKeySet && (
|
|
<details style={{ marginTop: 12 }}>
|
|
<summary style={{ fontSize: 11, color: 'var(--ink-3)', cursor: 'pointer' }}>
|
|
How to get your API key
|
|
</summary>
|
|
<ol style={{ marginTop: 8, fontSize: 11, color: 'var(--ink-3)', paddingLeft: 16, lineHeight: 1.7 }}>
|
|
<li>Deposit USDC at app.hyperliquid.xyz</li>
|
|
<li>Go to app.hyperliquid.xyz/API</li>
|
|
<li>Click <strong>Generate API Wallet</strong></li>
|
|
<li>Sign with MetaMask (no gas)</li>
|
|
<li>Copy the private key → paste above</li>
|
|
</ol>
|
|
</details>
|
|
)}
|
|
</div>
|
|
)}
|
|
</>
|
|
)
|
|
}
|