@talken/talkenkit 2.4.9 → 2.4.11

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.
Files changed (51) hide show
  1. package/dist/abcWallet-OQWH4ES2.js +184 -0
  2. package/dist/abcWallet-PP2WTSDI.js +184 -0
  3. package/dist/chunk-7FKWLUOV.js +6883 -0
  4. package/dist/chunk-JZQXBVCJ.js +6883 -0
  5. package/dist/components/RainbowKitProvider/InternalPinProvider.d.ts +2 -1
  6. package/dist/contexts/MultiChainContext.d.ts +2 -0
  7. package/dist/index.js +168 -134
  8. package/dist/wallets/walletConnectors/abcWallet/abcApi.js +3 -3
  9. package/dist/wallets/walletConnectors/abcWallet/abcBitcoinConnector.js +3 -3
  10. package/dist/wallets/walletConnectors/abcWallet/abcConnector.js +5 -5
  11. package/dist/wallets/walletConnectors/abcWallet/abcProvider.js +3 -3
  12. package/dist/wallets/walletConnectors/abcWallet/abcSolanaWalletAdapter.js +5 -5
  13. package/dist/wallets/walletConnectors/abcWallet/abcWallet.js +6 -6
  14. package/dist/wallets/walletConnectors/abcWallet/api/AuthApi.js +4 -4
  15. package/dist/wallets/walletConnectors/abcWallet/api/BaseApiClient.js +3 -3
  16. package/dist/wallets/walletConnectors/abcWallet/api/BitcoinApi.js +4 -4
  17. package/dist/wallets/walletConnectors/abcWallet/api/SigningApi.js +4 -4
  18. package/dist/wallets/walletConnectors/abcWallet/api/SolanaApi.js +4 -4
  19. package/dist/wallets/walletConnectors/abcWallet/api/TransactionApi.js +4 -4
  20. package/dist/wallets/walletConnectors/abcWallet/api/WalletApi.js +4 -4
  21. package/dist/wallets/walletConnectors/abcWallet/api/index.js +10 -10
  22. package/dist/wallets/walletConnectors/abcWallet/index.js +23 -23
  23. package/dist/wallets/walletConnectors/abcWallet/utils.js +2 -2
  24. package/dist/wallets/walletConnectors/abcWallet/walletGeneration.js +1 -1
  25. package/dist/wallets/walletConnectors/berasigWallet/berasigWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/binanceWallet/binanceWallet.js +2 -2
  28. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  29. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/chunk-IL4WOWNJ.js +327 -0
  31. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  32. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  33. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/index.js +84 -84
  38. package/dist/wallets/walletConnectors/iopayWallet/iopayWallet.js +2 -2
  39. package/dist/wallets/walletConnectors/kaiaWallet/kaiaWallet.js +2 -2
  40. package/dist/wallets/walletConnectors/kaikasWallet/kaikasWallet.js +2 -2
  41. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  42. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  43. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  44. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  45. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  46. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  47. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  48. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  49. package/dist/wallets/walletConnectors/zealWallet/zealWallet.js +2 -2
  50. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  51. package/package.json +2 -2
@@ -0,0 +1,327 @@
1
+ "use client";
2
+ import {
3
+ AbcError
4
+ } from "./chunk-RQIUWXDF.js";
5
+
6
+ // src/wallets/walletConnectors/abcWallet/walletGeneration.ts
7
+ async function generateMpcWallets(client, uid, hashedPin, evmChainId = 1, bitcoinNetwork = "bitcoin") {
8
+ try {
9
+ const evmWallet = await generateEvmWallet(
10
+ client,
11
+ uid,
12
+ hashedPin,
13
+ evmChainId
14
+ );
15
+ const [solanaWallet, bitcoinWallet] = await Promise.all([
16
+ // Solana wallet (Ed25519) - separate V3 wallet
17
+ generateSolanaWallet(client, hashedPin),
18
+ // Bitcoin wallet - converts EVM pubkey to Bitcoin address
19
+ generateBitcoinWallet(evmWallet, client, bitcoinNetwork)
20
+ ]);
21
+ return { evmWallet, solanaWallet, bitcoinWallet };
22
+ } catch (error) {
23
+ console.error("[MpcWallets] \u274C Generation failed:", error.message);
24
+ throw new AbcError(
25
+ "WALLET_NOT_FOUND" /* WALLET_NOT_FOUND */,
26
+ `Failed to generate MPC wallets: ${error.message}`,
27
+ { originalError: error }
28
+ );
29
+ }
30
+ }
31
+ async function recoverMpcWallets(client, uid, hashedPin, evmChainId = 1, bitcoinNetwork = "bitcoin") {
32
+ try {
33
+ console.log("[MpcWallets] \u{1F527} Starting wallet recovery...");
34
+ const evmWallet = await recoverEvmWallet(
35
+ client,
36
+ uid,
37
+ hashedPin,
38
+ evmChainId
39
+ );
40
+ console.log("[MpcWallets] \u2705 EVM wallet recovered");
41
+ const [solanaWallet, bitcoinWallet] = await Promise.all([
42
+ // Solana wallet (Ed25519) - separate V3 wallet
43
+ recoverSolanaWallet(client, hashedPin),
44
+ // Bitcoin wallet - converts EVM pubkey to Bitcoin address
45
+ recoverBitcoinWallet(evmWallet, client, bitcoinNetwork)
46
+ ]);
47
+ console.log("[MpcWallets] \u2705 All wallets recovered successfully");
48
+ return { evmWallet, solanaWallet, bitcoinWallet };
49
+ } catch (error) {
50
+ console.error("[MpcWallets] \u274C Recovery failed:", error.message);
51
+ throw new AbcError(
52
+ "WALLET_NOT_FOUND" /* WALLET_NOT_FOUND */,
53
+ `Failed to recover MPC wallets: ${error.message}`,
54
+ { originalError: error }
55
+ );
56
+ }
57
+ }
58
+ async function generateEvmWallet(client, uid, hashedPin, chainId) {
59
+ try {
60
+ let wallet;
61
+ if ("generateOrRecoverWallet" in client) {
62
+ wallet = await client.generateOrRecoverWallet({
63
+ uid,
64
+ pin: hashedPin,
65
+ chainId
66
+ });
67
+ } else {
68
+ const walletApi = client.wallet;
69
+ if (!walletApi) {
70
+ throw new Error("Wallet API not available in client");
71
+ }
72
+ wallet = await walletApi.generateOrRecoverWallet({
73
+ uid,
74
+ pin: hashedPin,
75
+ chainId
76
+ });
77
+ }
78
+ return wallet;
79
+ } catch (error) {
80
+ console.error("[EVM] Generation failed:", error.message);
81
+ throw new AbcError(
82
+ "WALLET_NOT_FOUND" /* WALLET_NOT_FOUND */,
83
+ `EVM wallet generation failed: ${error.message}`,
84
+ { chainId, originalError: error }
85
+ );
86
+ }
87
+ }
88
+ async function generateSolanaWallet(client, hashedPin) {
89
+ try {
90
+ let wallet;
91
+ if ("generateSolanaWallet" in client) {
92
+ wallet = await client.generateSolanaWallet(hashedPin);
93
+ } else {
94
+ const solanaApi = client.solana;
95
+ if (!solanaApi) {
96
+ throw new Error("Solana API not available in client");
97
+ }
98
+ wallet = await solanaApi.generateSolanaWallet(hashedPin);
99
+ }
100
+ return wallet;
101
+ } catch (error) {
102
+ const errorMessage = error.message || "";
103
+ const errorDetails = JSON.stringify(error.details || {});
104
+ const isConflict = errorMessage.includes("409") || errorMessage.includes("already exists") || errorMessage.includes("duplicate key") || errorDetails.includes("409") || errorDetails.includes("already exists") || errorDetails.includes("duplicate key");
105
+ if (isConflict) {
106
+ console.log("[Solana] Wallet already exists, recovering...");
107
+ return recoverSolanaWallet(client, hashedPin);
108
+ }
109
+ console.error("[Solana] Generation failed:", error.message);
110
+ throw new AbcError(
111
+ "WALLET_NOT_FOUND" /* WALLET_NOT_FOUND */,
112
+ `Solana wallet generation failed: ${error.message}`,
113
+ { originalError: error }
114
+ );
115
+ }
116
+ }
117
+ async function generateBitcoinWallet(evmWallet, client, network) {
118
+ try {
119
+ console.log("[Bitcoin] \u{1F527} Converting EVM pubkey to Bitcoin address...");
120
+ const bitcoinApi = "bitcoin" in client ? client.bitcoin : null;
121
+ if (!bitcoinApi) {
122
+ throw new Error("Bitcoin API not available in client");
123
+ }
124
+ const publicKey = evmWallet.pubkey || "";
125
+ if (!publicKey) {
126
+ throw new Error("Public key not found in EVM wallet");
127
+ }
128
+ const bitcoinAddress = await bitcoinApi.getBitcoinAddress(
129
+ publicKey,
130
+ network,
131
+ "bech32"
132
+ // Native SegWit (recommended)
133
+ );
134
+ console.log(
135
+ "[Bitcoin] \u2705 Address generated:",
136
+ `${bitcoinAddress.substring(0, 6)}...${bitcoinAddress.substring(bitcoinAddress.length - 4)}`
137
+ );
138
+ return {
139
+ uid: evmWallet.uid,
140
+ sessionId: evmWallet.keyId,
141
+ // Use keyId as sessionId
142
+ shareId: evmWallet.keyId,
143
+ // Use keyId as shareId
144
+ publicKey,
145
+ address: bitcoinAddress,
146
+ addressType: "bech32",
147
+ keyId: evmWallet.keyId,
148
+ encryptedShare: evmWallet.encryptedShare,
149
+ network
150
+ };
151
+ } catch (error) {
152
+ console.error("[Bitcoin] \u274C Address generation failed:", error.message);
153
+ throw new AbcError(
154
+ "WALLET_NOT_FOUND" /* WALLET_NOT_FOUND */,
155
+ `Bitcoin address generation failed: ${error.message}`,
156
+ { network, originalError: error }
157
+ );
158
+ }
159
+ }
160
+ async function recoverEvmWallet(client, uid, hashedPin, chainId) {
161
+ console.log("\u{1F527} [EVM] Recovering EVM wallet...");
162
+ try {
163
+ let wallet;
164
+ if ("generateOrRecoverWallet" in client) {
165
+ wallet = await client.generateOrRecoverWallet({
166
+ uid,
167
+ pin: hashedPin,
168
+ chainId
169
+ });
170
+ } else {
171
+ const walletApi = client.wallet;
172
+ if (!walletApi) {
173
+ throw new Error("Wallet API not available in client");
174
+ }
175
+ wallet = await walletApi.generateOrRecoverWallet({
176
+ uid,
177
+ pin: hashedPin,
178
+ chainId
179
+ });
180
+ }
181
+ console.log(
182
+ "\u2705 [EVM] Wallet recovered:",
183
+ `${wallet.address.substring(0, 6)}...${wallet.address.substring(wallet.address.length - 4)}`
184
+ );
185
+ return wallet;
186
+ } catch (error) {
187
+ console.error("\u274C [EVM] Recovery failed:", error.message);
188
+ throw new AbcError(
189
+ "WALLET_NOT_FOUND" /* WALLET_NOT_FOUND */,
190
+ `EVM wallet recovery failed: ${error.message}`,
191
+ { chainId, originalError: error }
192
+ );
193
+ }
194
+ }
195
+ async function recoverSolanaWallet(client, hashedPin) {
196
+ console.log("\u{1F527} [Solana] Recovering Solana wallet...");
197
+ try {
198
+ let wallet;
199
+ if ("generateSolanaWallet" in client) {
200
+ wallet = await client.generateSolanaWallet(hashedPin, true);
201
+ } else {
202
+ const solanaApi = client.solana;
203
+ if (!solanaApi) {
204
+ throw new Error("Solana API not available in client");
205
+ }
206
+ wallet = await solanaApi.recoverSolanaWallet(hashedPin);
207
+ }
208
+ console.log(
209
+ "\u2705 [Solana] Wallet recovered:",
210
+ `${wallet.address.substring(0, 6)}...${wallet.address.substring(wallet.address.length - 4)}`
211
+ );
212
+ return wallet;
213
+ } catch (error) {
214
+ console.error("\u274C [Solana] Recovery failed:", error.message);
215
+ throw new AbcError(
216
+ "WALLET_NOT_FOUND" /* WALLET_NOT_FOUND */,
217
+ `Solana wallet recovery failed: ${error.message}`,
218
+ { originalError: error }
219
+ );
220
+ }
221
+ }
222
+ async function recoverBitcoinWallet(evmWallet, client, network) {
223
+ try {
224
+ console.log("[Bitcoin] \u{1F527} Converting EVM pubkey to Bitcoin address...");
225
+ const bitcoinApi = "bitcoin" in client ? client.bitcoin : null;
226
+ if (!bitcoinApi) {
227
+ throw new Error("Bitcoin API not available in client");
228
+ }
229
+ const publicKey = evmWallet.pubkey || "";
230
+ if (!publicKey) {
231
+ throw new Error("Public key not found in EVM wallet");
232
+ }
233
+ const bitcoinAddress = await bitcoinApi.getBitcoinAddress(
234
+ publicKey,
235
+ network,
236
+ "bech32"
237
+ // Native SegWit (recommended)
238
+ );
239
+ console.log(
240
+ "[Bitcoin] \u2705 Address recovered:",
241
+ `${bitcoinAddress.substring(0, 6)}...${bitcoinAddress.substring(bitcoinAddress.length - 4)}`
242
+ );
243
+ return {
244
+ uid: evmWallet.uid,
245
+ sessionId: evmWallet.keyId,
246
+ // Use keyId as sessionId
247
+ shareId: evmWallet.keyId,
248
+ // Use keyId as shareId
249
+ publicKey,
250
+ address: bitcoinAddress,
251
+ addressType: "bech32",
252
+ keyId: evmWallet.keyId,
253
+ encryptedShare: evmWallet.encryptedShare,
254
+ network
255
+ };
256
+ } catch (error) {
257
+ console.error("[Bitcoin] \u274C Address recovery failed:", error.message);
258
+ throw new AbcError(
259
+ "WALLET_NOT_FOUND" /* WALLET_NOT_FOUND */,
260
+ `Bitcoin address recovery failed: ${error.message}`,
261
+ { network, originalError: error }
262
+ );
263
+ }
264
+ }
265
+ function validateMpcWallets(result) {
266
+ const errors = [];
267
+ if (!result.evmWallet) {
268
+ errors.push("EVM wallet is missing");
269
+ } else {
270
+ if (!result.evmWallet.address || !result.evmWallet.address.startsWith("0x")) {
271
+ errors.push("Invalid EVM wallet address");
272
+ }
273
+ if (!result.evmWallet.keyId) {
274
+ errors.push("EVM wallet missing keyId");
275
+ }
276
+ if (!result.evmWallet.encryptedShare) {
277
+ errors.push("EVM wallet missing encryptedShare");
278
+ }
279
+ }
280
+ if (!result.solanaWallet) {
281
+ errors.push("Solana wallet is missing");
282
+ } else {
283
+ if (!result.solanaWallet.address) {
284
+ errors.push("Invalid Solana wallet address");
285
+ }
286
+ if (!result.solanaWallet.publicKey) {
287
+ errors.push("Solana wallet missing publicKey");
288
+ }
289
+ if (!result.solanaWallet.keyId) {
290
+ errors.push("Solana wallet missing keyId");
291
+ }
292
+ }
293
+ if (!result.bitcoinWallet) {
294
+ errors.push("Bitcoin wallet is missing");
295
+ } else {
296
+ const addr = result.bitcoinWallet.address;
297
+ const type = result.bitcoinWallet.addressType;
298
+ if (!addr) {
299
+ errors.push("Invalid Bitcoin wallet address");
300
+ }
301
+ if (!result.bitcoinWallet.publicKey) {
302
+ errors.push("Bitcoin wallet missing publicKey");
303
+ }
304
+ if (!result.bitcoinWallet.keyId) {
305
+ errors.push("Bitcoin wallet missing keyId");
306
+ }
307
+ if (type === "bech32" && !addr.startsWith("bc1q")) {
308
+ errors.push("Invalid Bech32 address format (expected bc1q prefix)");
309
+ } else if (type === "p2pkh" && !addr.startsWith("1")) {
310
+ errors.push("Invalid P2PKH address format (expected 1 prefix)");
311
+ } else if (type === "p2sh" && !addr.startsWith("3")) {
312
+ errors.push("Invalid P2SH address format (expected 3 prefix)");
313
+ } else if (type === "taproot" && !addr.startsWith("bc1p")) {
314
+ errors.push("Invalid Taproot address format (expected bc1p prefix)");
315
+ }
316
+ }
317
+ return {
318
+ valid: errors.length === 0,
319
+ errors
320
+ };
321
+ }
322
+
323
+ export {
324
+ generateMpcWallets,
325
+ recoverMpcWallets,
326
+ validateMpcWallets
327
+ };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  clvWallet
4
- } from "../chunk-3IVTKZ7V.js";
5
- import "../chunk-MBBGZGXF.js";
4
+ } from "../chunk-DPME4O44.js";
6
5
  import "../chunk-PODFK4OS.js";
6
+ import "../chunk-MBBGZGXF.js";
7
7
  export {
8
8
  clvWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coin98Wallet
4
- } from "../chunk-GILMNC3J.js";
5
- import "../chunk-MBBGZGXF.js";
4
+ } from "../chunk-ZFVYS64S.js";
6
5
  import "../chunk-PODFK4OS.js";
6
+ import "../chunk-MBBGZGXF.js";
7
7
  export {
8
8
  coin98Wallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coreWallet
4
- } from "../chunk-FBI7UGNO.js";
5
- import "../chunk-MBBGZGXF.js";
4
+ } from "../chunk-I6ONK6DO.js";
6
5
  import "../chunk-PODFK4OS.js";
6
+ import "../chunk-MBBGZGXF.js";
7
7
  export {
8
8
  coreWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  foxWallet
4
- } from "../chunk-K6GEK4JB.js";
5
- import "../chunk-MBBGZGXF.js";
4
+ } from "../chunk-E4UMOJTY.js";
6
5
  import "../chunk-PODFK4OS.js";
6
+ import "../chunk-MBBGZGXF.js";
7
7
  export {
8
8
  foxWallet
9
9
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  frontierWallet
4
- } from "../chunk-JWO4ZQLK.js";
4
+ } from "../chunk-NHZMJSPE.js";
5
5
  import "../chunk-RETKWSKD.js";
6
- import "../chunk-MBBGZGXF.js";
7
6
  import "../chunk-PODFK4OS.js";
7
+ import "../chunk-MBBGZGXF.js";
8
8
  export {
9
9
  frontierWallet
10
10
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  gateWallet
4
- } from "../chunk-K6UZPSBG.js";
4
+ } from "../chunk-PKSDTWUF.js";
5
5
  import "../chunk-RETKWSKD.js";
6
- import "../chunk-MBBGZGXF.js";
7
6
  import "../chunk-PODFK4OS.js";
7
+ import "../chunk-MBBGZGXF.js";
8
8
  export {
9
9
  gateWallet
10
10
  };
@@ -1,103 +1,103 @@
1
1
  "use client";
2
2
  import {
3
3
  abcWallet
4
- } from "./chunk-AGC7JS5M.js";
5
- import "./chunk-HJFZF4V3.js";
6
- import "./chunk-CZVBS7QE.js";
7
- import "./chunk-YX4O33NC.js";
4
+ } from "./chunk-GZFBNALD.js";
5
+ import "./chunk-KKCRCQNN.js";
6
+ import "./chunk-2NVHWZUE.js";
7
+ import "./chunk-NUAZNCMH.js";
8
8
  import "./chunk-4PCVQBFZ.js";
9
9
  import "./chunk-NDYGTKP5.js";
10
10
  import "./chunk-A7FIBI6X.js";
11
- import "./chunk-TYUEB4VT.js";
12
- import "./chunk-VETRBBA2.js";
11
+ import "./chunk-5RSS3SRV.js";
13
12
  import "./chunk-RQIUWXDF.js";
13
+ import "./chunk-VETRBBA2.js";
14
14
  import {
15
- uniswapWallet
16
- } from "./chunk-DLDZUVTB.js";
15
+ trustWallet
16
+ } from "./chunk-EM6BREIH.js";
17
17
  import {
18
18
  valoraWallet
19
19
  } from "./chunk-CVUEWUDI.js";
20
20
  import {
21
- tokenPocketWallet
22
- } from "./chunk-5NM2LK2G.js";
21
+ walletConnectWallet
22
+ } from "./chunk-KU5R3WAJ.js";
23
23
  import {
24
24
  wigwamWallet
25
25
  } from "./chunk-EFYKBPOB.js";
26
+ import {
27
+ talismanWallet
28
+ } from "./chunk-B4IG5R5M.js";
26
29
  import {
27
30
  xdefiWallet
28
31
  } from "./chunk-26RJNF7V.js";
29
32
  import {
30
- walletConnectWallet
31
- } from "./chunk-KU5R3WAJ.js";
33
+ zealWallet
34
+ } from "./chunk-DVLTKWTZ.js";
32
35
  import {
33
36
  zerionWallet
34
- } from "./chunk-53IBFGVW.js";
35
- import {
36
- zealWallet
37
- } from "./chunk-SCOX5RF4.js";
37
+ } from "./chunk-CCZUA25H.js";
38
38
  import {
39
39
  safeheronWallet
40
40
  } from "./chunk-PHF4VWKP.js";
41
41
  import {
42
42
  safepalWallet
43
- } from "./chunk-ATQWOE4J.js";
43
+ } from "./chunk-LRYS2XBT.js";
44
44
  import {
45
45
  seifWallet
46
46
  } from "./chunk-Y3E6EZ7J.js";
47
- import {
48
- tahoWallet
49
- } from "./chunk-UXRQQZ2M.js";
50
47
  import {
51
48
  subWallet
52
- } from "./chunk-V7E5KRXJ.js";
49
+ } from "./chunk-OWSLCYOF.js";
53
50
  import {
54
- talismanWallet
55
- } from "./chunk-B4IG5R5M.js";
51
+ tahoWallet
52
+ } from "./chunk-UXRQQZ2M.js";
56
53
  import {
57
54
  tokenaryWallet
58
55
  } from "./chunk-U24COF36.js";
59
56
  import {
60
- trustWallet
61
- } from "./chunk-S2PY4MDO.js";
57
+ tokenPocketWallet
58
+ } from "./chunk-RCZCJUTR.js";
59
+ import {
60
+ uniswapWallet
61
+ } from "./chunk-DLDZUVTB.js";
62
+ import {
63
+ oneKeyWallet
64
+ } from "./chunk-6UGYPEQE.js";
62
65
  import {
63
66
  paraSwapWallet
64
67
  } from "./chunk-FF7ZXD5C.js";
68
+ import {
69
+ phantomWallet
70
+ } from "./chunk-DMQ4RXIY.js";
65
71
  import {
66
72
  rabbyWallet
67
73
  } from "./chunk-3RMYBZQG.js";
68
74
  import {
69
- frontierWallet
70
- } from "./chunk-JWO4ZQLK.js";
71
- import {
72
- oneKeyWallet
73
- } from "./chunk-6UGYPEQE.js";
75
+ rainbowWallet
76
+ } from "./chunk-6C3GUS6I.js";
74
77
  import {
75
78
  ramperWallet
76
79
  } from "./chunk-OX3PQBV2.js";
77
80
  import {
78
81
  roninWallet
79
- } from "./chunk-D7U5WEH2.js";
80
- import {
81
- rainbowWallet
82
- } from "./chunk-JBVBQUCS.js";
82
+ } from "./chunk-DSTY7YNG.js";
83
83
  import {
84
84
  safeWallet
85
85
  } from "./chunk-Z2QCE6O6.js";
86
+ import {
87
+ magicEdenWallet
88
+ } from "./chunk-WB7EEKPS.js";
86
89
  import {
87
90
  metaMaskWallet
88
- } from "./chunk-AKLKCDXT.js";
91
+ } from "./chunk-VUMT22HL.js";
89
92
  import {
90
- oktoWallet
91
- } from "./chunk-7SSXG35M.js";
93
+ mewWallet
94
+ } from "./chunk-ZRY6ILYP.js";
92
95
  import {
93
96
  nestWallet
94
97
  } from "./chunk-NN4KGG3I.js";
95
98
  import {
96
- okxWallet
97
- } from "./chunk-Z2E65XSS.js";
98
- import {
99
- krakenWallet
100
- } from "./chunk-CYOZFCR6.js";
99
+ oktoWallet
100
+ } from "./chunk-7SSXG35M.js";
101
101
  import {
102
102
  omniWallet
103
103
  } from "./chunk-RGPO7AY3.js";
@@ -105,56 +105,59 @@ import {
105
105
  oneInchWallet
106
106
  } from "./chunk-OJT577AY.js";
107
107
  import {
108
- phantomWallet
109
- } from "./chunk-DMQ4RXIY.js";
108
+ okxWallet
109
+ } from "./chunk-GF7RKBNV.js";
110
110
  import {
111
- iopayWallet
112
- } from "./chunk-2W6UBYKX.js";
111
+ injectedWallet
112
+ } from "./chunk-GDGRUMZB.js";
113
113
  import {
114
114
  imTokenWallet
115
115
  } from "./chunk-EHE2536P.js";
116
+ import {
117
+ iopayWallet
118
+ } from "./chunk-A2XAHJNR.js";
116
119
  import {
117
120
  kaiaWallet
118
- } from "./chunk-C7S72VGD.js";
121
+ } from "./chunk-KE6RMEB7.js";
122
+ import {
123
+ kaikasWallet
124
+ } from "./chunk-MUJPEDFF.js";
125
+ import {
126
+ krakenWallet
127
+ } from "./chunk-CYOZFCR6.js";
119
128
  import {
120
129
  kresusWallet
121
130
  } from "./chunk-CM3VR7OM.js";
122
- import {
123
- kaikasWallet
124
- } from "./chunk-BJYSWRV6.js";
125
131
  import {
126
132
  ledgerWallet
127
133
  } from "./chunk-BF3VSNPL.js";
128
- import {
129
- magicEdenWallet
130
- } from "./chunk-WB7EEKPS.js";
131
- import {
132
- mewWallet
133
- } from "./chunk-ZRY6ILYP.js";
134
134
  import {
135
135
  coreWallet
136
- } from "./chunk-FBI7UGNO.js";
136
+ } from "./chunk-I6ONK6DO.js";
137
+ import {
138
+ dawnWallet
139
+ } from "./chunk-YMP3W2MO.js";
137
140
  import {
138
141
  desigWallet
139
142
  } from "./chunk-DVXPOWEC.js";
140
143
  import {
141
144
  enkryptWallet
142
145
  } from "./chunk-5QHPQU7J.js";
146
+ import {
147
+ foxWallet
148
+ } from "./chunk-E4UMOJTY.js";
143
149
  import {
144
150
  frameWallet
145
151
  } from "./chunk-CP45RGL4.js";
146
152
  import {
147
- dawnWallet
148
- } from "./chunk-YMP3W2MO.js";
149
- import {
150
- foxWallet
151
- } from "./chunk-K6GEK4JB.js";
153
+ frontierWallet
154
+ } from "./chunk-NHZMJSPE.js";
152
155
  import {
153
156
  gateWallet
154
- } from "./chunk-K6UZPSBG.js";
157
+ } from "./chunk-PKSDTWUF.js";
155
158
  import {
156
- injectedWallet
157
- } from "./chunk-GDGRUMZB.js";
159
+ bitverseWallet
160
+ } from "./chunk-6HCSSBZY.js";
158
161
  import {
159
162
  bloomWallet
160
163
  } from "./chunk-3KPCADAF.js";
@@ -162,47 +165,44 @@ import {
162
165
  braveWallet
163
166
  } from "./chunk-EYN3CVFM.js";
164
167
  import {
165
- binanceWallet
166
- } from "./chunk-4T3UOJYR.js";
168
+ bybitWallet
169
+ } from "./chunk-DW37ROR6.js";
167
170
  import {
168
171
  clvWallet
169
- } from "./chunk-3IVTKZ7V.js";
170
- import {
171
- bybitWallet
172
- } from "./chunk-WSLFMQIG.js";
172
+ } from "./chunk-DPME4O44.js";
173
173
  import {
174
174
  coin98Wallet
175
- } from "./chunk-GILMNC3J.js";
175
+ } from "./chunk-ZFVYS64S.js";
176
176
  import {
177
177
  coinbaseWallet
178
178
  } from "./chunk-PNEDRY6O.js";
179
179
  import {
180
180
  compassWallet
181
181
  } from "./chunk-3OO564GS.js";
182
- import {
183
- bestWallet
184
- } from "./chunk-OPAPBEA5.js";
185
- import {
186
- bifrostWallet
187
- } from "./chunk-B6DM7J4N.js";
188
182
  import {
189
183
  argentWallet
190
184
  } from "./chunk-XT2WYPN5.js";
191
185
  import {
192
186
  berasigWallet
193
- } from "./chunk-KM55XFBI.js";
187
+ } from "./chunk-UZWMFUJU.js";
188
+ import {
189
+ bifrostWallet
190
+ } from "./chunk-WXXI4WBF.js";
191
+ import {
192
+ bestWallet
193
+ } from "./chunk-OPAPBEA5.js";
194
194
  import {
195
195
  bitgetWallet
196
- } from "./chunk-CULIWWLV.js";
196
+ } from "./chunk-ITLTDJ3D.js";
197
+ import {
198
+ binanceWallet
199
+ } from "./chunk-TUDZHFVC.js";
197
200
  import "./chunk-RETKWSKD.js";
201
+ import "./chunk-PODFK4OS.js";
198
202
  import {
199
203
  bitskiWallet
200
204
  } from "./chunk-DZB25PZ7.js";
201
205
  import "./chunk-MBBGZGXF.js";
202
- import {
203
- bitverseWallet
204
- } from "./chunk-6HCSSBZY.js";
205
- import "./chunk-PODFK4OS.js";
206
206
  export {
207
207
  abcWallet,
208
208
  argentWallet,