@talken/talkenkit 2.4.7 → 2.4.9
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-U5ZRWNFY.js +184 -0
- package/dist/chunk-KCMRHCAB.js +6886 -0
- package/dist/index.js +15 -67
- 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/abcSolanaProvider.d.ts +13 -2
- package/dist/wallets/walletConnectors/abcWallet/abcSolanaProvider.js +1 -1
- 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/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-BH2VZAMQ.js +259 -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 +80 -80
- 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,259 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
// src/wallets/walletConnectors/abcWallet/abcSolanaProvider.ts
|
|
4
|
+
var EventEmitter = class {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.events = /* @__PURE__ */ new Map();
|
|
7
|
+
}
|
|
8
|
+
on(event, listener) {
|
|
9
|
+
if (!this.events.has(event)) {
|
|
10
|
+
this.events.set(event, []);
|
|
11
|
+
}
|
|
12
|
+
this.events.get(event).push(listener);
|
|
13
|
+
return this;
|
|
14
|
+
}
|
|
15
|
+
off(event, listener) {
|
|
16
|
+
const listeners = this.events.get(event);
|
|
17
|
+
if (listeners) {
|
|
18
|
+
const index = listeners.indexOf(listener);
|
|
19
|
+
if (index !== -1) {
|
|
20
|
+
listeners.splice(index, 1);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return this;
|
|
24
|
+
}
|
|
25
|
+
removeListener(event, listener) {
|
|
26
|
+
return this.off(event, listener);
|
|
27
|
+
}
|
|
28
|
+
emit(event, ...args) {
|
|
29
|
+
const listeners = this.events.get(event);
|
|
30
|
+
if (listeners) {
|
|
31
|
+
for (const listener of listeners) {
|
|
32
|
+
listener(...args);
|
|
33
|
+
}
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
removeAllListeners(event) {
|
|
39
|
+
if (event) {
|
|
40
|
+
this.events.delete(event);
|
|
41
|
+
} else {
|
|
42
|
+
this.events.clear();
|
|
43
|
+
}
|
|
44
|
+
return this;
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
var SolanaErrorCode = {
|
|
48
|
+
USER_REJECTED: 4001,
|
|
49
|
+
UNAUTHORIZED: 4100,
|
|
50
|
+
UNSUPPORTED_METHOD: 4200,
|
|
51
|
+
DISCONNECTED: 4900,
|
|
52
|
+
INVALID_PARAMS: -32602,
|
|
53
|
+
INTERNAL_ERROR: -32603
|
|
54
|
+
};
|
|
55
|
+
var SolanaProviderError = class extends Error {
|
|
56
|
+
constructor(code, message, data) {
|
|
57
|
+
super(message);
|
|
58
|
+
this.code = code;
|
|
59
|
+
this.data = data;
|
|
60
|
+
this.name = "SolanaProviderError";
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
var AbcSolanaProvider = class extends EventEmitter {
|
|
64
|
+
constructor(client) {
|
|
65
|
+
super();
|
|
66
|
+
this.wallet = null;
|
|
67
|
+
this.connected = false;
|
|
68
|
+
this.requestPinCallback = null;
|
|
69
|
+
this.client = client;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Set wallet information
|
|
73
|
+
*/
|
|
74
|
+
setWallet(wallet) {
|
|
75
|
+
const previousAddress = this.wallet?.address;
|
|
76
|
+
this.wallet = wallet;
|
|
77
|
+
this.connected = true;
|
|
78
|
+
if (previousAddress !== wallet.address) {
|
|
79
|
+
this.emit("accountsChanged", [wallet.address]);
|
|
80
|
+
}
|
|
81
|
+
this.emit("connect", {
|
|
82
|
+
address: wallet.address,
|
|
83
|
+
network: wallet.network
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Clear wallet (disconnect)
|
|
88
|
+
*/
|
|
89
|
+
clearWallet() {
|
|
90
|
+
this.wallet = null;
|
|
91
|
+
this.connected = false;
|
|
92
|
+
this.emit("disconnect");
|
|
93
|
+
this.emit("accountsChanged", []);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Set PIN request callback for transaction signing
|
|
97
|
+
*/
|
|
98
|
+
setRequestPinCallback(callback) {
|
|
99
|
+
this.requestPinCallback = callback;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Check if connected
|
|
103
|
+
*/
|
|
104
|
+
isConnected() {
|
|
105
|
+
return this.connected && this.wallet !== null;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Get Solana address
|
|
109
|
+
*/
|
|
110
|
+
async getAddress() {
|
|
111
|
+
if (!this.wallet) {
|
|
112
|
+
throw new SolanaProviderError(
|
|
113
|
+
SolanaErrorCode.DISCONNECTED,
|
|
114
|
+
"Wallet not connected"
|
|
115
|
+
);
|
|
116
|
+
}
|
|
117
|
+
return this.wallet.address;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Get public key
|
|
121
|
+
*/
|
|
122
|
+
async getPublicKey() {
|
|
123
|
+
if (!this.wallet) {
|
|
124
|
+
throw new SolanaProviderError(
|
|
125
|
+
SolanaErrorCode.DISCONNECTED,
|
|
126
|
+
"Wallet not connected"
|
|
127
|
+
);
|
|
128
|
+
}
|
|
129
|
+
return this.wallet.publicKey;
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* Sign Solana message (no PIN required)
|
|
133
|
+
* Uses encrypted_share which doesn't require PIN
|
|
134
|
+
*/
|
|
135
|
+
async signMessage(encodedMessage, _display) {
|
|
136
|
+
if (!this.wallet) {
|
|
137
|
+
throw new SolanaProviderError(
|
|
138
|
+
SolanaErrorCode.DISCONNECTED,
|
|
139
|
+
"Wallet not connected"
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
try {
|
|
143
|
+
const messageHex = `0x${Array.from(encodedMessage).map((b) => b.toString(16).padStart(2, "0")).join("")}`;
|
|
144
|
+
const result = await this.client.solana.signSolanaMessage({
|
|
145
|
+
message: messageHex,
|
|
146
|
+
encryptedShare: this.wallet.encryptedShare,
|
|
147
|
+
keyId: this.wallet.keyId,
|
|
148
|
+
secretStore: this.wallet.secretStore || ""
|
|
149
|
+
});
|
|
150
|
+
const signatureHex = result.signature.startsWith("0x") ? result.signature.slice(2) : result.signature;
|
|
151
|
+
const signatureBytes = new Uint8Array(
|
|
152
|
+
signatureHex.match(/.{1,2}/g)?.map((byte) => Number.parseInt(byte, 16)) || []
|
|
153
|
+
);
|
|
154
|
+
return { signature: signatureBytes };
|
|
155
|
+
} catch (error) {
|
|
156
|
+
this.emit("error", error);
|
|
157
|
+
throw new SolanaProviderError(
|
|
158
|
+
SolanaErrorCode.INTERNAL_ERROR,
|
|
159
|
+
"Failed to sign message",
|
|
160
|
+
error
|
|
161
|
+
);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Sign Solana transaction (not used - ABC WaaS handles signing server-side)
|
|
166
|
+
* This method is kept for compatibility but not recommended for direct use
|
|
167
|
+
* Use the high-level sendTransaction() flow instead
|
|
168
|
+
*/
|
|
169
|
+
async signTransaction(_transaction, _params) {
|
|
170
|
+
throw new SolanaProviderError(
|
|
171
|
+
SolanaErrorCode.UNSUPPORTED_METHOD,
|
|
172
|
+
"Direct transaction signing not supported. Use useSolanaWallet.sendTransaction() which handles the full flow via ABC WaaS API."
|
|
173
|
+
);
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* Send Solana transaction (with PIN verification)
|
|
177
|
+
*/
|
|
178
|
+
async sendTransaction(params) {
|
|
179
|
+
if (!this.wallet) {
|
|
180
|
+
throw new SolanaProviderError(
|
|
181
|
+
SolanaErrorCode.DISCONNECTED,
|
|
182
|
+
"Wallet not connected"
|
|
183
|
+
);
|
|
184
|
+
}
|
|
185
|
+
if (!this.requestPinCallback) {
|
|
186
|
+
throw new SolanaProviderError(
|
|
187
|
+
SolanaErrorCode.UNAUTHORIZED,
|
|
188
|
+
"PIN callback not set"
|
|
189
|
+
);
|
|
190
|
+
}
|
|
191
|
+
try {
|
|
192
|
+
const pin = await this.requestPinCallback();
|
|
193
|
+
const encoder = new TextEncoder();
|
|
194
|
+
const data = encoder.encode(pin);
|
|
195
|
+
const hashBuffer = await crypto.subtle.digest("SHA-256", data);
|
|
196
|
+
const hashArray = Array.from(new Uint8Array(hashBuffer));
|
|
197
|
+
const pinHash = hashArray.map((b) => b.toString(16).padStart(2, "0")).join("");
|
|
198
|
+
const storedPinHash = localStorage.getItem("talkenkit_abc_pin_hash");
|
|
199
|
+
if (storedPinHash && pinHash !== storedPinHash) {
|
|
200
|
+
throw new SolanaProviderError(
|
|
201
|
+
SolanaErrorCode.UNAUTHORIZED,
|
|
202
|
+
"Incorrect PIN"
|
|
203
|
+
);
|
|
204
|
+
}
|
|
205
|
+
const { LAMPORTS_PER_SOL } = await import("@solana/web3.js");
|
|
206
|
+
const network = this.wallet.network || "solana_devnet";
|
|
207
|
+
const amountLamports = params.amount * LAMPORTS_PER_SOL;
|
|
208
|
+
const txGenResponse = await this.client.solana.generateTransferTransaction({
|
|
209
|
+
network,
|
|
210
|
+
amount: amountLamports,
|
|
211
|
+
fromAddress: this.wallet.address,
|
|
212
|
+
toAddress: params.toAddress,
|
|
213
|
+
feePayerAddress: this.wallet.address
|
|
214
|
+
});
|
|
215
|
+
const signatureResponse = await this.client.solana.signSolanaTransaction({
|
|
216
|
+
keyId: this.wallet.keyId,
|
|
217
|
+
encryptedShare: this.wallet.encryptedShare,
|
|
218
|
+
secretStore: this.wallet.secretStore || "",
|
|
219
|
+
message: txGenResponse.serialized_tx
|
|
220
|
+
});
|
|
221
|
+
const result = await this.client.solana.sendSolanaTransaction({
|
|
222
|
+
network,
|
|
223
|
+
serializedTX: txGenResponse.serialized_tx,
|
|
224
|
+
signatures: [signatureResponse.signature]
|
|
225
|
+
});
|
|
226
|
+
return {
|
|
227
|
+
signature: result.txHash,
|
|
228
|
+
serializedTx: txGenResponse.serialized_tx
|
|
229
|
+
};
|
|
230
|
+
} catch (error) {
|
|
231
|
+
if (error.code === 4001 || error.cancelled) {
|
|
232
|
+
throw error;
|
|
233
|
+
}
|
|
234
|
+
this.emit("error", error);
|
|
235
|
+
throw new SolanaProviderError(
|
|
236
|
+
SolanaErrorCode.INTERNAL_ERROR,
|
|
237
|
+
"Failed to send transaction",
|
|
238
|
+
error
|
|
239
|
+
);
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* Get wallet info
|
|
244
|
+
*/
|
|
245
|
+
getWalletInfo() {
|
|
246
|
+
if (!this.wallet)
|
|
247
|
+
return null;
|
|
248
|
+
return {
|
|
249
|
+
address: this.wallet.address,
|
|
250
|
+
publicKey: this.wallet.publicKey,
|
|
251
|
+
network: this.wallet.network
|
|
252
|
+
};
|
|
253
|
+
}
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
export {
|
|
257
|
+
SolanaProviderError,
|
|
258
|
+
AbcSolanaProvider
|
|
259
|
+
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
frontierWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-JWO4ZQLK.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.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-K6UZPSBG.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
gateWallet
|
|
10
10
|
};
|
|
@@ -1,19 +1,16 @@
|
|
|
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-AGC7JS5M.js";
|
|
5
|
+
import "./chunk-HJFZF4V3.js";
|
|
6
|
+
import "./chunk-CZVBS7QE.js";
|
|
7
|
+
import "./chunk-YX4O33NC.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-RQIUWXDF.js";
|
|
11
|
+
import "./chunk-TYUEB4VT.js";
|
|
13
12
|
import "./chunk-VETRBBA2.js";
|
|
14
|
-
import
|
|
15
|
-
trustWallet
|
|
16
|
-
} from "./chunk-EM6BREIH.js";
|
|
13
|
+
import "./chunk-RQIUWXDF.js";
|
|
17
14
|
import {
|
|
18
15
|
uniswapWallet
|
|
19
16
|
} from "./chunk-DLDZUVTB.js";
|
|
@@ -21,8 +18,8 @@ import {
|
|
|
21
18
|
valoraWallet
|
|
22
19
|
} from "./chunk-CVUEWUDI.js";
|
|
23
20
|
import {
|
|
24
|
-
|
|
25
|
-
} from "./chunk-
|
|
21
|
+
tokenPocketWallet
|
|
22
|
+
} from "./chunk-5NM2LK2G.js";
|
|
26
23
|
import {
|
|
27
24
|
wigwamWallet
|
|
28
25
|
} from "./chunk-EFYKBPOB.js";
|
|
@@ -30,77 +27,77 @@ import {
|
|
|
30
27
|
xdefiWallet
|
|
31
28
|
} from "./chunk-26RJNF7V.js";
|
|
32
29
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
30
|
+
walletConnectWallet
|
|
31
|
+
} from "./chunk-KU5R3WAJ.js";
|
|
35
32
|
import {
|
|
36
33
|
zerionWallet
|
|
37
|
-
} from "./chunk-
|
|
34
|
+
} from "./chunk-53IBFGVW.js";
|
|
35
|
+
import {
|
|
36
|
+
zealWallet
|
|
37
|
+
} from "./chunk-SCOX5RF4.js";
|
|
38
38
|
import {
|
|
39
39
|
safeheronWallet
|
|
40
40
|
} from "./chunk-PHF4VWKP.js";
|
|
41
41
|
import {
|
|
42
42
|
safepalWallet
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-ATQWOE4J.js";
|
|
44
44
|
import {
|
|
45
45
|
seifWallet
|
|
46
46
|
} from "./chunk-Y3E6EZ7J.js";
|
|
47
|
+
import {
|
|
48
|
+
tahoWallet
|
|
49
|
+
} from "./chunk-UXRQQZ2M.js";
|
|
47
50
|
import {
|
|
48
51
|
subWallet
|
|
49
|
-
} from "./chunk-
|
|
52
|
+
} from "./chunk-V7E5KRXJ.js";
|
|
50
53
|
import {
|
|
51
54
|
talismanWallet
|
|
52
55
|
} from "./chunk-B4IG5R5M.js";
|
|
53
|
-
import {
|
|
54
|
-
tahoWallet
|
|
55
|
-
} from "./chunk-UXRQQZ2M.js";
|
|
56
|
-
import {
|
|
57
|
-
tokenPocketWallet
|
|
58
|
-
} from "./chunk-RCZCJUTR.js";
|
|
59
56
|
import {
|
|
60
57
|
tokenaryWallet
|
|
61
58
|
} from "./chunk-U24COF36.js";
|
|
62
59
|
import {
|
|
63
|
-
|
|
64
|
-
} from "./chunk-
|
|
60
|
+
trustWallet
|
|
61
|
+
} from "./chunk-S2PY4MDO.js";
|
|
65
62
|
import {
|
|
66
63
|
paraSwapWallet
|
|
67
64
|
} from "./chunk-FF7ZXD5C.js";
|
|
68
|
-
import {
|
|
69
|
-
phantomWallet
|
|
70
|
-
} from "./chunk-DMQ4RXIY.js";
|
|
71
65
|
import {
|
|
72
66
|
rabbyWallet
|
|
73
67
|
} from "./chunk-3RMYBZQG.js";
|
|
74
68
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
69
|
+
frontierWallet
|
|
70
|
+
} from "./chunk-JWO4ZQLK.js";
|
|
71
|
+
import {
|
|
72
|
+
oneKeyWallet
|
|
73
|
+
} from "./chunk-6UGYPEQE.js";
|
|
77
74
|
import {
|
|
78
75
|
ramperWallet
|
|
79
76
|
} from "./chunk-OX3PQBV2.js";
|
|
80
77
|
import {
|
|
81
78
|
roninWallet
|
|
82
|
-
} from "./chunk-
|
|
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";
|
|
89
86
|
import {
|
|
90
87
|
metaMaskWallet
|
|
91
|
-
} from "./chunk-
|
|
88
|
+
} from "./chunk-AKLKCDXT.js";
|
|
92
89
|
import {
|
|
93
|
-
|
|
94
|
-
} from "./chunk-
|
|
90
|
+
oktoWallet
|
|
91
|
+
} from "./chunk-7SSXG35M.js";
|
|
95
92
|
import {
|
|
96
93
|
nestWallet
|
|
97
94
|
} from "./chunk-NN4KGG3I.js";
|
|
98
|
-
import {
|
|
99
|
-
oktoWallet
|
|
100
|
-
} from "./chunk-7SSXG35M.js";
|
|
101
95
|
import {
|
|
102
96
|
okxWallet
|
|
103
|
-
} from "./chunk-
|
|
97
|
+
} from "./chunk-Z2E65XSS.js";
|
|
98
|
+
import {
|
|
99
|
+
krakenWallet
|
|
100
|
+
} from "./chunk-CYOZFCR6.js";
|
|
104
101
|
import {
|
|
105
102
|
omniWallet
|
|
106
103
|
} from "./chunk-RGPO7AY3.js";
|
|
@@ -108,101 +105,104 @@ import {
|
|
|
108
105
|
oneInchWallet
|
|
109
106
|
} from "./chunk-OJT577AY.js";
|
|
110
107
|
import {
|
|
111
|
-
|
|
112
|
-
} from "./chunk-
|
|
113
|
-
import {
|
|
114
|
-
injectedWallet
|
|
115
|
-
} from "./chunk-GDGRUMZB.js";
|
|
108
|
+
phantomWallet
|
|
109
|
+
} from "./chunk-DMQ4RXIY.js";
|
|
116
110
|
import {
|
|
117
111
|
iopayWallet
|
|
118
|
-
} from "./chunk-
|
|
119
|
-
import {
|
|
120
|
-
kaiaWallet
|
|
121
|
-
} from "./chunk-KE6RMEB7.js";
|
|
112
|
+
} from "./chunk-2W6UBYKX.js";
|
|
122
113
|
import {
|
|
123
|
-
|
|
124
|
-
} from "./chunk-
|
|
114
|
+
imTokenWallet
|
|
115
|
+
} from "./chunk-EHE2536P.js";
|
|
125
116
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
117
|
+
kaiaWallet
|
|
118
|
+
} from "./chunk-C7S72VGD.js";
|
|
128
119
|
import {
|
|
129
120
|
kresusWallet
|
|
130
121
|
} from "./chunk-CM3VR7OM.js";
|
|
122
|
+
import {
|
|
123
|
+
kaikasWallet
|
|
124
|
+
} from "./chunk-BJYSWRV6.js";
|
|
131
125
|
import {
|
|
132
126
|
ledgerWallet
|
|
133
127
|
} from "./chunk-BF3VSNPL.js";
|
|
134
128
|
import {
|
|
135
|
-
|
|
136
|
-
} from "./chunk-
|
|
129
|
+
magicEdenWallet
|
|
130
|
+
} from "./chunk-WB7EEKPS.js";
|
|
137
131
|
import {
|
|
138
|
-
|
|
139
|
-
} from "./chunk-
|
|
132
|
+
mewWallet
|
|
133
|
+
} from "./chunk-ZRY6ILYP.js";
|
|
134
|
+
import {
|
|
135
|
+
coreWallet
|
|
136
|
+
} from "./chunk-FBI7UGNO.js";
|
|
140
137
|
import {
|
|
141
138
|
desigWallet
|
|
142
139
|
} from "./chunk-DVXPOWEC.js";
|
|
143
140
|
import {
|
|
144
141
|
enkryptWallet
|
|
145
142
|
} from "./chunk-5QHPQU7J.js";
|
|
146
|
-
import {
|
|
147
|
-
foxWallet
|
|
148
|
-
} from "./chunk-E4UMOJTY.js";
|
|
149
143
|
import {
|
|
150
144
|
frameWallet
|
|
151
145
|
} from "./chunk-CP45RGL4.js";
|
|
152
146
|
import {
|
|
153
|
-
|
|
154
|
-
} from "./chunk-
|
|
147
|
+
dawnWallet
|
|
148
|
+
} from "./chunk-YMP3W2MO.js";
|
|
149
|
+
import {
|
|
150
|
+
foxWallet
|
|
151
|
+
} from "./chunk-K6GEK4JB.js";
|
|
155
152
|
import {
|
|
156
153
|
gateWallet
|
|
157
|
-
} from "./chunk-
|
|
154
|
+
} from "./chunk-K6UZPSBG.js";
|
|
158
155
|
import {
|
|
159
|
-
|
|
160
|
-
} from "./chunk-
|
|
156
|
+
injectedWallet
|
|
157
|
+
} from "./chunk-GDGRUMZB.js";
|
|
161
158
|
import {
|
|
162
159
|
bloomWallet
|
|
163
160
|
} from "./chunk-3KPCADAF.js";
|
|
164
161
|
import {
|
|
165
162
|
braveWallet
|
|
166
163
|
} from "./chunk-EYN3CVFM.js";
|
|
164
|
+
import {
|
|
165
|
+
binanceWallet
|
|
166
|
+
} from "./chunk-4T3UOJYR.js";
|
|
167
|
+
import {
|
|
168
|
+
clvWallet
|
|
169
|
+
} from "./chunk-3IVTKZ7V.js";
|
|
167
170
|
import {
|
|
168
171
|
bybitWallet
|
|
169
|
-
} from "./chunk-
|
|
172
|
+
} from "./chunk-WSLFMQIG.js";
|
|
170
173
|
import {
|
|
171
174
|
coin98Wallet
|
|
172
|
-
} from "./chunk-
|
|
173
|
-
import {
|
|
174
|
-
clvWallet
|
|
175
|
-
} from "./chunk-DPME4O44.js";
|
|
175
|
+
} from "./chunk-GILMNC3J.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
|
-
berasigWallet
|
|
184
|
-
} from "./chunk-UZWMFUJU.js";
|
|
185
182
|
import {
|
|
186
183
|
bestWallet
|
|
187
184
|
} from "./chunk-OPAPBEA5.js";
|
|
185
|
+
import {
|
|
186
|
+
bifrostWallet
|
|
187
|
+
} from "./chunk-B6DM7J4N.js";
|
|
188
188
|
import {
|
|
189
189
|
argentWallet
|
|
190
190
|
} from "./chunk-XT2WYPN5.js";
|
|
191
191
|
import {
|
|
192
|
-
|
|
193
|
-
} from "./chunk-
|
|
194
|
-
import {
|
|
195
|
-
bifrostWallet
|
|
196
|
-
} from "./chunk-WXXI4WBF.js";
|
|
192
|
+
berasigWallet
|
|
193
|
+
} from "./chunk-KM55XFBI.js";
|
|
197
194
|
import {
|
|
198
195
|
bitgetWallet
|
|
199
|
-
} from "./chunk-
|
|
196
|
+
} from "./chunk-CULIWWLV.js";
|
|
200
197
|
import "./chunk-RETKWSKD.js";
|
|
201
|
-
import "./chunk-PODFK4OS.js";
|
|
202
198
|
import {
|
|
203
199
|
bitskiWallet
|
|
204
200
|
} from "./chunk-DZB25PZ7.js";
|
|
205
201
|
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,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
iopayWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-2W6UBYKX.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
iopayWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
metaMaskWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-AKLKCDXT.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-PODFK4OS.js";
|
|
7
6
|
import "../chunk-MBBGZGXF.js";
|
|
7
|
+
import "../chunk-PODFK4OS.js";
|
|
8
8
|
export {
|
|
9
9
|
metaMaskWallet
|
|
10
10
|
};
|