@kheopskit/core 4.0.0 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-SIUWQBT4.js → chunk-4ENHC7G4.js} +11 -2
- package/dist/chunk-4ENHC7G4.js.map +1 -0
- package/dist/{chunk-KWFQDD7E.mjs → chunk-6XAZANB5.mjs} +58 -186
- package/dist/chunk-6XAZANB5.mjs.map +1 -0
- package/dist/{chunk-PNPPI5CH.mjs → chunk-7QSGAJ4A.mjs} +11 -2
- package/dist/chunk-7QSGAJ4A.mjs.map +1 -0
- package/dist/{chunk-TMAPQWW2.js → chunk-B4L6GAYD.js} +24 -9
- package/dist/chunk-B4L6GAYD.js.map +1 -0
- package/dist/chunk-XQWJM3KC.js +450 -0
- package/dist/chunk-XQWJM3KC.js.map +1 -0
- package/dist/{chunk-4RBYRNY3.mjs → chunk-YDLCHYHH.mjs} +22 -7
- package/dist/chunk-YDLCHYHH.mjs.map +1 -0
- package/dist/ethereum.d.mts +4 -3
- package/dist/ethereum.d.ts +4 -3
- package/dist/ethereum.js +61 -42
- package/dist/ethereum.js.map +1 -1
- package/dist/ethereum.mjs +53 -34
- package/dist/ethereum.mjs.map +1 -1
- package/dist/index.d.mts +20 -6
- package/dist/index.d.ts +20 -6
- package/dist/index.js +253 -47
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +271 -65
- package/dist/index.mjs.map +1 -1
- package/dist/internal.d.mts +4 -4
- package/dist/internal.d.ts +4 -4
- package/dist/internal.js +3 -3
- package/dist/internal.mjs +2 -2
- package/dist/polkadot.d.mts +4 -3
- package/dist/polkadot.d.ts +4 -3
- package/dist/polkadot.js +26 -37
- package/dist/polkadot.js.map +1 -1
- package/dist/polkadot.mjs +13 -24
- package/dist/polkadot.mjs.map +1 -1
- package/dist/solana.d.mts +5 -4
- package/dist/solana.d.ts +5 -4
- package/dist/solana.js +37 -42
- package/dist/solana.js.map +1 -1
- package/dist/solana.mjs +26 -31
- package/dist/solana.mjs.map +1 -1
- package/dist/{types-BNzRUNw-.d.mts → types-C7V7DGlg.d.mts} +47 -17
- package/dist/{types-BNzRUNw-.d.ts → types-C7V7DGlg.d.ts} +47 -17
- package/package.json +42 -16
- package/dist/chunk-4RBYRNY3.mjs.map +0 -1
- package/dist/chunk-FIAL4HTE.js +0 -1
- package/dist/chunk-FIAL4HTE.js.map +0 -1
- package/dist/chunk-KWFQDD7E.mjs.map +0 -1
- package/dist/chunk-NU46D4MZ.js +0 -578
- package/dist/chunk-NU46D4MZ.js.map +0 -1
- package/dist/chunk-PNPPI5CH.mjs.map +0 -1
- package/dist/chunk-SIUWQBT4.js.map +0 -1
- package/dist/chunk-TMAPQWW2.js.map +0 -1
- package/dist/chunk-YFD3IKK5.mjs +0 -1
- package/dist/chunk-YFD3IKK5.mjs.map +0 -1
|
@@ -4,7 +4,8 @@ var _chunkD3EQMFZ2js = require('./chunk-D3EQMFZ2.js');
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
|
|
8
|
+
var _chunk4ENHC7G4js = require('./chunk-4ENHC7G4.js');
|
|
8
9
|
|
|
9
10
|
// src/utils/hydrateState.ts
|
|
10
11
|
var lookupWalletIcon = (platform, identifier) => {
|
|
@@ -22,10 +23,22 @@ var PendingWalletError = class extends Error {
|
|
|
22
23
|
}
|
|
23
24
|
};
|
|
24
25
|
var hydrateWallet = (cached) => {
|
|
25
|
-
const { platform, identifier } = _chunkSIUWQBT4js.parseWalletId.call(void 0, cached.id);
|
|
26
26
|
const throwPending = () => {
|
|
27
27
|
throw new PendingWalletError(cached.id);
|
|
28
28
|
};
|
|
29
|
+
if (cached.type === "walletconnect") {
|
|
30
|
+
return {
|
|
31
|
+
id: cached.id,
|
|
32
|
+
type: "walletconnect",
|
|
33
|
+
platforms: [],
|
|
34
|
+
name: cached.name,
|
|
35
|
+
icon: "",
|
|
36
|
+
isConnected: cached.isConnected,
|
|
37
|
+
connect: throwPending,
|
|
38
|
+
disconnect: throwPending
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const { platform, identifier } = _chunk4ENHC7G4js.parseWalletId.call(void 0, cached.id);
|
|
29
42
|
return {
|
|
30
43
|
id: cached.id,
|
|
31
44
|
platform: cached.platform,
|
|
@@ -54,7 +67,8 @@ var hydrateAccount = (cached) => ({
|
|
|
54
67
|
});
|
|
55
68
|
var serializeWallet = (wallet) => ({
|
|
56
69
|
id: wallet.id,
|
|
57
|
-
platform
|
|
70
|
+
// The WalletConnect connector has no platform.
|
|
71
|
+
platform: _chunk4ENHC7G4js.isWalletConnectWallet.call(void 0, wallet) ? void 0 : wallet.platform,
|
|
58
72
|
type: wallet.type,
|
|
59
73
|
name: wallet.name,
|
|
60
74
|
// Note: icon is NOT stored to save cookie space
|
|
@@ -77,7 +91,7 @@ var memoryCache = null;
|
|
|
77
91
|
var loadCache = () => {
|
|
78
92
|
if (memoryCache !== null) return memoryCache;
|
|
79
93
|
try {
|
|
80
|
-
const stored =
|
|
94
|
+
const stored = _chunk4ENHC7G4js.safeLocalStorage.getItem(ICON_CACHE_KEY);
|
|
81
95
|
memoryCache = stored ? JSON.parse(stored) : {};
|
|
82
96
|
} catch (e) {
|
|
83
97
|
memoryCache = {};
|
|
@@ -86,7 +100,7 @@ var loadCache = () => {
|
|
|
86
100
|
};
|
|
87
101
|
var saveCache = (cache) => {
|
|
88
102
|
try {
|
|
89
|
-
|
|
103
|
+
_chunk4ENHC7G4js.safeLocalStorage.setItem(ICON_CACHE_KEY, JSON.stringify(cache));
|
|
90
104
|
memoryCache = cache;
|
|
91
105
|
} catch (e2) {
|
|
92
106
|
}
|
|
@@ -135,10 +149,11 @@ var PLATFORM_ORDER2 = {
|
|
|
135
149
|
ethereum: 1,
|
|
136
150
|
solana: 2
|
|
137
151
|
};
|
|
152
|
+
var orderOf = (wallet) => _chunk4ENHC7G4js.isWalletConnectWallet.call(void 0, wallet) ? 3 : PLATFORM_ORDER2[wallet.platform];
|
|
138
153
|
var sortWallets = (w1, w2) => {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
154
|
+
const o1 = orderOf(w1);
|
|
155
|
+
const o2 = orderOf(w2);
|
|
156
|
+
if (o1 !== o2) return o1 - o2;
|
|
142
157
|
if (w1.name.toLowerCase() === "talisman") return -1;
|
|
143
158
|
if (w2.name.toLowerCase() === "talisman") return 1;
|
|
144
159
|
return w1.name.localeCompare(w2.name);
|
|
@@ -161,4 +176,4 @@ var acceptsCachedAccount = (cached, platforms) => {
|
|
|
161
176
|
|
|
162
177
|
|
|
163
178
|
exports.hydrateWallet = hydrateWallet; exports.hydrateAccount = hydrateAccount; exports.serializeWallet = serializeWallet; exports.serializeAccount = serializeAccount; exports.getCachedIcon = getCachedIcon; exports.setCachedIcons = setCachedIcons; exports.sortAccounts = sortAccounts; exports.sortWallets = sortWallets; exports.acceptsCachedAccount = acceptsCachedAccount;
|
|
164
|
-
//# sourceMappingURL=chunk-
|
|
179
|
+
//# sourceMappingURL=chunk-B4L6GAYD.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/kheopskit/kheopskit/packages/core/dist/chunk-B4L6GAYD.js","../src/utils/hydrateState.ts","../src/utils/iconCache.ts","../src/utils/sortAccounts.ts","../src/utils/sortWallets.ts","../src/api/platform.ts"],"names":["PLATFORM_ORDER"],"mappings":"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","file":"/home/runner/work/kheopskit/kheopskit/packages/core/dist/chunk-B4L6GAYD.js","sourcesContent":[null,"import {\n\ttype BaseWallet,\n\ttype BaseWalletAccount,\n\ttype CachedAccount,\n\ttype CachedWallet,\n\tisWalletConnectWallet,\n\ttype PolkadotAccountType,\n\ttype WalletConnectWallet,\n} from \"../api/types\";\nimport { POLKADOT_EXTENSIONS } from \"./polkadotExtensions\";\nimport type { WalletAccountId } from \"./WalletAccountId\";\nimport { parseWalletId, type WalletId } from \"./WalletId\";\n\n/**\n * Looks up the icon for a wallet from known Polkadot extensions only.\n * Ethereum icons will be populated from the localStorage icon cache via the merge function.\n *\n * Note: We DON'T use localStorage icon cache here because hydrateWallet is called\n * during SSR (server) and client hydration. localStorage isn't available on server,\n * so using it would cause a hydration mismatch. Icons for Ethereum wallets will be\n * populated when the hydration buffer merges cached wallets with live wallets.\n */\nconst lookupWalletIcon = (platform: string, identifier: string): string => {\n\t// Only Polkadot extensions have hardcoded icons that are safe for SSR\n\tif (platform === \"polkadot\") {\n\t\treturn POLKADOT_EXTENSIONS[identifier]?.icon ?? \"\";\n\t}\n\t// Ethereum icons come from localStorage or live wallets - not here\n\treturn \"\";\n};\n\n/**\n * Error thrown when trying to use a placeholder wallet that hasn't fully loaded yet.\n */\nclass PendingWalletError extends Error {\n\tconstructor(walletId: string) {\n\t\tsuper(\n\t\t\t`Wallet ${walletId} is still loading. Wait for isHydrating to be false before calling connect/disconnect.`,\n\t\t);\n\t\tthis.name = \"PendingWalletError\";\n\t}\n}\n\n/**\n * Converts a CachedWallet to a placeholder wallet for SSR hydration display.\n *\n * The placeholder carries only the SDK-free {@link BaseWallet} fields; the real\n * wallet (with its injected provider/extension/standard-wallet handle) replaces\n * it once it loads. connect/disconnect throw until then.\n */\nexport const hydrateWallet = (\n\tcached: CachedWallet,\n): BaseWallet | WalletConnectWallet => {\n\tconst throwPending = () => {\n\t\tthrow new PendingWalletError(cached.id);\n\t};\n\n\t// The platform-less WalletConnect connector. `appKit`/`platforms` are SDK\n\t// state absent until the live connector loads (cast like other placeholder\n\t// SDK handles); icon is filled from the localStorage cache by the caller.\n\tif (cached.type === \"walletconnect\") {\n\t\treturn {\n\t\t\tid: cached.id,\n\t\t\ttype: \"walletconnect\",\n\t\t\tplatforms: [],\n\t\t\tname: cached.name,\n\t\t\ticon: \"\",\n\t\t\tisConnected: cached.isConnected,\n\t\t\tconnect: throwPending,\n\t\t\tdisconnect: throwPending,\n\t\t} as unknown as WalletConnectWallet;\n\t}\n\n\tconst { platform, identifier } = parseWalletId(cached.id);\n\n\treturn {\n\t\tid: cached.id,\n\t\tplatform: cached.platform as BaseWallet[\"platform\"],\n\t\ttype: cached.type,\n\t\tname: cached.name,\n\t\ticon: lookupWalletIcon(platform, identifier),\n\t\tisConnected: cached.isConnected,\n\t\tconnect: throwPending,\n\t\tdisconnect: throwPending,\n\t};\n};\n\n/**\n * Converts a CachedAccount to a placeholder account for SSR hydration display.\n *\n * The placeholder carries the SDK-free {@link BaseWalletAccount} fields plus the\n * plain, serializable platform data that lives in the cache — Ethereum `chainId`\n * and the Polkadot key `type`. Those render immediately on reload (no blank →\n * value flicker) and match what the live account will report. Only the SDK\n * handles (`client`/`signer`/`polkadotSigner`) are absent until the real account\n * replaces this placeholder; signing stays gated on `isHydrating` until then.\n */\nexport const hydrateAccount = (cached: CachedAccount): BaseWalletAccount => ({\n\tid: cached.id as WalletAccountId,\n\tplatform: cached.platform,\n\taddress: cached.address,\n\tname: cached.name,\n\twalletId: cached.walletId,\n\twalletName: cached.walletName,\n\t// Spread (not direct keys) so the extra platform fields don't trip the\n\t// excess-property check against BaseWalletAccount; they're read back via the\n\t// platform-specific account types once narrowed by `platform`.\n\t...(cached.platform === \"ethereum\" && { chainId: cached.chainId }),\n\t...(cached.platform === \"polkadot\" && {\n\t\ttype: cached.polkadotAccountType,\n\t}),\n});\n\n/**\n * Converts a wallet to a CachedWallet for storage.\n * Only extracts the serializable properties needed for hydration.\n */\nexport const serializeWallet = (\n\twallet: BaseWallet | WalletConnectWallet,\n): CachedWallet => ({\n\tid: wallet.id,\n\t// The WalletConnect connector has no platform.\n\tplatform: isWalletConnectWallet(wallet) ? undefined : wallet.platform,\n\ttype: wallet.type,\n\tname: wallet.name,\n\t// Note: icon is NOT stored to save cookie space\n\tisConnected: wallet.isConnected,\n});\n\n/**\n * Converts an account to a CachedAccount for storage.\n * Only extracts the serializable properties needed for hydration. Platform-only\n * fields (Ethereum chainId, Polkadot key type) are read defensively so this\n * stays SDK-free.\n */\nexport const serializeAccount = (\n\taccount: BaseWalletAccount,\n): CachedAccount => ({\n\tid: account.id,\n\tplatform: account.platform,\n\taddress: account.address,\n\tname: account.name,\n\tchainId:\n\t\taccount.platform === \"ethereum\"\n\t\t\t? (account as { chainId?: number }).chainId\n\t\t\t: undefined,\n\tpolkadotAccountType:\n\t\taccount.platform === \"polkadot\"\n\t\t\t? (account as { type?: PolkadotAccountType }).type\n\t\t\t: undefined,\n\twalletId: account.walletId as WalletId,\n\twalletName: account.walletName,\n});\n","import { safeLocalStorage } from \"./storage\";\n\n/**\n * Storage key for the icon cache in localStorage.\n */\nconst ICON_CACHE_KEY = \"kheopskit-icons\";\n\n/**\n * Icon cache type: a map of wallet ID to icon data URI or URL.\n */\ntype IconCache = Record<string, string>;\n\n/**\n * In-memory cache to avoid repeated localStorage reads.\n */\nlet memoryCache: IconCache | null = null;\n\n/**\n * Loads the icon cache from localStorage.\n */\nconst loadCache = (): IconCache => {\n\tif (memoryCache !== null) return memoryCache;\n\n\ttry {\n\t\tconst stored = safeLocalStorage.getItem(ICON_CACHE_KEY);\n\t\tmemoryCache = stored ? (JSON.parse(stored) as IconCache) : {};\n\t} catch {\n\t\tmemoryCache = {};\n\t}\n\treturn memoryCache;\n};\n\n/**\n * Saves the icon cache to localStorage.\n */\nconst saveCache = (cache: IconCache): void => {\n\ttry {\n\t\tsafeLocalStorage.setItem(ICON_CACHE_KEY, JSON.stringify(cache));\n\t\tmemoryCache = cache;\n\t} catch {\n\t\t// localStorage may be full or unavailable\n\t}\n};\n\n/**\n * Gets a cached icon for a wallet.\n * @param walletId - The wallet ID (e.g., \"ethereum:io.talisman\")\n * @returns The cached icon data URI, or undefined if not cached\n */\nexport const getCachedIcon = (walletId: string): string | undefined => {\n\tconst cache = loadCache();\n\treturn cache[walletId] || undefined;\n};\n\n/**\n * Sets multiple cached icons at once.\n * More efficient than calling setCachedIcon multiple times.\n * @param icons - Map of wallet ID to icon\n */\nexport const setCachedIcons = (icons: Record<string, string>): void => {\n\tconst cache = loadCache();\n\tlet changed = false;\n\n\tfor (const [walletId, icon] of Object.entries(icons)) {\n\t\tif (icon && cache[walletId] !== icon) {\n\t\t\tcache[walletId] = icon;\n\t\t\tchanged = true;\n\t\t}\n\t}\n\n\tif (changed) {\n\t\tsaveCache(cache);\n\t}\n};\n","import type { BaseWalletAccount, WalletPlatform } from \"../api/types\";\n\nconst PLATFORM_ORDER: Record<WalletPlatform, number> = {\n\tpolkadot: 0,\n\tethereum: 1,\n\tsolana: 2,\n};\n\n// Group accounts by wallet, surfacing Talisman first (case-insensitive).\nconst byWalletName = (a1: BaseWalletAccount, a2: BaseWalletAccount) => {\n\tif (a1.walletName.toLowerCase() === \"talisman\") return -1;\n\tif (a2.walletName.toLowerCase() === \"talisman\") return 1;\n\treturn a1.walletName.localeCompare(a2.walletName);\n};\n\nexport const sortAccounts = (a1: BaseWalletAccount, a2: BaseWalletAccount) => {\n\t// Sort by platform first: polkadot, then ethereum, then solana\n\tif (a1.platform !== a2.platform)\n\t\treturn PLATFORM_ORDER[a1.platform] - PLATFORM_ORDER[a2.platform];\n\n\t// Then group by wallet name\n\tif (a1.walletName !== a2.walletName) return byWalletName(a1, a2);\n\n\t// Polkadot accounts expose a friendly name; fall back to address\n\tif (a1.platform === \"polkadot\" && a2.platform === \"polkadot\")\n\t\treturn a1.name !== a2.name\n\t\t\t? (a1.name ?? \"\").localeCompare(a2.name ?? \"\")\n\t\t\t: a1.address.localeCompare(a2.address);\n\n\t// Ethereum and Solana accounts disambiguate by id\n\treturn a1.id.localeCompare(a2.id);\n};\n","import {\n\ttype BaseWallet,\n\tisWalletConnectWallet,\n\ttype WalletConnectWallet,\n\ttype WalletPlatform,\n} from \"../api/types\";\n\nconst PLATFORM_ORDER: Record<WalletPlatform, number> = {\n\tpolkadot: 0,\n\tethereum: 1,\n\tsolana: 2,\n};\n\n// The platform-less WalletConnect connector sorts after all platform wallets.\nconst orderOf = (wallet: BaseWallet | WalletConnectWallet) =>\n\tisWalletConnectWallet(wallet) ? 3 : PLATFORM_ORDER[wallet.platform];\n\nexport const sortWallets = (\n\tw1: BaseWallet | WalletConnectWallet,\n\tw2: BaseWallet | WalletConnectWallet,\n) => {\n\t// Sort by platform first: polkadot, then ethereum, then solana, then WC\n\tconst o1 = orderOf(w1);\n\tconst o2 = orderOf(w2);\n\tif (o1 !== o2) return o1 - o2;\n\n\t// Sort by name, but Talisman first\n\tif (w1.name.toLowerCase() === \"talisman\") return -1;\n\tif (w2.name.toLowerCase() === \"talisman\") return 1;\n\n\treturn w1.name.localeCompare(w2.name);\n};\n","import type { CachedAccount, KheopskitPlatform } from \"./types\";\n\n/**\n * Whether a cached account should survive SSR hydration, per its platform\n * plugin's `acceptsCachedAccount` hook. Plugins without the hook (and platforms\n * with no enabled plugin) accept all — matching the pre-plugin behavior where\n * only Polkadot accounts were filtered (by key type).\n */\nexport const acceptsCachedAccount = (\n\tcached: CachedAccount,\n\tplatforms: readonly KheopskitPlatform[],\n): boolean => {\n\tconst plugin = platforms.find((p) => p.platform === cached.platform);\n\treturn plugin?.acceptsCachedAccount?.(cached) ?? true;\n};\n"]}
|
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
var _chunk4ENHC7G4js = require('./chunk-4ENHC7G4.js');
|
|
10
|
+
|
|
11
|
+
// src/utils/isEthereumAddress.ts
|
|
12
|
+
var _sha3 = require('@noble/hashes/sha3');
|
|
13
|
+
var HEX_ADDRESS = /^0x[0-9a-fA-F]{40}$/;
|
|
14
|
+
var encoder = new TextEncoder();
|
|
15
|
+
var isChecksumValid = (address) => {
|
|
16
|
+
const hex = address.slice(2);
|
|
17
|
+
const hash = _sha3.keccak_256.call(void 0, encoder.encode(hex.toLowerCase()));
|
|
18
|
+
for (let i = 0; i < 40; i++) {
|
|
19
|
+
const char = hex.charAt(i);
|
|
20
|
+
const isLetter = char >= "a" && char <= "f" || char >= "A" && char <= "F";
|
|
21
|
+
if (!isLetter) continue;
|
|
22
|
+
const byte = _nullishCoalesce(hash[i >> 1], () => ( 0));
|
|
23
|
+
const nibble = i % 2 === 0 ? byte >> 4 : byte & 15;
|
|
24
|
+
const isUpper = char <= "F";
|
|
25
|
+
if (isUpper !== nibble >= 8) return false;
|
|
26
|
+
}
|
|
27
|
+
return true;
|
|
28
|
+
};
|
|
29
|
+
var isEthereumAddress = (address) => {
|
|
30
|
+
if (!HEX_ADDRESS.test(address)) return false;
|
|
31
|
+
if (address === address.toLowerCase()) return true;
|
|
32
|
+
return isChecksumValid(address);
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
// src/utils/isSs58Address.ts
|
|
36
|
+
var _blake2b = require('@noble/hashes/blake2b');
|
|
37
|
+
var _base = require('@scure/base');
|
|
38
|
+
var SS58PRE = new Uint8Array([83, 83, 53, 56, 80, 82, 69]);
|
|
39
|
+
var isSs58Address = (address) => {
|
|
40
|
+
if (!address) return false;
|
|
41
|
+
let decoded;
|
|
42
|
+
try {
|
|
43
|
+
decoded = _base.base58.decode(address);
|
|
44
|
+
} catch (e) {
|
|
45
|
+
return false;
|
|
46
|
+
}
|
|
47
|
+
const firstByte = decoded[0];
|
|
48
|
+
if (firstByte === void 0 || firstByte & 128) return false;
|
|
49
|
+
const prefixLength = firstByte & 64 ? 2 : 1;
|
|
50
|
+
if (decoded.length !== prefixLength + 32 + 2) return false;
|
|
51
|
+
const body = decoded.subarray(0, decoded.length - 2);
|
|
52
|
+
const preimage = new Uint8Array(SS58PRE.length + body.length);
|
|
53
|
+
preimage.set(SS58PRE);
|
|
54
|
+
preimage.set(body, SS58PRE.length);
|
|
55
|
+
const hash = _blake2b.blake2b.call(void 0, preimage, { dkLen: 64 });
|
|
56
|
+
return decoded[decoded.length - 2] === hash[0] && decoded[decoded.length - 1] === hash[1];
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
// src/utils/isSolanaAddress.ts
|
|
60
|
+
|
|
61
|
+
var isSolanaAddress = (address) => {
|
|
62
|
+
if (!address) return false;
|
|
63
|
+
try {
|
|
64
|
+
return _base.base58.decode(address).length === 32;
|
|
65
|
+
} catch (e2) {
|
|
66
|
+
return false;
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
// src/utils/isValidAddress.ts
|
|
71
|
+
var isValidAddress = (address) => {
|
|
72
|
+
if (address.startsWith("0x")) return isEthereumAddress(address);
|
|
73
|
+
return isSs58Address(address) || isSolanaAddress(address);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
// src/utils/WalletAccountId.ts
|
|
77
|
+
var getWalletAccountId = (walletId, address) => {
|
|
78
|
+
if (!walletId) throw new Error("Missing walletId");
|
|
79
|
+
if (!isValidAddress(address)) throw new Error("Invalid address");
|
|
80
|
+
return `${walletId}::${address}`;
|
|
81
|
+
};
|
|
82
|
+
var parseWalletAccountId = (accountId) => {
|
|
83
|
+
if (!accountId) throw new Error("Invalid walletAccountId");
|
|
84
|
+
const [walletId, address] = accountId.split("::");
|
|
85
|
+
if (!walletId) throw new Error("Missing walletId");
|
|
86
|
+
if (!address || !isValidAddress(address)) throw new Error("Invalid address");
|
|
87
|
+
return { walletId, address };
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
// src/api/errors.ts
|
|
91
|
+
var KheopskitError = class extends Error {
|
|
92
|
+
constructor(code, message, options) {
|
|
93
|
+
super(`[kheopskit] ${message}`, { cause: _optionalChain([options, 'optionalAccess', _ => _.cause]) });
|
|
94
|
+
_chunk4ENHC7G4js.__publicField.call(void 0, this, "code");
|
|
95
|
+
/** The wallet id this error relates to, when applicable. */
|
|
96
|
+
_chunk4ENHC7G4js.__publicField.call(void 0, this, "walletId");
|
|
97
|
+
this.name = "KheopskitError";
|
|
98
|
+
this.code = code;
|
|
99
|
+
this.walletId = _optionalChain([options, 'optionalAccess', _2 => _2.walletId]);
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
// src/api/config.ts
|
|
104
|
+
var DEFAULT_STORAGE_KEY = "kheopskit";
|
|
105
|
+
var DEFAULTS = {
|
|
106
|
+
autoReconnect: true,
|
|
107
|
+
debug: false,
|
|
108
|
+
storageKey: DEFAULT_STORAGE_KEY,
|
|
109
|
+
hydrationGracePeriod: 500
|
|
110
|
+
};
|
|
111
|
+
var resolveConfig = (config) => {
|
|
112
|
+
const platforms = _nullishCoalesce(_optionalChain([config, 'optionalAccess', _3 => _3.platforms]), () => ( []));
|
|
113
|
+
const invalidPlatforms = platforms.filter(
|
|
114
|
+
(p) => typeof p !== "object" || p === null || typeof p.getWallets$ !== "function"
|
|
115
|
+
);
|
|
116
|
+
if (invalidPlatforms.length > 0) {
|
|
117
|
+
throw new Error(
|
|
118
|
+
`[kheopskit] config.platforms must contain plugin instances created by the per-platform factories (e.g. platforms: [polkadot(), ethereum(), solana()] imported from "@kheopskit/core/<platform>"). Invalid entries: ${JSON.stringify(invalidPlatforms)}. String platform names like "polkadot" were removed in v4 \u2014 see MIGRATING_TO_V4.md.`
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
if (platforms.length === 0) {
|
|
122
|
+
console.warn(
|
|
123
|
+
'[kheopskit] No platforms configured; wallets and accounts will be empty. Pass e.g. platforms: [polkadot()] from "@kheopskit/core/polkadot".'
|
|
124
|
+
);
|
|
125
|
+
}
|
|
126
|
+
return Object.assign({}, DEFAULTS, config, { platforms });
|
|
127
|
+
};
|
|
128
|
+
|
|
129
|
+
// src/api/store.ts
|
|
130
|
+
var _lodashes = require('lodash-es');
|
|
131
|
+
|
|
132
|
+
// src/utils/createStore.ts
|
|
133
|
+
var _rxjs = require('rxjs');
|
|
134
|
+
var createStore = (key, defaultValue, storage = _chunk4ENHC7G4js.safeLocalStorage) => {
|
|
135
|
+
const subject = new (0, _rxjs.BehaviorSubject)(
|
|
136
|
+
getStoredData(key, defaultValue, storage)
|
|
137
|
+
);
|
|
138
|
+
let unsubscribeStorage;
|
|
139
|
+
if (typeof window !== "undefined" && storage.subscribe) {
|
|
140
|
+
unsubscribeStorage = storage.subscribe(key, (newValue) => {
|
|
141
|
+
subject.next(parseData(newValue, defaultValue));
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
const update = (val) => {
|
|
145
|
+
setStoredData(key, val, storage);
|
|
146
|
+
subject.next(val);
|
|
147
|
+
};
|
|
148
|
+
return {
|
|
149
|
+
observable: subject.asObservable(),
|
|
150
|
+
set: (val) => update(val),
|
|
151
|
+
mutate: (transform) => update(transform(subject.getValue())),
|
|
152
|
+
get: () => structuredClone(subject.getValue()),
|
|
153
|
+
/**
|
|
154
|
+
* Cleanup subscriptions. Call this when the store is no longer needed.
|
|
155
|
+
*/
|
|
156
|
+
destroy: () => {
|
|
157
|
+
_optionalChain([unsubscribeStorage, 'optionalCall', _4 => _4()]);
|
|
158
|
+
subject.complete();
|
|
159
|
+
}
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
var parseData = (str, defaultValue) => {
|
|
163
|
+
try {
|
|
164
|
+
if (str) return JSON.parse(str);
|
|
165
|
+
} catch (e3) {
|
|
166
|
+
}
|
|
167
|
+
return defaultValue;
|
|
168
|
+
};
|
|
169
|
+
var getStoredData = (key, defaultValue, storage) => {
|
|
170
|
+
const str = storage.getItem(key);
|
|
171
|
+
return parseData(str, defaultValue);
|
|
172
|
+
};
|
|
173
|
+
var setStoredData = (key, val, storage) => {
|
|
174
|
+
const str = JSON.stringify(val);
|
|
175
|
+
storage.setItem(key, str);
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
// src/api/store.ts
|
|
179
|
+
var DEFAULT_SETTINGS = {};
|
|
180
|
+
var isValidCachedWallet = (value) => {
|
|
181
|
+
if (!value || typeof value !== "object") return false;
|
|
182
|
+
const w = value;
|
|
183
|
+
if (!_chunk4ENHC7G4js.isValidWalletId.call(void 0, w.id)) return false;
|
|
184
|
+
if (typeof w.name !== "string" || typeof w.isConnected !== "boolean")
|
|
185
|
+
return false;
|
|
186
|
+
if (w.type === "walletconnect")
|
|
187
|
+
return w.id === _chunk4ENHC7G4js.WALLET_CONNECT_WALLET_ID && w.platform === void 0;
|
|
188
|
+
return w.type === "injected" && _chunk4ENHC7G4js.isWalletPlatform.call(void 0, w.platform);
|
|
189
|
+
};
|
|
190
|
+
var isValidCachedAccount = (value) => {
|
|
191
|
+
if (!value || typeof value !== "object") return false;
|
|
192
|
+
const a = value;
|
|
193
|
+
return typeof a.id === "string" && !!a.id && _chunk4ENHC7G4js.isWalletPlatform.call(void 0, a.platform) && typeof a.address === "string" && !!a.address && _chunk4ENHC7G4js.isValidWalletId.call(void 0, a.walletId) && typeof a.walletName === "string";
|
|
194
|
+
};
|
|
195
|
+
var toCompactPolkadotAccountType = (type) => {
|
|
196
|
+
switch (type) {
|
|
197
|
+
case "sr25519":
|
|
198
|
+
return 0;
|
|
199
|
+
case "ed25519":
|
|
200
|
+
return 1;
|
|
201
|
+
case "ecdsa":
|
|
202
|
+
return 2;
|
|
203
|
+
case "ethereum":
|
|
204
|
+
return 3;
|
|
205
|
+
default:
|
|
206
|
+
return null;
|
|
207
|
+
}
|
|
208
|
+
};
|
|
209
|
+
var fromCompactPolkadotAccountType = (type) => {
|
|
210
|
+
switch (type) {
|
|
211
|
+
case 0:
|
|
212
|
+
return "sr25519";
|
|
213
|
+
case 1:
|
|
214
|
+
return "ed25519";
|
|
215
|
+
case 2:
|
|
216
|
+
return "ecdsa";
|
|
217
|
+
case 3:
|
|
218
|
+
return "ethereum";
|
|
219
|
+
default:
|
|
220
|
+
return void 0;
|
|
221
|
+
}
|
|
222
|
+
};
|
|
223
|
+
var toCompactPlatform = (platform) => {
|
|
224
|
+
switch (platform) {
|
|
225
|
+
case "polkadot":
|
|
226
|
+
return 0;
|
|
227
|
+
case "ethereum":
|
|
228
|
+
return 1;
|
|
229
|
+
case "solana":
|
|
230
|
+
return 2;
|
|
231
|
+
}
|
|
232
|
+
};
|
|
233
|
+
var fromCompactPlatform = (code) => {
|
|
234
|
+
switch (code) {
|
|
235
|
+
case 0:
|
|
236
|
+
return "polkadot";
|
|
237
|
+
case 1:
|
|
238
|
+
return "ethereum";
|
|
239
|
+
case 2:
|
|
240
|
+
return "solana";
|
|
241
|
+
default:
|
|
242
|
+
return void 0;
|
|
243
|
+
}
|
|
244
|
+
};
|
|
245
|
+
var createKheopskitStore = (options = {}) => {
|
|
246
|
+
const { ssrCookies, storageKey = DEFAULT_STORAGE_KEY } = options;
|
|
247
|
+
const storage = ssrCookies !== void 0 ? createCompactCookieStorage(ssrCookies) : _chunk4ENHC7G4js.safeLocalStorage;
|
|
248
|
+
const store2 = createStore(storageKey, DEFAULT_SETTINGS, storage);
|
|
249
|
+
const addEnabledWalletId = (walletId) => {
|
|
250
|
+
_chunk4ENHC7G4js.parseWalletId.call(void 0, walletId);
|
|
251
|
+
store2.mutate((prev) => ({
|
|
252
|
+
...prev,
|
|
253
|
+
autoReconnect: _lodashes.uniq.call(void 0, (_nullishCoalesce(prev.autoReconnect, () => ( []))).concat(walletId))
|
|
254
|
+
}));
|
|
255
|
+
};
|
|
256
|
+
const removeEnabledWalletId = (walletId) => {
|
|
257
|
+
store2.mutate((prev) => ({
|
|
258
|
+
...prev,
|
|
259
|
+
autoReconnect: _lodashes.uniq.call(void 0,
|
|
260
|
+
(_nullishCoalesce(prev.autoReconnect, () => ( []))).filter((id) => id !== walletId)
|
|
261
|
+
)
|
|
262
|
+
}));
|
|
263
|
+
};
|
|
264
|
+
const getCachedState = () => {
|
|
265
|
+
const data = store2.get();
|
|
266
|
+
const cachedWallets = Array.isArray(_optionalChain([data, 'optionalAccess', _5 => _5.cachedWallets])) ? data.cachedWallets : [];
|
|
267
|
+
const cachedAccounts = Array.isArray(_optionalChain([data, 'optionalAccess', _6 => _6.cachedAccounts])) ? data.cachedAccounts : [];
|
|
268
|
+
return {
|
|
269
|
+
wallets: cachedWallets.filter(isValidCachedWallet),
|
|
270
|
+
accounts: cachedAccounts.filter(isValidCachedAccount)
|
|
271
|
+
};
|
|
272
|
+
};
|
|
273
|
+
const setCachedState = (wallets, accounts) => {
|
|
274
|
+
store2.mutate((prev) => ({
|
|
275
|
+
...prev,
|
|
276
|
+
cachedWallets: wallets,
|
|
277
|
+
cachedAccounts: accounts
|
|
278
|
+
}));
|
|
279
|
+
};
|
|
280
|
+
return {
|
|
281
|
+
observable: store2.observable,
|
|
282
|
+
addEnabledWalletId,
|
|
283
|
+
removeEnabledWalletId,
|
|
284
|
+
getCachedState,
|
|
285
|
+
setCachedState
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
var DEFAULT_STORE_SYMBOL = /* @__PURE__ */ Symbol.for("kheopskit.defaultStore");
|
|
289
|
+
var getDefaultStore = () => {
|
|
290
|
+
const g = globalThis;
|
|
291
|
+
if (!g[DEFAULT_STORE_SYMBOL]) {
|
|
292
|
+
g[DEFAULT_STORE_SYMBOL] = createKheopskitStore();
|
|
293
|
+
}
|
|
294
|
+
return g[DEFAULT_STORE_SYMBOL];
|
|
295
|
+
};
|
|
296
|
+
var store = {
|
|
297
|
+
get observable() {
|
|
298
|
+
return getDefaultStore().observable;
|
|
299
|
+
},
|
|
300
|
+
addEnabledWalletId: (walletId) => getDefaultStore().addEnabledWalletId(walletId),
|
|
301
|
+
removeEnabledWalletId: (walletId) => getDefaultStore().removeEnabledWalletId(walletId),
|
|
302
|
+
getCachedState: () => getDefaultStore().getCachedState(),
|
|
303
|
+
setCachedState: (wallets, accounts) => getDefaultStore().setCachedState(wallets, accounts)
|
|
304
|
+
};
|
|
305
|
+
var isCompactStore = (value) => {
|
|
306
|
+
if (!value || typeof value !== "object" || Array.isArray(value)) return false;
|
|
307
|
+
if ("cachedWallets" in value || "cachedAccounts" in value) return false;
|
|
308
|
+
return "v" in value || "w" in value || "a" in value || "r" in value;
|
|
309
|
+
};
|
|
310
|
+
var toCompactStore = (data) => {
|
|
311
|
+
const wallets = _optionalChain([data, 'access', _7 => _7.cachedWallets, 'optionalAccess', _8 => _8.map, 'call', _9 => _9(
|
|
312
|
+
(wallet) => [
|
|
313
|
+
wallet.id,
|
|
314
|
+
wallet.name,
|
|
315
|
+
wallet.isConnected ? 1 : 0,
|
|
316
|
+
wallet.type === "walletconnect" ? 1 : 0
|
|
317
|
+
]
|
|
318
|
+
)]);
|
|
319
|
+
const accounts = _optionalChain([data, 'access', _10 => _10.cachedAccounts, 'optionalAccess', _11 => _11.map, 'call', _12 => _12(
|
|
320
|
+
(account) => [
|
|
321
|
+
account.walletId,
|
|
322
|
+
account.address,
|
|
323
|
+
_nullishCoalesce(account.name, () => ( null)),
|
|
324
|
+
_nullishCoalesce(account.chainId, () => ( null)),
|
|
325
|
+
toCompactPolkadotAccountType(account.polkadotAccountType),
|
|
326
|
+
toCompactPlatform(account.platform)
|
|
327
|
+
]
|
|
328
|
+
)]);
|
|
329
|
+
return {
|
|
330
|
+
v: 1,
|
|
331
|
+
r: data.autoReconnect,
|
|
332
|
+
w: _optionalChain([wallets, 'optionalAccess', _13 => _13.length]) ? wallets : void 0,
|
|
333
|
+
a: _optionalChain([accounts, 'optionalAccess', _14 => _14.length]) ? accounts : void 0
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
var fromCompactStore = (data) => {
|
|
337
|
+
const walletNameMap = /* @__PURE__ */ new Map();
|
|
338
|
+
const wallets = [];
|
|
339
|
+
for (const item of Array.isArray(data.w) ? data.w : []) {
|
|
340
|
+
if (!Array.isArray(item)) continue;
|
|
341
|
+
const [id, name, isConnected, type] = item;
|
|
342
|
+
if (!_chunk4ENHC7G4js.isValidWalletId.call(void 0, id)) continue;
|
|
343
|
+
const isWalletConnect = id === _chunk4ENHC7G4js.WALLET_CONNECT_WALLET_ID;
|
|
344
|
+
const walletType = type === 1 ? "walletconnect" : "injected";
|
|
345
|
+
if (isWalletConnect !== (walletType === "walletconnect")) continue;
|
|
346
|
+
walletNameMap.set(id, name);
|
|
347
|
+
wallets.push({
|
|
348
|
+
id,
|
|
349
|
+
platform: isWalletConnect ? void 0 : _chunk4ENHC7G4js.parseWalletId.call(void 0, id).platform,
|
|
350
|
+
type: walletType,
|
|
351
|
+
name,
|
|
352
|
+
isConnected: isConnected === 1
|
|
353
|
+
});
|
|
354
|
+
}
|
|
355
|
+
const accounts = [];
|
|
356
|
+
for (const item of Array.isArray(data.a) ? data.a : []) {
|
|
357
|
+
if (!Array.isArray(item)) continue;
|
|
358
|
+
const [
|
|
359
|
+
walletId,
|
|
360
|
+
address,
|
|
361
|
+
name,
|
|
362
|
+
chainId,
|
|
363
|
+
polkadotAccountType,
|
|
364
|
+
platformCode
|
|
365
|
+
] = item;
|
|
366
|
+
if (!_chunk4ENHC7G4js.isValidWalletId.call(void 0, walletId) || typeof address !== "string" || !address)
|
|
367
|
+
continue;
|
|
368
|
+
const platform = platformCode != null ? fromCompactPlatform(platformCode) : walletId === _chunk4ENHC7G4js.WALLET_CONNECT_WALLET_ID ? void 0 : _chunk4ENHC7G4js.parseWalletId.call(void 0, walletId).platform;
|
|
369
|
+
if (!_chunk4ENHC7G4js.isWalletPlatform.call(void 0, platform)) continue;
|
|
370
|
+
accounts.push({
|
|
371
|
+
id: getWalletAccountId(walletId, address),
|
|
372
|
+
platform,
|
|
373
|
+
address,
|
|
374
|
+
name: _nullishCoalesce(name, () => ( void 0)),
|
|
375
|
+
chainId: _nullishCoalesce(chainId, () => ( void 0)),
|
|
376
|
+
polkadotAccountType: platform === "polkadot" ? fromCompactPolkadotAccountType(polkadotAccountType) : void 0,
|
|
377
|
+
walletId,
|
|
378
|
+
walletName: _nullishCoalesce(walletNameMap.get(walletId), () => ( walletId))
|
|
379
|
+
});
|
|
380
|
+
}
|
|
381
|
+
return {
|
|
382
|
+
autoReconnect: data.r,
|
|
383
|
+
cachedWallets: wallets,
|
|
384
|
+
cachedAccounts: accounts
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
var decodeStore = (raw, fallback) => {
|
|
388
|
+
try {
|
|
389
|
+
const parsed = JSON.parse(raw);
|
|
390
|
+
if (isCompactStore(parsed)) return fromCompactStore(parsed);
|
|
391
|
+
return parsed;
|
|
392
|
+
} catch (e4) {
|
|
393
|
+
return fallback;
|
|
394
|
+
}
|
|
395
|
+
};
|
|
396
|
+
var encodeStore = (data) => JSON.stringify(toCompactStore(data));
|
|
397
|
+
var createCompactCookieStorage = (initialCookies) => {
|
|
398
|
+
const base = _chunk4ENHC7G4js.cookieStorage.call(void 0, initialCookies);
|
|
399
|
+
return {
|
|
400
|
+
getItem: (key) => {
|
|
401
|
+
const raw = base.getItem(key);
|
|
402
|
+
if (!raw) return null;
|
|
403
|
+
const expanded = decodeStore(raw, DEFAULT_SETTINGS);
|
|
404
|
+
if (typeof document !== "undefined") {
|
|
405
|
+
try {
|
|
406
|
+
const parsed = JSON.parse(raw);
|
|
407
|
+
if (!isCompactStore(parsed)) {
|
|
408
|
+
base.setItem(key, encodeStore(expanded));
|
|
409
|
+
}
|
|
410
|
+
} catch (e5) {
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
return JSON.stringify(expanded);
|
|
414
|
+
},
|
|
415
|
+
setItem: (key, value) => {
|
|
416
|
+
const expanded = decodeStore(value, DEFAULT_SETTINGS);
|
|
417
|
+
base.setItem(key, encodeStore(expanded));
|
|
418
|
+
},
|
|
419
|
+
removeItem: base.removeItem,
|
|
420
|
+
subscribe: (key, callback) => {
|
|
421
|
+
const unsubscribe = _optionalChain([base, 'access', _15 => _15.subscribe, 'optionalCall', _16 => _16(key, (value) => {
|
|
422
|
+
if (!value) {
|
|
423
|
+
callback(null);
|
|
424
|
+
return;
|
|
425
|
+
}
|
|
426
|
+
const expanded = decodeStore(value, DEFAULT_SETTINGS);
|
|
427
|
+
callback(JSON.stringify(expanded));
|
|
428
|
+
})]);
|
|
429
|
+
return () => {
|
|
430
|
+
_optionalChain([unsubscribe, 'optionalCall', _17 => _17()]);
|
|
431
|
+
};
|
|
432
|
+
}
|
|
433
|
+
};
|
|
434
|
+
};
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
exports.isEthereumAddress = isEthereumAddress; exports.isSs58Address = isSs58Address; exports.isSolanaAddress = isSolanaAddress; exports.isValidAddress = isValidAddress; exports.getWalletAccountId = getWalletAccountId; exports.parseWalletAccountId = parseWalletAccountId; exports.KheopskitError = KheopskitError; exports.DEFAULT_STORAGE_KEY = DEFAULT_STORAGE_KEY; exports.resolveConfig = resolveConfig; exports.createKheopskitStore = createKheopskitStore; exports.getDefaultStore = getDefaultStore; exports.store = store;
|
|
450
|
+
//# sourceMappingURL=chunk-XQWJM3KC.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/kheopskit/kheopskit/packages/core/dist/chunk-XQWJM3KC.js","../src/utils/isEthereumAddress.ts","../src/utils/isSs58Address.ts","../src/utils/isSolanaAddress.ts","../src/utils/isValidAddress.ts","../src/utils/WalletAccountId.ts","../src/api/errors.ts","../src/api/config.ts","../src/api/store.ts","../src/utils/createStore.ts"],"names":["base58","store"],"mappings":"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","file":"/home/runner/work/kheopskit/kheopskit/packages/core/dist/chunk-XQWJM3KC.js","sourcesContent":[null,"import { keccak_256 } from \"@noble/hashes/sha3\";\n\nconst HEX_ADDRESS = /^0x[0-9a-fA-F]{40}$/;\nconst encoder = new TextEncoder();\n\n/**\n * Verifies the EIP-55 mixed-case checksum of an Ethereum address.\n * Dependency-free (keccak via @noble/hashes) so core stays decoupled from viem.\n */\nconst isChecksumValid = (address: string): boolean => {\n\tconst hex = address.slice(2);\n\tconst hash = keccak_256(encoder.encode(hex.toLowerCase()));\n\tfor (let i = 0; i < 40; i++) {\n\t\tconst char = hex.charAt(i);\n\t\tconst isLetter =\n\t\t\t(char >= \"a\" && char <= \"f\") || (char >= \"A\" && char <= \"F\");\n\t\tif (!isLetter) continue;\n\t\tconst byte = hash[i >> 1] ?? 0;\n\t\tconst nibble = i % 2 === 0 ? byte >> 4 : byte & 0x0f;\n\t\tconst isUpper = char <= \"F\";\n\t\tif (isUpper !== nibble >= 8) return false;\n\t}\n\treturn true;\n};\n\n/**\n * Returns true if `address` is a valid Ethereum address.\n *\n * Mirrors viem's `isAddress` (strict): the shape must be `0x` + 40 hex, and a\n * mixed-case address must pass the EIP-55 checksum. All-lowercase addresses are\n * accepted as non-checksummed.\n */\nexport const isEthereumAddress = (address: string): boolean => {\n\tif (!HEX_ADDRESS.test(address)) return false;\n\tif (address === address.toLowerCase()) return true;\n\treturn isChecksumValid(address);\n};\n","import { blake2b } from \"@noble/hashes/blake2b\";\nimport { base58 } from \"@scure/base\";\n\n// The \"SS58PRE\" prefix used in the SS58 checksum preimage.\nconst SS58PRE = new Uint8Array([0x53, 0x53, 0x35, 0x38, 0x50, 0x52, 0x45]);\n\n/**\n * Returns true if `address` is a valid SS58-encoded 32-byte account id (the\n * only form Substrate wallets inject), verifying the blake2b-512 checksum.\n *\n * Dependency-free (base58 via @scure/base, blake2b via @noble/hashes) so core\n * stays decoupled from polkadot-api.\n */\nexport const isSs58Address = (address: string): boolean => {\n\tif (!address) return false;\n\n\tlet decoded: Uint8Array;\n\ttry {\n\t\tdecoded = base58.decode(address);\n\t} catch {\n\t\treturn false;\n\t}\n\n\t// First byte encodes the network prefix; the high bit is reserved/invalid.\n\tconst firstByte = decoded[0];\n\tif (firstByte === undefined || firstByte & 0b1000_0000) return false;\n\t// The 0b0100_0000 bit marks a 2-byte prefix.\n\tconst prefixLength = firstByte & 0b0100_0000 ? 2 : 1;\n\n\t// AccountId32 layout: prefix + 32-byte pubkey + 2-byte checksum.\n\tif (decoded.length !== prefixLength + 32 + 2) return false;\n\n\tconst body = decoded.subarray(0, decoded.length - 2);\n\tconst preimage = new Uint8Array(SS58PRE.length + body.length);\n\tpreimage.set(SS58PRE);\n\tpreimage.set(body, SS58PRE.length);\n\tconst hash = blake2b(preimage, { dkLen: 64 });\n\n\treturn (\n\t\tdecoded[decoded.length - 2] === hash[0] &&\n\t\tdecoded[decoded.length - 1] === hash[1]\n\t);\n};\n","import { base58 } from \"@scure/base\";\n\n/**\n * Returns true if the value is a valid Solana address: a base58-encoded\n * 32-byte ed25519 public key.\n *\n * Solana addresses carry no checksum, so this is a pure base58 + length check.\n * Dependency-free (base58 via @scure/base) so core stays decoupled from\n * @solana/kit.\n */\nexport const isSolanaAddress = (address: string): boolean => {\n\tif (!address) return false;\n\ttry {\n\t\treturn base58.decode(address).length === 32;\n\t} catch {\n\t\treturn false;\n\t}\n};\n","import { isEthereumAddress } from \"./isEthereumAddress\";\nimport { isSolanaAddress } from \"./isSolanaAddress\";\nimport { isSs58Address } from \"./isSs58Address\";\n\nexport const isValidAddress = (address: string): boolean => {\n\tif (address.startsWith(\"0x\")) return isEthereumAddress(address);\n\t// SS58 (checksummed) and Solana (base58, no checksum) are disjoint: a\n\t// 32-byte Solana pubkey fails SS58 decoding, and an SS58 address decodes to\n\t// more than 32 bytes so it fails the Solana length check.\n\treturn isSs58Address(address) || isSolanaAddress(address);\n};\n","import { isValidAddress } from \"./isValidAddress\";\n\nexport type WalletAccountId = string;\n\nexport const getWalletAccountId = (\n\twalletId: string,\n\taddress: string,\n): WalletAccountId => {\n\tif (!walletId) throw new Error(\"Missing walletId\");\n\tif (!isValidAddress(address)) throw new Error(\"Invalid address\");\n\treturn `${walletId}::${address}`;\n};\n\nexport const parseWalletAccountId = (accountId: string) => {\n\tif (!accountId) throw new Error(\"Invalid walletAccountId\");\n\tconst [walletId, address] = accountId.split(\"::\");\n\tif (!walletId) throw new Error(\"Missing walletId\");\n\tif (!address || !isValidAddress(address)) throw new Error(\"Invalid address\");\n\treturn { walletId, address };\n};\n","import type { WalletId } from \"../utils/WalletId\";\n\n/**\n * Stable error codes thrown by kheopskit. Catch a {@link KheopskitError} and\n * branch on `error.code` instead of matching message strings.\n */\nexport type KheopskitErrorCode =\n\t/** `connect()` called on a wallet that is already connected. */\n\t| \"WALLET_ALREADY_CONNECTED\"\n\t/** `disconnect()` called on a wallet that is not connected. */\n\t| \"WALLET_NOT_CONNECTED\"\n\t/** The wallet does not advertise a capability kheopskit needs to proceed. */\n\t| \"FEATURE_NOT_SUPPORTED\"\n\t/** No active WalletConnect session for the requested operation. */\n\t| \"NO_SESSION\"\n\t/** No provider available for the requested namespace. */\n\t| \"NO_PROVIDER\"\n\t/** The requested chain cannot be used for this operation (e.g. a Solana cluster with no CAIP-2 id over WalletConnect). */\n\t| \"UNSUPPORTED_CHAIN\";\n\n/**\n * Error thrown by kheopskit wallet/account operations. Carries a stable\n * {@link KheopskitErrorCode} and, when relevant, the offending wallet id.\n *\n * @example\n * ```ts\n * try {\n * await wallet.connect();\n * } catch (error) {\n * if (error instanceof KheopskitError && error.code === \"WALLET_ALREADY_CONNECTED\") {\n * // ignore\n * } else throw error;\n * }\n * ```\n */\nexport class KheopskitError extends Error {\n\treadonly code: KheopskitErrorCode;\n\t/** The wallet id this error relates to, when applicable. */\n\treadonly walletId?: WalletId;\n\n\tconstructor(\n\t\tcode: KheopskitErrorCode,\n\t\tmessage: string,\n\t\toptions?: { walletId?: WalletId; cause?: unknown },\n\t) {\n\t\tsuper(`[kheopskit] ${message}`, { cause: options?.cause });\n\t\tthis.name = \"KheopskitError\";\n\t\tthis.code = code;\n\t\tthis.walletId = options?.walletId;\n\t}\n}\n","import type { KheopskitConfig, KheopskitPlatform } from \"./types\";\n\n/**\n * Default storage key for persisting wallet connection state.\n * Can be overridden via config.storageKey to avoid conflicts\n * when running multiple dapps on the same domain.\n */\nexport const DEFAULT_STORAGE_KEY = \"kheopskit\";\n\nconst DEFAULTS = {\n\tautoReconnect: true,\n\tdebug: false,\n\tstorageKey: DEFAULT_STORAGE_KEY,\n\thydrationGracePeriod: 500,\n} satisfies Omit<KheopskitConfig, \"platforms\" | \"walletConnect\">;\n\nexport const resolveConfig = <\n\tconst P extends readonly KheopskitPlatform[] = readonly KheopskitPlatform[],\n>(\n\tconfig?: Partial<KheopskitConfig<P>>,\n): KheopskitConfig<P> => {\n\tconst platforms = (config?.platforms ?? []) as P;\n\n\t// Guard the v4 breaking change: platforms are plugin instances, not strings.\n\t// Catches JS callers (no tsc) and gives agents a fix that names the doc.\n\tconst invalidPlatforms = (platforms as readonly unknown[]).filter(\n\t\t(p) =>\n\t\t\ttypeof p !== \"object\" ||\n\t\t\tp === null ||\n\t\t\ttypeof (p as { getWallets$?: unknown }).getWallets$ !== \"function\",\n\t);\n\tif (invalidPlatforms.length > 0) {\n\t\tthrow new Error(\n\t\t\t\"[kheopskit] config.platforms must contain plugin instances created by the \" +\n\t\t\t\t\"per-platform factories (e.g. platforms: [polkadot(), ethereum(), solana()] \" +\n\t\t\t\t'imported from \"@kheopskit/core/<platform>\"). ' +\n\t\t\t\t`Invalid entries: ${JSON.stringify(invalidPlatforms)}. ` +\n\t\t\t\t'String platform names like \"polkadot\" were removed in v4 — see MIGRATING_TO_V4.md.',\n\t\t);\n\t}\n\n\tif (platforms.length === 0) {\n\t\tconsole.warn(\n\t\t\t\"[kheopskit] No platforms configured; wallets and accounts will be empty. \" +\n\t\t\t\t'Pass e.g. platforms: [polkadot()] from \"@kheopskit/core/polkadot\".',\n\t\t);\n\t}\n\n\treturn Object.assign({}, DEFAULTS, config, { platforms });\n};\n","import { uniq } from \"lodash-es\";\nimport { createStore } from \"../utils/createStore\";\nimport { isWalletPlatform } from \"../utils/isWalletPlatform\";\nimport { cookieStorage, safeLocalStorage } from \"../utils/storage\";\nimport { getWalletAccountId } from \"../utils/WalletAccountId\";\nimport {\n\tisValidWalletId,\n\tparseWalletId,\n\tWALLET_CONNECT_WALLET_ID,\n\ttype WalletId,\n} from \"../utils/WalletId\";\nimport { DEFAULT_STORAGE_KEY } from \"./config\";\nimport type { CachedAccount, CachedWallet, WalletPlatform } from \"./types\";\n\ntype KheopskitStoreData = {\n\tautoReconnect?: WalletId[];\n\t/** Cached wallet state for SSR hydration to prevent UI flash */\n\tcachedWallets?: CachedWallet[];\n\t/** Cached account state for SSR hydration to prevent UI flash */\n\tcachedAccounts?: CachedAccount[];\n};\n\n// wallet type: 0=injected, 1=walletconnect\ntype CompactWalletEntry = [WalletId, string, 0 | 1, 0 | 1];\ntype CompactPolkadotAccountType = 0 | 1 | 2 | 3;\n// platform: 0=polkadot, 1=ethereum, 2=solana\ntype CompactPlatformCode = 0 | 1 | 2;\ntype CompactAccountEntry = [\n\tWalletId,\n\tstring,\n\tstring | null,\n\tnumber | null,\n\tCompactPolkadotAccountType | null,\n\t// Platform code. Newly written entries always include it (the WalletConnect\n\t// connector's walletId is platform-less, so platform can't be derived from\n\t// it); absent in entries written by older versions, where it's derived from\n\t// the walletId instead.\n\t(CompactPlatformCode | null)?,\n];\n\ntype CompactStoreV1 = {\n\tv: 1;\n\t// autoReconnect\n\tr?: WalletId[];\n\t// wallets: [id, name, isConnected(0|1), type(0=injected,1=walletconnect)?]\n\tw?: CompactWalletEntry[];\n\t// accounts: [walletId, address, name?, chainId?, polkadotType?, platform?]\n\ta?: CompactAccountEntry[];\n};\n\nconst DEFAULT_SETTINGS: KheopskitStoreData = {};\n\n/**\n * Validates a cached wallet read from persisted storage. Cached state may have\n * been written by an older (or corrupted) version with a different shape, so we\n * drop anything that wouldn't survive hydration/sort rather than letting it\n * throw at render time. Only the fields downstream code relies on are checked.\n */\nconst isValidCachedWallet = (value: unknown): value is CachedWallet => {\n\tif (!value || typeof value !== \"object\") return false;\n\tconst w = value as Record<string, unknown>;\n\tif (!isValidWalletId(w.id)) return false;\n\tif (typeof w.name !== \"string\" || typeof w.isConnected !== \"boolean\")\n\t\treturn false;\n\t// The WalletConnect connector is platform-less with a fixed id; drop stale\n\t// per-platform WC entries written by older versions.\n\tif (w.type === \"walletconnect\")\n\t\treturn w.id === WALLET_CONNECT_WALLET_ID && w.platform === undefined;\n\treturn w.type === \"injected\" && isWalletPlatform(w.platform);\n};\n\n/** Validates a cached account read from persisted storage. See {@link isValidCachedWallet}. */\nconst isValidCachedAccount = (value: unknown): value is CachedAccount => {\n\tif (!value || typeof value !== \"object\") return false;\n\tconst a = value as Record<string, unknown>;\n\treturn (\n\t\ttypeof a.id === \"string\" &&\n\t\t!!a.id &&\n\t\tisWalletPlatform(a.platform) &&\n\t\ttypeof a.address === \"string\" &&\n\t\t!!a.address &&\n\t\tisValidWalletId(a.walletId) &&\n\t\ttypeof a.walletName === \"string\"\n\t);\n};\n\nconst toCompactPolkadotAccountType = (\n\ttype: CachedAccount[\"polkadotAccountType\"],\n): CompactPolkadotAccountType | null => {\n\tswitch (type) {\n\t\tcase \"sr25519\":\n\t\t\treturn 0;\n\t\tcase \"ed25519\":\n\t\t\treturn 1;\n\t\tcase \"ecdsa\":\n\t\t\treturn 2;\n\t\tcase \"ethereum\":\n\t\t\treturn 3;\n\t\tdefault:\n\t\t\treturn null;\n\t}\n};\n\nconst fromCompactPolkadotAccountType = (\n\ttype: CompactPolkadotAccountType | null | undefined,\n): CachedAccount[\"polkadotAccountType\"] => {\n\tswitch (type) {\n\t\tcase 0:\n\t\t\treturn \"sr25519\";\n\t\tcase 1:\n\t\t\treturn \"ed25519\";\n\t\tcase 2:\n\t\t\treturn \"ecdsa\";\n\t\tcase 3:\n\t\t\treturn \"ethereum\";\n\t\tdefault:\n\t\t\treturn undefined;\n\t}\n};\n\nconst toCompactPlatform = (platform: WalletPlatform): CompactPlatformCode => {\n\tswitch (platform) {\n\t\tcase \"polkadot\":\n\t\t\treturn 0;\n\t\tcase \"ethereum\":\n\t\t\treturn 1;\n\t\tcase \"solana\":\n\t\t\treturn 2;\n\t}\n};\n\nconst fromCompactPlatform = (\n\tcode: CompactPlatformCode | null | undefined,\n): WalletPlatform | undefined => {\n\tswitch (code) {\n\t\tcase 0:\n\t\t\treturn \"polkadot\";\n\t\tcase 1:\n\t\t\treturn \"ethereum\";\n\t\tcase 2:\n\t\t\treturn \"solana\";\n\t\tdefault:\n\t\t\treturn undefined;\n\t}\n};\n\ntype CreateKheopskitStoreOptions = {\n\t/**\n\t * Cookie string for SSR hydration.\n\t * When provided, uses cookieStorage instead of localStorage.\n\t */\n\tssrCookies?: string;\n\t/**\n\t * Custom storage key to namespace the stored data.\n\t * @default \"kheopskit\"\n\t */\n\tstorageKey?: string;\n};\n\n/**\n * Creates a kheopskit store with the appropriate storage backend.\n * Uses cookieStorage when ssrCookies is provided (for SSR hydration),\n * otherwise falls back to safeLocalStorage.\n *\n * @param options - Configuration options for the store\n */\nexport const createKheopskitStore = (\n\toptions: CreateKheopskitStoreOptions = {},\n) => {\n\tconst { ssrCookies, storageKey = DEFAULT_STORAGE_KEY } = options;\n\tconst storage =\n\t\tssrCookies !== undefined\n\t\t\t? createCompactCookieStorage(ssrCookies)\n\t\t\t: safeLocalStorage;\n\tconst store = createStore(storageKey, DEFAULT_SETTINGS, storage);\n\n\tconst addEnabledWalletId = (walletId: WalletId) => {\n\t\tparseWalletId(walletId); // validate walletId\n\t\tstore.mutate((prev) => ({\n\t\t\t...prev,\n\t\t\tautoReconnect: uniq((prev.autoReconnect ?? []).concat(walletId)),\n\t\t}));\n\t};\n\n\tconst removeEnabledWalletId = (walletId: WalletId) => {\n\t\tstore.mutate((prev) => ({\n\t\t\t...prev,\n\t\t\tautoReconnect: uniq(\n\t\t\t\t(prev.autoReconnect ?? []).filter((id) => id !== walletId),\n\t\t\t),\n\t\t}));\n\t};\n\n\tconst getCachedState = () => {\n\t\t// `store.get()` returns whatever JSON was persisted — it may be from an\n\t\t// older version, a different shape, or outright corrupt. Read defensively:\n\t\t// coerce non-objects/arrays to empty and drop any entry that fails\n\t\t// validation, so stale cache degrades to \"start fresh\" instead of throwing\n\t\t// during hydration (which renders eagerly, so a throw blanks the dapp).\n\t\tconst data = store.get() as Partial<KheopskitStoreData> | null | undefined;\n\t\tconst cachedWallets = Array.isArray(data?.cachedWallets)\n\t\t\t? data.cachedWallets\n\t\t\t: [];\n\t\tconst cachedAccounts = Array.isArray(data?.cachedAccounts)\n\t\t\t? data.cachedAccounts\n\t\t\t: [];\n\t\treturn {\n\t\t\twallets: cachedWallets.filter(isValidCachedWallet),\n\t\t\taccounts: cachedAccounts.filter(isValidCachedAccount),\n\t\t};\n\t};\n\n\tconst setCachedState = (\n\t\twallets: CachedWallet[],\n\t\taccounts: CachedAccount[],\n\t) => {\n\t\tstore.mutate((prev) => ({\n\t\t\t...prev,\n\t\t\tcachedWallets: wallets,\n\t\t\tcachedAccounts: accounts,\n\t\t}));\n\t};\n\n\treturn {\n\t\tobservable: store.observable,\n\t\taddEnabledWalletId,\n\t\tremoveEnabledWalletId,\n\t\tgetCachedState,\n\t\tsetCachedState,\n\t};\n};\n\nexport type KheopskitStore = ReturnType<typeof createKheopskitStore>;\n\n/**\n * Cached default store instance, anchored on globalThis so it stays a single\n * instance even if this module is duplicated across bundle chunks (e.g. CJS\n * subpath entries). Lazily initialized on first access to be SSR-safe.\n */\nconst DEFAULT_STORE_SYMBOL = Symbol.for(\"kheopskit.defaultStore\");\n\n/**\n * Gets the default store, creating it on first access.\n * Uses localStorage on client, noop on server.\n * Lazily initialized to avoid SSR issues with module-level code.\n */\nexport const getDefaultStore = (): KheopskitStore => {\n\tconst g = globalThis as unknown as Record<symbol, KheopskitStore | undefined>;\n\tif (!g[DEFAULT_STORE_SYMBOL]) {\n\t\tg[DEFAULT_STORE_SYMBOL] = createKheopskitStore();\n\t}\n\treturn g[DEFAULT_STORE_SYMBOL];\n};\n\n/**\n * @deprecated Use createKheopskitStore() or getDefaultStore() instead.\n * This export is kept for backward compatibility but may cause SSR issues\n * if imported at module level in server environments.\n */\nexport const store = {\n\tget observable() {\n\t\treturn getDefaultStore().observable;\n\t},\n\taddEnabledWalletId: (walletId: WalletId) =>\n\t\tgetDefaultStore().addEnabledWalletId(walletId),\n\tremoveEnabledWalletId: (walletId: WalletId) =>\n\t\tgetDefaultStore().removeEnabledWalletId(walletId),\n\tgetCachedState: () => getDefaultStore().getCachedState(),\n\tsetCachedState: (wallets: CachedWallet[], accounts: CachedAccount[]) =>\n\t\tgetDefaultStore().setCachedState(wallets, accounts),\n};\n\nconst isCompactStore = (value: unknown): value is CompactStoreV1 => {\n\tif (!value || typeof value !== \"object\" || Array.isArray(value)) return false;\n\tif (\"cachedWallets\" in value || \"cachedAccounts\" in value) return false;\n\treturn \"v\" in value || \"w\" in value || \"a\" in value || \"r\" in value;\n};\n\nconst toCompactStore = (data: KheopskitStoreData): CompactStoreV1 => {\n\tconst wallets = data.cachedWallets?.map(\n\t\t(wallet): CompactWalletEntry => [\n\t\t\twallet.id,\n\t\t\twallet.name,\n\t\t\twallet.isConnected ? 1 : 0,\n\t\t\twallet.type === \"walletconnect\" ? 1 : 0,\n\t\t],\n\t);\n\n\tconst accounts = data.cachedAccounts?.map(\n\t\t(account): CompactAccountEntry => [\n\t\t\taccount.walletId,\n\t\t\taccount.address,\n\t\t\taccount.name ?? null,\n\t\t\taccount.chainId ?? null,\n\t\t\ttoCompactPolkadotAccountType(account.polkadotAccountType),\n\t\t\ttoCompactPlatform(account.platform),\n\t\t],\n\t);\n\n\treturn {\n\t\tv: 1,\n\t\tr: data.autoReconnect,\n\t\tw: wallets?.length ? wallets : undefined,\n\t\ta: accounts?.length ? accounts : undefined,\n\t};\n};\n\nconst fromCompactStore = (data: CompactStoreV1): KheopskitStoreData => {\n\tconst walletNameMap = new Map<WalletId, string>();\n\n\t// Decode defensively: a compact payload may be malformed (older/corrupt\n\t// cookie, hand-edited). Skip entries with an unparseable wallet id rather\n\t// than throwing, which would crash store initialisation.\n\tconst wallets: CachedWallet[] = [];\n\tfor (const item of Array.isArray(data.w) ? data.w : []) {\n\t\tif (!Array.isArray(item)) continue;\n\t\tconst [id, name, isConnected, type] = item;\n\t\tif (!isValidWalletId(id)) continue;\n\t\tconst isWalletConnect = id === WALLET_CONNECT_WALLET_ID;\n\t\tconst walletType = type === 1 ? \"walletconnect\" : \"injected\";\n\t\t// Keep id/type consistent: the platform-less connector uses the fixed WC\n\t\t// id; everything else is a platform-prefixed injected wallet. Drop stale\n\t\t// mismatches (e.g. per-platform WC ids from older versions).\n\t\tif (isWalletConnect !== (walletType === \"walletconnect\")) continue;\n\t\twalletNameMap.set(id, name);\n\t\twallets.push({\n\t\t\tid,\n\t\t\tplatform: isWalletConnect ? undefined : parseWalletId(id).platform,\n\t\t\ttype: walletType,\n\t\t\tname,\n\t\t\tisConnected: isConnected === 1,\n\t\t});\n\t}\n\n\tconst accounts: CachedAccount[] = [];\n\tfor (const item of Array.isArray(data.a) ? data.a : []) {\n\t\tif (!Array.isArray(item)) continue;\n\t\tconst [\n\t\t\twalletId,\n\t\t\taddress,\n\t\t\tname,\n\t\t\tchainId,\n\t\t\tpolkadotAccountType,\n\t\t\tplatformCode,\n\t\t] = item;\n\t\tif (!isValidWalletId(walletId) || typeof address !== \"string\" || !address)\n\t\t\tcontinue;\n\t\t// Prefer the explicit platform code; fall back to deriving it from the\n\t\t// walletId for entries written before the code existed (never WC ones).\n\t\tconst platform =\n\t\t\tplatformCode != null\n\t\t\t\t? fromCompactPlatform(platformCode)\n\t\t\t\t: walletId === WALLET_CONNECT_WALLET_ID\n\t\t\t\t\t? undefined\n\t\t\t\t\t: parseWalletId(walletId).platform;\n\t\tif (!isWalletPlatform(platform)) continue;\n\t\taccounts.push({\n\t\t\tid: getWalletAccountId(walletId, address),\n\t\t\tplatform,\n\t\t\taddress,\n\t\t\tname: name ?? undefined,\n\t\t\tchainId: chainId ?? undefined,\n\t\t\tpolkadotAccountType:\n\t\t\t\tplatform === \"polkadot\"\n\t\t\t\t\t? fromCompactPolkadotAccountType(polkadotAccountType)\n\t\t\t\t\t: undefined,\n\t\t\twalletId,\n\t\t\twalletName: walletNameMap.get(walletId) ?? walletId,\n\t\t});\n\t}\n\n\treturn {\n\t\tautoReconnect: data.r,\n\t\tcachedWallets: wallets,\n\t\tcachedAccounts: accounts,\n\t};\n};\n\nconst decodeStore = (raw: string, fallback: KheopskitStoreData) => {\n\ttry {\n\t\tconst parsed = JSON.parse(raw) as unknown;\n\t\tif (isCompactStore(parsed)) return fromCompactStore(parsed);\n\t\treturn parsed as KheopskitStoreData;\n\t} catch {\n\t\treturn fallback;\n\t}\n};\n\nconst encodeStore = (data: KheopskitStoreData): string =>\n\tJSON.stringify(toCompactStore(data));\n\nconst createCompactCookieStorage = (initialCookies?: string) => {\n\tconst base = cookieStorage(initialCookies);\n\n\treturn {\n\t\tgetItem: (key: string) => {\n\t\t\tconst raw = base.getItem(key);\n\t\t\tif (!raw) return null;\n\t\t\tconst expanded = decodeStore(raw, DEFAULT_SETTINGS);\n\t\t\tif (typeof document !== \"undefined\") {\n\t\t\t\ttry {\n\t\t\t\t\tconst parsed = JSON.parse(raw) as unknown;\n\t\t\t\t\tif (!isCompactStore(parsed)) {\n\t\t\t\t\t\tbase.setItem(key, encodeStore(expanded));\n\t\t\t\t\t}\n\t\t\t\t} catch {\n\t\t\t\t\t// Ignore malformed cookie during migration\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn JSON.stringify(expanded);\n\t\t},\n\t\tsetItem: (key: string, value: string) => {\n\t\t\tconst expanded = decodeStore(value, DEFAULT_SETTINGS);\n\t\t\tbase.setItem(key, encodeStore(expanded));\n\t\t},\n\t\tremoveItem: base.removeItem,\n\t\tsubscribe: (key: string, callback: (value: string | null) => void) => {\n\t\t\tconst unsubscribe = base.subscribe?.(key, (value) => {\n\t\t\t\tif (!value) {\n\t\t\t\t\tcallback(null);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tconst expanded = decodeStore(value, DEFAULT_SETTINGS);\n\t\t\t\tcallback(JSON.stringify(expanded));\n\t\t\t});\n\t\t\treturn () => {\n\t\t\t\tunsubscribe?.();\n\t\t\t};\n\t\t},\n\t};\n};\n","import { BehaviorSubject } from \"rxjs\";\nimport { type SyncableStorage, safeLocalStorage } from \"./storage\";\n\nexport const createStore = <T>(\n\tkey: string,\n\tdefaultValue: T,\n\tstorage: SyncableStorage = safeLocalStorage,\n) => {\n\tconst subject = new BehaviorSubject<T>(\n\t\tgetStoredData(key, defaultValue, storage),\n\t);\n\n\t// Cross-tab sync via storage.subscribe (uses storage event for localStorage, BroadcastChannel for cookies)\n\t// Only subscribe if window is available (client-side) and storage supports it\n\tlet unsubscribeStorage: (() => void) | undefined;\n\tif (typeof window !== \"undefined\" && storage.subscribe) {\n\t\tunsubscribeStorage = storage.subscribe(key, (newValue) => {\n\t\t\tsubject.next(parseData(newValue, defaultValue));\n\t\t});\n\t}\n\n\tconst update = (val: T) => {\n\t\tsetStoredData(key, val, storage);\n\t\tsubject.next(val);\n\t};\n\n\treturn {\n\t\tobservable: subject.asObservable(),\n\t\tset: (val: T) => update(val),\n\t\tmutate: (transform: (prev: T) => T) =>\n\t\t\tupdate(transform(subject.getValue())),\n\t\tget: () => structuredClone(subject.getValue()),\n\t\t/**\n\t\t * Cleanup subscriptions. Call this when the store is no longer needed.\n\t\t */\n\t\tdestroy: () => {\n\t\t\tunsubscribeStorage?.();\n\t\t\tsubject.complete();\n\t\t},\n\t};\n};\n\nconst parseData = <T>(str: string | null, defaultValue: T): T => {\n\ttry {\n\t\tif (str) return JSON.parse(str);\n\t} catch {\n\t\t// invalid data\n\t}\n\treturn defaultValue;\n};\n\nconst getStoredData = <T>(\n\tkey: string,\n\tdefaultValue: T,\n\tstorage: SyncableStorage,\n): T => {\n\tconst str = storage.getItem(key);\n\treturn parseData(str, defaultValue);\n};\n\nconst setStoredData = <T>(key: string, val: T, storage: SyncableStorage) => {\n\tconst str = JSON.stringify(val);\n\tstorage.setItem(key, str);\n};\n"]}
|