@talken/talkenkit 2.4.9 → 2.4.10
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/abcWallet-OQWH4ES2.js +184 -0
- package/dist/abcWallet-PP2WTSDI.js +184 -0
- package/dist/chunk-7FKWLUOV.js +6883 -0
- package/dist/chunk-JZQXBVCJ.js +6883 -0
- package/dist/index.js +157 -121
- package/dist/themes/baseTheme.js +1 -1
- package/dist/themes/darkTheme.js +1 -1
- package/dist/themes/lightTheme.js +1 -1
- package/dist/themes/midnightTheme.js +1 -1
- package/dist/wallets/walletConnectors/abcWallet/abcApi.js +3 -3
- package/dist/wallets/walletConnectors/abcWallet/abcBitcoinConnector.js +3 -3
- package/dist/wallets/walletConnectors/abcWallet/abcConnector.js +5 -5
- package/dist/wallets/walletConnectors/abcWallet/abcProvider.js +3 -3
- package/dist/wallets/walletConnectors/abcWallet/abcSolanaWalletAdapter.js +5 -5
- package/dist/wallets/walletConnectors/abcWallet/abcWallet.js +6 -6
- package/dist/wallets/walletConnectors/abcWallet/api/AuthApi.js +4 -4
- package/dist/wallets/walletConnectors/abcWallet/api/BaseApiClient.js +3 -3
- package/dist/wallets/walletConnectors/abcWallet/api/BitcoinApi.js +4 -4
- package/dist/wallets/walletConnectors/abcWallet/api/SigningApi.js +4 -4
- package/dist/wallets/walletConnectors/abcWallet/api/SolanaApi.js +4 -4
- package/dist/wallets/walletConnectors/abcWallet/api/TransactionApi.js +4 -4
- package/dist/wallets/walletConnectors/abcWallet/api/WalletApi.js +4 -4
- package/dist/wallets/walletConnectors/abcWallet/api/index.js +10 -10
- package/dist/wallets/walletConnectors/abcWallet/index.js +23 -23
- package/dist/wallets/walletConnectors/abcWallet/utils.js +2 -2
- package/dist/wallets/walletConnectors/abcWallet/walletGeneration.js +1 -1
- package/dist/wallets/walletConnectors/berasigWallet/berasigWallet.js +2 -2
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/binanceWallet/binanceWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
- package/dist/wallets/walletConnectors/chunk-IL4WOWNJ.js +327 -0
- package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
- package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
- package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
- package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
- package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
- package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
- package/dist/wallets/walletConnectors/index.js +84 -84
- package/dist/wallets/walletConnectors/iopayWallet/iopayWallet.js +2 -2
- package/dist/wallets/walletConnectors/kaiaWallet/kaiaWallet.js +2 -2
- package/dist/wallets/walletConnectors/kaikasWallet/kaikasWallet.js +2 -2
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
- package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
- package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
- package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
- package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
- package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
- package/dist/wallets/walletConnectors/zealWallet/zealWallet.js +2 -2
- package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
- package/package.json +1 -1
|
@@ -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,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
frontierWallet
|
|
4
|
-
} from "../chunk-
|
|
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-
|
|
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,106 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
abcWallet
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
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-
|
|
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
15
|
uniswapWallet
|
|
16
16
|
} from "./chunk-DLDZUVTB.js";
|
|
17
17
|
import {
|
|
18
18
|
valoraWallet
|
|
19
19
|
} from "./chunk-CVUEWUDI.js";
|
|
20
|
-
import {
|
|
21
|
-
tokenPocketWallet
|
|
22
|
-
} from "./chunk-5NM2LK2G.js";
|
|
23
20
|
import {
|
|
24
21
|
wigwamWallet
|
|
25
22
|
} from "./chunk-EFYKBPOB.js";
|
|
26
|
-
import {
|
|
27
|
-
xdefiWallet
|
|
28
|
-
} from "./chunk-26RJNF7V.js";
|
|
29
23
|
import {
|
|
30
24
|
walletConnectWallet
|
|
31
25
|
} from "./chunk-KU5R3WAJ.js";
|
|
26
|
+
import {
|
|
27
|
+
zealWallet
|
|
28
|
+
} from "./chunk-DVLTKWTZ.js";
|
|
32
29
|
import {
|
|
33
30
|
zerionWallet
|
|
34
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-CCZUA25H.js";
|
|
35
32
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
33
|
+
xdefiWallet
|
|
34
|
+
} from "./chunk-26RJNF7V.js";
|
|
38
35
|
import {
|
|
39
36
|
safeheronWallet
|
|
40
37
|
} from "./chunk-PHF4VWKP.js";
|
|
41
38
|
import {
|
|
42
39
|
safepalWallet
|
|
43
|
-
} from "./chunk-
|
|
44
|
-
import {
|
|
45
|
-
seifWallet
|
|
46
|
-
} from "./chunk-Y3E6EZ7J.js";
|
|
40
|
+
} from "./chunk-LRYS2XBT.js";
|
|
47
41
|
import {
|
|
48
42
|
tahoWallet
|
|
49
43
|
} from "./chunk-UXRQQZ2M.js";
|
|
50
|
-
import {
|
|
51
|
-
subWallet
|
|
52
|
-
} from "./chunk-V7E5KRXJ.js";
|
|
53
44
|
import {
|
|
54
45
|
talismanWallet
|
|
55
46
|
} from "./chunk-B4IG5R5M.js";
|
|
47
|
+
import {
|
|
48
|
+
subWallet
|
|
49
|
+
} from "./chunk-OWSLCYOF.js";
|
|
50
|
+
import {
|
|
51
|
+
seifWallet
|
|
52
|
+
} from "./chunk-Y3E6EZ7J.js";
|
|
53
|
+
import {
|
|
54
|
+
tokenPocketWallet
|
|
55
|
+
} from "./chunk-RCZCJUTR.js";
|
|
56
56
|
import {
|
|
57
57
|
tokenaryWallet
|
|
58
58
|
} from "./chunk-U24COF36.js";
|
|
59
59
|
import {
|
|
60
60
|
trustWallet
|
|
61
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-EM6BREIH.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
|
-
|
|
70
|
-
} from "./chunk-
|
|
75
|
+
rainbowWallet
|
|
76
|
+
} from "./chunk-6C3GUS6I.js";
|
|
71
77
|
import {
|
|
72
|
-
|
|
73
|
-
} from "./chunk-
|
|
78
|
+
roninWallet
|
|
79
|
+
} from "./chunk-DSTY7YNG.js";
|
|
74
80
|
import {
|
|
75
81
|
ramperWallet
|
|
76
82
|
} from "./chunk-OX3PQBV2.js";
|
|
77
|
-
import {
|
|
78
|
-
roninWallet
|
|
79
|
-
} from "./chunk-D7U5WEH2.js";
|
|
80
|
-
import {
|
|
81
|
-
rainbowWallet
|
|
82
|
-
} from "./chunk-JBVBQUCS.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-
|
|
91
|
+
} from "./chunk-VUMT22HL.js";
|
|
89
92
|
import {
|
|
90
|
-
|
|
91
|
-
} from "./chunk-
|
|
93
|
+
mewWallet
|
|
94
|
+
} from "./chunk-ZRY6ILYP.js";
|
|
92
95
|
import {
|
|
93
96
|
nestWallet
|
|
94
97
|
} from "./chunk-NN4KGG3I.js";
|
|
95
98
|
import {
|
|
96
|
-
|
|
97
|
-
} from "./chunk-
|
|
99
|
+
oktoWallet
|
|
100
|
+
} from "./chunk-7SSXG35M.js";
|
|
98
101
|
import {
|
|
99
|
-
|
|
100
|
-
} from "./chunk-
|
|
102
|
+
okxWallet
|
|
103
|
+
} from "./chunk-GF7RKBNV.js";
|
|
101
104
|
import {
|
|
102
105
|
omniWallet
|
|
103
106
|
} from "./chunk-RGPO7AY3.js";
|
|
@@ -105,104 +108,101 @@ import {
|
|
|
105
108
|
oneInchWallet
|
|
106
109
|
} from "./chunk-OJT577AY.js";
|
|
107
110
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
111
|
+
imTokenWallet
|
|
112
|
+
} from "./chunk-EHE2536P.js";
|
|
113
|
+
import {
|
|
114
|
+
injectedWallet
|
|
115
|
+
} from "./chunk-GDGRUMZB.js";
|
|
110
116
|
import {
|
|
111
117
|
iopayWallet
|
|
112
|
-
} from "./chunk-
|
|
118
|
+
} from "./chunk-A2XAHJNR.js";
|
|
113
119
|
import {
|
|
114
|
-
|
|
115
|
-
} from "./chunk-
|
|
120
|
+
kaikasWallet
|
|
121
|
+
} from "./chunk-MUJPEDFF.js";
|
|
116
122
|
import {
|
|
117
123
|
kaiaWallet
|
|
118
|
-
} from "./chunk-
|
|
124
|
+
} from "./chunk-KE6RMEB7.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
134
|
import {
|
|
129
|
-
|
|
130
|
-
} from "./chunk-
|
|
131
|
-
import {
|
|
132
|
-
mewWallet
|
|
133
|
-
} from "./chunk-ZRY6ILYP.js";
|
|
135
|
+
dawnWallet
|
|
136
|
+
} from "./chunk-YMP3W2MO.js";
|
|
134
137
|
import {
|
|
135
138
|
coreWallet
|
|
136
|
-
} from "./chunk-
|
|
139
|
+
} from "./chunk-I6ONK6DO.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
|
-
import {
|
|
147
|
-
dawnWallet
|
|
148
|
-
} from "./chunk-YMP3W2MO.js";
|
|
149
|
-
import {
|
|
150
|
-
foxWallet
|
|
151
|
-
} from "./chunk-K6GEK4JB.js";
|
|
152
152
|
import {
|
|
153
153
|
gateWallet
|
|
154
|
-
} from "./chunk-
|
|
154
|
+
} from "./chunk-PKSDTWUF.js";
|
|
155
155
|
import {
|
|
156
|
-
|
|
157
|
-
} from "./chunk-
|
|
156
|
+
frontierWallet
|
|
157
|
+
} from "./chunk-NHZMJSPE.js";
|
|
158
158
|
import {
|
|
159
159
|
bloomWallet
|
|
160
160
|
} from "./chunk-3KPCADAF.js";
|
|
161
|
+
import {
|
|
162
|
+
bitverseWallet
|
|
163
|
+
} from "./chunk-6HCSSBZY.js";
|
|
161
164
|
import {
|
|
162
165
|
braveWallet
|
|
163
166
|
} from "./chunk-EYN3CVFM.js";
|
|
164
|
-
import {
|
|
165
|
-
binanceWallet
|
|
166
|
-
} from "./chunk-4T3UOJYR.js";
|
|
167
167
|
import {
|
|
168
168
|
clvWallet
|
|
169
|
-
} from "./chunk-
|
|
170
|
-
import {
|
|
171
|
-
bybitWallet
|
|
172
|
-
} from "./chunk-WSLFMQIG.js";
|
|
169
|
+
} from "./chunk-DPME4O44.js";
|
|
173
170
|
import {
|
|
174
171
|
coin98Wallet
|
|
175
|
-
} from "./chunk-
|
|
172
|
+
} from "./chunk-ZFVYS64S.js";
|
|
173
|
+
import {
|
|
174
|
+
bybitWallet
|
|
175
|
+
} from "./chunk-DW37ROR6.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";
|
|
185
|
+
import {
|
|
186
|
+
bestWallet
|
|
187
|
+
} from "./chunk-OPAPBEA5.js";
|
|
191
188
|
import {
|
|
192
189
|
berasigWallet
|
|
193
|
-
} from "./chunk-
|
|
190
|
+
} from "./chunk-UZWMFUJU.js";
|
|
191
|
+
import {
|
|
192
|
+
bifrostWallet
|
|
193
|
+
} from "./chunk-WXXI4WBF.js";
|
|
194
194
|
import {
|
|
195
195
|
bitgetWallet
|
|
196
|
-
} from "./chunk-
|
|
197
|
-
import "./chunk-RETKWSKD.js";
|
|
196
|
+
} from "./chunk-ITLTDJ3D.js";
|
|
198
197
|
import {
|
|
199
198
|
bitskiWallet
|
|
200
199
|
} from "./chunk-DZB25PZ7.js";
|
|
201
|
-
import "./chunk-MBBGZGXF.js";
|
|
202
200
|
import {
|
|
203
|
-
|
|
204
|
-
} from "./chunk-
|
|
201
|
+
binanceWallet
|
|
202
|
+
} from "./chunk-TUDZHFVC.js";
|
|
203
|
+
import "./chunk-RETKWSKD.js";
|
|
205
204
|
import "./chunk-PODFK4OS.js";
|
|
205
|
+
import "./chunk-MBBGZGXF.js";
|
|
206
206
|
export {
|
|
207
207
|
abcWallet,
|
|
208
208
|
argentWallet,
|