Initial frontend import

This commit is contained in:
TerryM
2026-05-16 00:18:22 +08:00
commit 9c54ffec76
99 changed files with 14992 additions and 0 deletions

13
src/walletToken.ts Normal file
View File

@@ -0,0 +1,13 @@
const KEY = "ark_wallet_token";
export function getWalletToken() {
return localStorage.getItem(KEY) || "";
}
export function setWalletToken(t: string) {
localStorage.setItem(KEY, t);
}
export function clearWalletToken() {
localStorage.removeItem(KEY);
}