Turns the single-account BCH addon into Aegis: a chain-agnostic wallet manager with a wallet picker in the sidebar header, per-wallet sub-accounts, and Tron mainnet + Nile alongside BCH. Add-on id stays "bchwallet" so vault-derive paths stay in the same namespace and the legacy BCH default wallet uses PURPOSE "bchwallet/mainnet/0" byte-identical to before — funds are untouched. - lib/chain-bch.js wraps the existing keys/tx/wallet/electrum stack with the common adapter shape and scopes each wallet's storage under wallets/<id>/… - lib/chain-tron.js: m/44'/195'/0'/0/0 → secp256k1 → keccak256 → 0x41 || h20 → base58check. Balance + history via TronGrid v1, send via createtransaction + sha256(raw_data_hex) sign + broadcasttransaction. Mainnet and Nile share the address format; different vault paths mean different keys so a mainnet wallet can never accidentally sign against Nile. - lib/base58check.js: bitcoin-alphabet base58 with sha256d checksum. k=1 derivation verified against Ethereum's canonical k=1 H160 in a scratchpad harness (correct-by-construction for Tron address). - Combined wallet-inject.js: window.bitcoincash on .x pages (unchanged gate), window.tronWeb + window.tronLink on any https page. tron_requestAccounts triggers the approval overlay; sign / sendRawTransaction / signMessageV2 route to the currently-selected Tron wallet. Emits accountsChanged / setNode messages TronLink dapps listen for; chain ids 0x2b6653dc / 0xcd8690dc match what TronLink itself uses. - New panel: chain-aware wallet picker in the header (badges 🟨 BCH, 🔴 Tron, 🔵 Nile), Add-wallet dropdown per chain, per-chain unit picker (BCH/sat, TRX/sun), per-wallet rename + remove (isLegacy default is protected). Sends show the chosen wallet in the approval overlay so the user can never mistake sub-account. - Migration on first launch: pre-multi-wallet storage (top-level receiveCursor / txCache) is rehomed under wallets/bch-default/… and the legacy account path is preserved. Not shipped: user is bundling into the next release. Live Nile broadcast + real dapp connect need a set-up vault; the code paths are unit-verified end to end but a testnet send + tronscan.io/nile connect are user-side steps.
238 lines
13 KiB
HTML
238 lines
13 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Aegis Wallet</title>
|
|
<style>
|
|
:root { color-scheme: light dark;
|
|
--bg:#0e131c; --panel:#141a24; --card:#0f1621; --line:rgba(255,255,255,.09);
|
|
--ink:#e7eaf1; --mut:#8b98a9; --dim:#5e6678; --acid:#d6ff3d; --danger:#f6768a; --ok:#5ad38a;
|
|
--bch:#0ac18e; --trx:#ff060a; --trxNile:#4d9dff; }
|
|
@media (prefers-color-scheme: light) {
|
|
:root { --bg:#f8faff; --panel:#ffffff; --card:#f1f4fa; --line:rgba(0,0,0,.10);
|
|
--ink:#1a1f2b; --mut:#5c6577; --dim:#8a93a5; }
|
|
}
|
|
* { box-sizing: border-box; }
|
|
html, body { margin: 0; height: 100%; }
|
|
body { background: var(--bg); color: var(--ink);
|
|
font: 13.5px/1.5 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
|
|
display: flex; flex-direction: column; }
|
|
header { padding: 10px 14px 10px; border-bottom: 1px solid var(--line); background: var(--panel); position: relative; }
|
|
.picker { display: flex; align-items: center; justify-content: space-between; gap: 8px; cursor: pointer; user-select: none; }
|
|
.picker .t { display: flex; align-items: center; gap: 7px; font-weight: 600; min-width: 0; }
|
|
.picker .t .badge { font-size: 15px; line-height: 1; }
|
|
.picker .t .lbl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.picker .caret { color: var(--mut); font-size: 10px; }
|
|
.picker:hover { color: var(--acid); }
|
|
.net { display: flex; align-items: center; gap: 6px; color: var(--dim); font-size: 11.5px; white-space: nowrap; }
|
|
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--dim); }
|
|
.dot.on { background: var(--ok); } .dot.busy { background: #e0b341; }
|
|
.bal { margin-top: 8px; font-variant-numeric: tabular-nums; }
|
|
.bal .big { font-size: 22px; font-weight: 650; letter-spacing: .2px; }
|
|
.bal .big small { font-size: 13px; color: var(--mut); font-weight: 500; margin-left: 4px; }
|
|
.bal .sub { color: var(--dim); font-size: 11.5px; display: flex; justify-content: space-between; gap: 8px; }
|
|
.bal .sub .netlbl { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
#drop { position: absolute; left: 10px; right: 10px; top: 100%; background: var(--panel); border: 1px solid var(--line);
|
|
border-radius: 10px; box-shadow: 0 8px 26px rgba(0,0,0,.3); z-index: 20; padding: 4px; margin-top: 4px; }
|
|
#drop[hidden] { display: none; }
|
|
#drop .row { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 7px; cursor: pointer; }
|
|
#drop .row:hover { background: rgba(255,255,255,.05); }
|
|
#drop .row .b { font-size: 15px; line-height: 1; }
|
|
#drop .row .m { flex: 1; min-width: 0; }
|
|
#drop .row .m .l { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
#drop .row .m .s { color: var(--dim); font-size: 11.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
#drop .row .v { color: var(--mut); font-size: 12px; font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
|
|
#drop .row.on { background: rgba(214,255,61,.10); }
|
|
#drop hr { border: 0; border-top: 1px solid var(--line); margin: 4px 0; }
|
|
#drop .add { padding: 7px 8px; color: var(--acid); font-weight: 600; cursor: pointer; border-radius: 7px; }
|
|
#drop .add:hover { background: rgba(214,255,61,.10); }
|
|
#drop .netgroup { display: none; padding: 4px; border-radius: 7px; margin-top: 2px; }
|
|
#drop .netgroup.on { display: block; background: rgba(255,255,255,.03); }
|
|
#drop .netchoice { padding: 6px 8px; border-radius: 6px; cursor: pointer; font-size: 12.5px; color: var(--mut); }
|
|
#drop .netchoice:hover { background: rgba(255,255,255,.05); color: var(--ink); }
|
|
nav { display: flex; border-bottom: 1px solid var(--line); background: var(--panel); }
|
|
nav button { flex: 1; padding: 9px 0 8px; border: 0; background: transparent; color: var(--mut); cursor: pointer;
|
|
font: inherit; font-size: 12.5px; border-bottom: 2px solid transparent; }
|
|
nav button.on { color: var(--acid); border-bottom-color: var(--acid); }
|
|
nav button:hover { color: var(--ink); }
|
|
main { flex: 1; overflow: auto; padding: 14px; }
|
|
section[hidden] { display: none; }
|
|
.card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 12px; }
|
|
.mono { font: 12.5px/1.45 ui-monospace, "Cascadia Code", Consolas, monospace; word-break: break-all; }
|
|
.lbl { color: var(--dim); font-size: 11.5px; margin-bottom: 4px; }
|
|
.btn { padding: 7px 12px; border-radius: 7px; border: 1px solid var(--line); background: var(--panel); color: var(--ink);
|
|
cursor: pointer; font: inherit; font-size: 12.5px; }
|
|
.btn:hover { border-color: rgba(214,255,61,.4); }
|
|
.btn.primary { background: var(--acid); color: #0b0e14; border-color: transparent; font-weight: 650; }
|
|
.btn.primary:disabled { opacity: .45; cursor: default; }
|
|
.btn.danger { color: var(--danger); }
|
|
.btn.sm { padding: 4px 9px; font-size: 12px; }
|
|
.actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
|
|
.qrwrap { display: grid; place-items: center; padding: 12px; background: #fff; border-radius: 10px; margin-bottom: 12px; }
|
|
canvas { image-rendering: pixelated; }
|
|
input[type=text], input[type=number], textarea { width: 100%; padding: 7px 9px; border-radius: 7px; background: var(--panel);
|
|
border: 1px solid var(--line); color: var(--ink); font: inherit; font-size: 13px; outline: none; }
|
|
input:focus, textarea:focus { border-color: rgba(214,255,61,.5); }
|
|
textarea { resize: vertical; min-height: 96px; font: 12px/1.45 ui-monospace, Consolas, monospace; }
|
|
.field { margin-bottom: 12px; }
|
|
.hint { color: var(--dim); font-size: 11.5px; margin-top: 4px; }
|
|
.amt { display: flex; gap: 6px; }
|
|
.amt input { flex: 1; }
|
|
.unit { display: flex; border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
|
|
.unit button { border: 0; background: var(--panel); color: var(--mut); padding: 0 10px; cursor: pointer; font: inherit; font-size: 12px; }
|
|
.unit button.on { background: rgba(214,255,61,.14); color: var(--acid); }
|
|
.fee { display: flex; align-items: center; gap: 10px; }
|
|
.fee input[type=range] { flex: 1; accent-color: var(--acid); }
|
|
.fee .v { color: var(--mut); font-size: 12px; min-width: 70px; text-align: right; font-variant-numeric: tabular-nums; }
|
|
.summary { display: grid; grid-template-columns: max-content 1fr; gap: 4px 12px; font-size: 12.5px; margin-top: 10px; }
|
|
.summary .k { color: var(--dim); } .summary .v { text-align: right; font-variant-numeric: tabular-nums; }
|
|
.msg { margin-top: 10px; font-size: 12.5px; padding: 8px 10px; border-radius: 7px; }
|
|
.msg.err { background: rgba(246,118,138,.12); color: var(--danger); }
|
|
.msg.ok { background: rgba(90,211,138,.12); color: var(--ok); }
|
|
.msg a { color: inherit; }
|
|
.tx { display: grid; grid-template-columns: 22px 1fr auto; gap: 2px 10px; padding: 9px 4px; border-bottom: 1px solid var(--line); cursor: pointer; }
|
|
.tx:hover { background: rgba(255,255,255,.03); }
|
|
.tx .ic { font-size: 15px; line-height: 1.3; }
|
|
.tx .ic.in { color: var(--ok); } .tx .ic.out { color: var(--danger); }
|
|
.tx .what { font-size: 12.5px; }
|
|
.tx .when { color: var(--dim); font-size: 11.5px; grid-column: 2; }
|
|
.tx .amt2 { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; font-size: 12.5px; }
|
|
.tx .amt2.in { color: var(--ok); }
|
|
.tx .conf { grid-column: 3; text-align: right; color: var(--dim); font-size: 11px; }
|
|
.tx .conf.pending { color: #e0b341; }
|
|
.empty { color: var(--dim); text-align: center; padding: 30px 10px; font-size: 12.5px; }
|
|
.gate { padding: 40px 18px; text-align: center; color: var(--mut); }
|
|
.gate .big { font-size: 28px; margin-bottom: 8px; }
|
|
.gate b { color: var(--ink); }
|
|
.kv { margin-top: 10px; }
|
|
.kv .lbl { margin-top: 8px; }
|
|
a.link { color: var(--acid); text-decoration: none; cursor: pointer; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="picker" id="pickerBtn">
|
|
<div class="t"><span class="badge" id="hBadge">🛡</span><span class="lbl" id="hLabel">Aegis Wallet</span></div>
|
|
<div class="caret">▾</div>
|
|
</div>
|
|
<div id="drop" hidden></div>
|
|
<div class="bal">
|
|
<div class="big"><span id="balMain">—</span><small id="balTicker">—</small></div>
|
|
<div class="sub">
|
|
<span class="netlbl" id="netlbl">connecting…</span>
|
|
<span class="net"><span class="dot" id="dot"></span></span>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<nav>
|
|
<button data-tab="receive" class="on">Receive</button>
|
|
<button data-tab="send">Send</button>
|
|
<button data-tab="history">History</button>
|
|
<button data-tab="settings">Settings</button>
|
|
</nav>
|
|
<main>
|
|
<div id="gate" class="gate" hidden></div>
|
|
<div id="tabs">
|
|
<section id="tab-receive">
|
|
<div class="qrwrap"><canvas id="qr" width="200" height="200"></canvas></div>
|
|
<div class="card">
|
|
<div class="lbl">Receiving address <span id="addrMeta"></span></div>
|
|
<div class="mono" id="addr">—</div>
|
|
<div class="actions">
|
|
<button class="btn sm" id="copyAddr">Copy</button>
|
|
<button class="btn sm" id="nextAddr" hidden>Next unused address</button>
|
|
<button class="btn sm" id="viewAddr">Explorer</button>
|
|
<button class="btn sm" id="openFaucet" hidden>Faucet</button>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section id="tab-send" hidden>
|
|
<div class="field">
|
|
<div class="lbl">Recipient</div>
|
|
<input type="text" id="sendTo" spellcheck="false" autocomplete="off" placeholder="…">
|
|
<div class="hint" id="sendToHint"></div>
|
|
</div>
|
|
<div class="field">
|
|
<div class="lbl">Amount</div>
|
|
<div class="amt">
|
|
<input type="text" id="sendAmt" inputmode="decimal" autocomplete="off" placeholder="0.00">
|
|
<div class="unit" id="unitPicker"></div>
|
|
<button class="btn sm" id="sendMax" type="button">Max</button>
|
|
</div>
|
|
</div>
|
|
<div class="field" id="feeField">
|
|
<div class="lbl">Fee</div>
|
|
<div class="fee"><input type="range" id="feeRate" min="1" max="5" step="1" value="1"><span class="v" id="feeLbl">1 sat/B</span></div>
|
|
</div>
|
|
<div class="card">
|
|
<div class="summary">
|
|
<div class="k">Amount</div><div class="v" id="sumAmt">—</div>
|
|
<div class="k">Network fee</div><div class="v" id="sumFee">—</div>
|
|
<div class="k">Total</div><div class="v" id="sumTotal">—</div>
|
|
</div>
|
|
</div>
|
|
<div class="actions"><button class="btn primary" id="sendBtn" disabled>Send</button></div>
|
|
<div class="msg" id="sendMsg" hidden></div>
|
|
</section>
|
|
<section id="tab-history" hidden>
|
|
<div id="txlist"></div>
|
|
</section>
|
|
<section id="tab-settings" hidden>
|
|
<div class="card" id="walletManage" style="margin-bottom:14px">
|
|
<div class="lbl">This wallet</div>
|
|
<div class="field" style="margin-top:6px;margin-bottom:8px">
|
|
<input type="text" id="renameLabel" placeholder="Wallet name">
|
|
</div>
|
|
<div class="actions">
|
|
<button class="btn sm" id="renameBtn">Rename</button>
|
|
<button class="btn sm danger" id="removeBtn">Remove wallet</button>
|
|
</div>
|
|
<div class="hint" id="removeHint"></div>
|
|
</div>
|
|
|
|
<div id="bchSettings" hidden>
|
|
<div class="field">
|
|
<div class="lbl">Derivation path (account)</div>
|
|
<input type="text" id="setPath" spellcheck="false" placeholder="m/44'/145'/0'">
|
|
<div class="hint">Changing this switches to a different set of addresses under the same wallet seed.</div>
|
|
</div>
|
|
<div class="field">
|
|
<div class="lbl">Electrum servers (shared across BCH wallets, one per line)</div>
|
|
<textarea id="setServers" spellcheck="false"></textarea>
|
|
<div class="hint" id="serverHint"></div>
|
|
</div>
|
|
<div class="actions">
|
|
<button class="btn primary" id="applySettings">Apply</button>
|
|
<button class="btn" id="resetServers">Reset servers</button>
|
|
</div>
|
|
<div class="card" style="margin-top:16px">
|
|
<div class="lbl">Recovery info</div>
|
|
<div class="hint">Keys come from your Theseus password vault under <span class="mono" id="purpose"></span>. The same vault seed on another machine recreates this wallet.</div>
|
|
<div class="kv" id="recovery"></div>
|
|
<div class="actions">
|
|
<button class="btn" id="showXpub">Show account xpub</button>
|
|
<button class="btn danger" id="showXprv">Show account private key</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="trxSettings" hidden>
|
|
<div class="card">
|
|
<div class="lbl">Recovery info</div>
|
|
<div class="hint">Keys come from your Theseus password vault under <span class="mono" id="trxPurpose"></span>. Import into TronLink with the derivation path <span class="mono">m/44'/195'/0'/0/0</span> from the same vault seed.</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card" style="margin-top:16px">
|
|
<div class="lbl">Connected sites</div>
|
|
<div class="hint">Sites allowed to see your address, allowances for silent BCH payments, and Tron dapps you've connected. Message signing always asks.</div>
|
|
<div id="sites" class="kv"></div>
|
|
</div>
|
|
<div class="msg err" id="settingsMsg" hidden></div>
|
|
</section>
|
|
</div>
|
|
</main>
|
|
<script src="qr.js"></script>
|
|
<script src="panel.js"></script>
|
|
</body>
|
|
</html>
|