@talken/talkenkit 2.4.8 → 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/index.js +9 -9
- 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 +22 -22
- 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/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 +89 -89
- 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
package/dist/index.js
CHANGED
|
@@ -3207,7 +3207,7 @@ function setRainbowKitVersion({ version }) {
|
|
|
3207
3207
|
}
|
|
3208
3208
|
function useFingerprint() {
|
|
3209
3209
|
const fingerprint = useCallback4(() => {
|
|
3210
|
-
setRainbowKitVersion({ version: "2.4.
|
|
3210
|
+
setRainbowKitVersion({ version: "2.4.9" });
|
|
3211
3211
|
}, []);
|
|
3212
3212
|
useEffect12(() => {
|
|
3213
3213
|
fingerprint();
|
|
@@ -12540,7 +12540,7 @@ function PinProvider({ children }) {
|
|
|
12540
12540
|
if (provider && typeof provider.setRequestPinCallback === "function") {
|
|
12541
12541
|
provider.setRequestPinCallback(() => requestPin("transaction"));
|
|
12542
12542
|
}
|
|
12543
|
-
} catch (
|
|
12543
|
+
} catch (_error) {
|
|
12544
12544
|
}
|
|
12545
12545
|
};
|
|
12546
12546
|
getProvider();
|
|
@@ -12551,7 +12551,7 @@ function PinProvider({ children }) {
|
|
|
12551
12551
|
if (provider && typeof provider.setRequestPinCallback === "function") {
|
|
12552
12552
|
provider.setRequestPinCallback(void 0);
|
|
12553
12553
|
}
|
|
12554
|
-
} catch (
|
|
12554
|
+
} catch (_error) {
|
|
12555
12555
|
}
|
|
12556
12556
|
};
|
|
12557
12557
|
cleanup();
|
|
@@ -12576,14 +12576,14 @@ function PinProvider({ children }) {
|
|
|
12576
12576
|
function usePin() {
|
|
12577
12577
|
const context = useContext31(PinContext);
|
|
12578
12578
|
if (!context) {
|
|
12579
|
-
|
|
12580
|
-
|
|
12581
|
-
|
|
12579
|
+
return {
|
|
12580
|
+
requestPin: async () => {
|
|
12581
|
+
if (typeof window === "undefined") {
|
|
12582
12582
|
throw new Error("PIN requests are only available on the client side");
|
|
12583
12583
|
}
|
|
12584
|
-
|
|
12585
|
-
|
|
12586
|
-
|
|
12584
|
+
throw new Error("PIN provider not available");
|
|
12585
|
+
}
|
|
12586
|
+
};
|
|
12587
12587
|
}
|
|
12588
12588
|
return context;
|
|
12589
12589
|
}
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
import {
|
|
3
3
|
AbcWaasClient,
|
|
4
4
|
createAbcWaasClient
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-YX4O33NC.js";
|
|
6
6
|
import "../chunk-4PCVQBFZ.js";
|
|
7
7
|
import "../chunk-NDYGTKP5.js";
|
|
8
8
|
import "../chunk-A7FIBI6X.js";
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-RQIUWXDF.js";
|
|
9
|
+
import "../chunk-TYUEB4VT.js";
|
|
11
10
|
import "../chunk-VETRBBA2.js";
|
|
11
|
+
import "../chunk-RQIUWXDF.js";
|
|
12
12
|
export {
|
|
13
13
|
AbcWaasClient,
|
|
14
14
|
createAbcWaasClient
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
import {
|
|
3
3
|
AbcBitcoinConnector,
|
|
4
4
|
createAbcBitcoinConnector
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-YCZ4CZQ6.js";
|
|
6
6
|
import "../chunk-A7FIBI6X.js";
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-RQIUWXDF.js";
|
|
7
|
+
import "../chunk-TYUEB4VT.js";
|
|
9
8
|
import "../chunk-VETRBBA2.js";
|
|
9
|
+
import "../chunk-RQIUWXDF.js";
|
|
10
10
|
export {
|
|
11
11
|
AbcBitcoinConnector,
|
|
12
12
|
createAbcBitcoinConnector
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
abcConnector
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-HJFZF4V3.js";
|
|
5
|
+
import "../chunk-CZVBS7QE.js";
|
|
6
|
+
import "../chunk-YX4O33NC.js";
|
|
7
7
|
import "../chunk-4PCVQBFZ.js";
|
|
8
8
|
import "../chunk-NDYGTKP5.js";
|
|
9
9
|
import "../chunk-A7FIBI6X.js";
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-RQIUWXDF.js";
|
|
10
|
+
import "../chunk-TYUEB4VT.js";
|
|
12
11
|
import "../chunk-VETRBBA2.js";
|
|
12
|
+
import "../chunk-RQIUWXDF.js";
|
|
13
13
|
export {
|
|
14
14
|
abcConnector
|
|
15
15
|
};
|
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
AbcEvmProvider,
|
|
4
4
|
createAbcEvmProvider,
|
|
5
5
|
createAbcProvider
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-RQIUWXDF.js";
|
|
6
|
+
} from "../chunk-CZVBS7QE.js";
|
|
7
|
+
import "../chunk-TYUEB4VT.js";
|
|
9
8
|
import "../chunk-VETRBBA2.js";
|
|
9
|
+
import "../chunk-RQIUWXDF.js";
|
|
10
10
|
export {
|
|
11
11
|
AbcEvmProvider,
|
|
12
12
|
createAbcEvmProvider,
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
SolanaApi
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-XKGUE56S.js";
|
|
5
|
+
import "../chunk-LQ2U33WM.js";
|
|
6
6
|
import {
|
|
7
7
|
createAbcWaasClient
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-YX4O33NC.js";
|
|
9
9
|
import "../chunk-4PCVQBFZ.js";
|
|
10
10
|
import "../chunk-NDYGTKP5.js";
|
|
11
11
|
import "../chunk-A7FIBI6X.js";
|
|
12
|
-
import "../chunk-
|
|
13
|
-
import "../chunk-RQIUWXDF.js";
|
|
12
|
+
import "../chunk-TYUEB4VT.js";
|
|
14
13
|
import "../chunk-VETRBBA2.js";
|
|
14
|
+
import "../chunk-RQIUWXDF.js";
|
|
15
15
|
|
|
16
16
|
// src/wallets/walletConnectors/abcWallet/abcSolanaWalletAdapter.ts
|
|
17
17
|
import {
|
|
@@ -1,16 +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";
|
|
13
|
+
import "../chunk-RQIUWXDF.js";
|
|
14
14
|
export {
|
|
15
15
|
abcWallet
|
|
16
16
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
AuthApi
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-QCIIXMAZ.js";
|
|
5
|
+
import "../../chunk-LQ2U33WM.js";
|
|
6
6
|
import "../../chunk-NDYGTKP5.js";
|
|
7
|
-
import "../../chunk-
|
|
8
|
-
import "../../chunk-RQIUWXDF.js";
|
|
7
|
+
import "../../chunk-TYUEB4VT.js";
|
|
9
8
|
import "../../chunk-VETRBBA2.js";
|
|
9
|
+
import "../../chunk-RQIUWXDF.js";
|
|
10
10
|
export {
|
|
11
11
|
AuthApi
|
|
12
12
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
BaseApiClient
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-LQ2U33WM.js";
|
|
5
5
|
import "../../chunk-NDYGTKP5.js";
|
|
6
|
-
import "../../chunk-
|
|
7
|
-
import "../../chunk-RQIUWXDF.js";
|
|
6
|
+
import "../../chunk-TYUEB4VT.js";
|
|
8
7
|
import "../../chunk-VETRBBA2.js";
|
|
8
|
+
import "../../chunk-RQIUWXDF.js";
|
|
9
9
|
export {
|
|
10
10
|
BaseApiClient
|
|
11
11
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
BitcoinApi
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-KB7OGAUC.js";
|
|
5
|
+
import "../../chunk-LQ2U33WM.js";
|
|
6
6
|
import "../../chunk-NDYGTKP5.js";
|
|
7
|
-
import "../../chunk-
|
|
8
|
-
import "../../chunk-RQIUWXDF.js";
|
|
7
|
+
import "../../chunk-TYUEB4VT.js";
|
|
9
8
|
import "../../chunk-VETRBBA2.js";
|
|
9
|
+
import "../../chunk-RQIUWXDF.js";
|
|
10
10
|
export {
|
|
11
11
|
BitcoinApi
|
|
12
12
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
SigningApi
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-2HAU36T2.js";
|
|
5
|
+
import "../../chunk-LQ2U33WM.js";
|
|
6
6
|
import "../../chunk-4PCVQBFZ.js";
|
|
7
7
|
import "../../chunk-NDYGTKP5.js";
|
|
8
|
-
import "../../chunk-
|
|
9
|
-
import "../../chunk-RQIUWXDF.js";
|
|
8
|
+
import "../../chunk-TYUEB4VT.js";
|
|
10
9
|
import "../../chunk-VETRBBA2.js";
|
|
10
|
+
import "../../chunk-RQIUWXDF.js";
|
|
11
11
|
export {
|
|
12
12
|
SigningApi
|
|
13
13
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
SolanaApi
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-XKGUE56S.js";
|
|
5
|
+
import "../../chunk-LQ2U33WM.js";
|
|
6
6
|
import "../../chunk-NDYGTKP5.js";
|
|
7
7
|
import "../../chunk-A7FIBI6X.js";
|
|
8
|
-
import "../../chunk-
|
|
9
|
-
import "../../chunk-RQIUWXDF.js";
|
|
8
|
+
import "../../chunk-TYUEB4VT.js";
|
|
10
9
|
import "../../chunk-VETRBBA2.js";
|
|
10
|
+
import "../../chunk-RQIUWXDF.js";
|
|
11
11
|
export {
|
|
12
12
|
SolanaApi
|
|
13
13
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
TransactionApi
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-B56IHEUP.js";
|
|
5
|
+
import "../../chunk-LQ2U33WM.js";
|
|
6
6
|
import "../../chunk-4PCVQBFZ.js";
|
|
7
7
|
import "../../chunk-NDYGTKP5.js";
|
|
8
|
-
import "../../chunk-
|
|
9
|
-
import "../../chunk-RQIUWXDF.js";
|
|
8
|
+
import "../../chunk-TYUEB4VT.js";
|
|
10
9
|
import "../../chunk-VETRBBA2.js";
|
|
10
|
+
import "../../chunk-RQIUWXDF.js";
|
|
11
11
|
export {
|
|
12
12
|
TransactionApi
|
|
13
13
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
WalletApi
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-MPNSYA4E.js";
|
|
5
|
+
import "../../chunk-LQ2U33WM.js";
|
|
6
6
|
import "../../chunk-NDYGTKP5.js";
|
|
7
7
|
import "../../chunk-A7FIBI6X.js";
|
|
8
|
-
import "../../chunk-
|
|
9
|
-
import "../../chunk-RQIUWXDF.js";
|
|
8
|
+
import "../../chunk-TYUEB4VT.js";
|
|
10
9
|
import "../../chunk-VETRBBA2.js";
|
|
10
|
+
import "../../chunk-RQIUWXDF.js";
|
|
11
11
|
export {
|
|
12
12
|
WalletApi
|
|
13
13
|
};
|
|
@@ -2,34 +2,34 @@
|
|
|
2
2
|
import {
|
|
3
3
|
AbcWaasApiClient,
|
|
4
4
|
createAbcWaasApiClient
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-FKPSLKA7.js";
|
|
6
6
|
import {
|
|
7
7
|
TransactionApi
|
|
8
|
-
} from "../../chunk-
|
|
8
|
+
} from "../../chunk-B56IHEUP.js";
|
|
9
9
|
import {
|
|
10
10
|
WalletApi
|
|
11
|
-
} from "../../chunk-
|
|
11
|
+
} from "../../chunk-MPNSYA4E.js";
|
|
12
12
|
import {
|
|
13
13
|
AuthApi
|
|
14
|
-
} from "../../chunk-
|
|
14
|
+
} from "../../chunk-QCIIXMAZ.js";
|
|
15
15
|
import {
|
|
16
16
|
BitcoinApi
|
|
17
|
-
} from "../../chunk-
|
|
17
|
+
} from "../../chunk-KB7OGAUC.js";
|
|
18
18
|
import {
|
|
19
19
|
SigningApi
|
|
20
|
-
} from "../../chunk-
|
|
20
|
+
} from "../../chunk-2HAU36T2.js";
|
|
21
21
|
import {
|
|
22
22
|
SolanaApi
|
|
23
|
-
} from "../../chunk-
|
|
23
|
+
} from "../../chunk-XKGUE56S.js";
|
|
24
24
|
import {
|
|
25
25
|
BaseApiClient
|
|
26
|
-
} from "../../chunk-
|
|
26
|
+
} from "../../chunk-LQ2U33WM.js";
|
|
27
27
|
import "../../chunk-4PCVQBFZ.js";
|
|
28
28
|
import "../../chunk-NDYGTKP5.js";
|
|
29
29
|
import "../../chunk-A7FIBI6X.js";
|
|
30
|
-
import "../../chunk-
|
|
31
|
-
import "../../chunk-RQIUWXDF.js";
|
|
30
|
+
import "../../chunk-TYUEB4VT.js";
|
|
32
31
|
import "../../chunk-VETRBBA2.js";
|
|
32
|
+
import "../../chunk-RQIUWXDF.js";
|
|
33
33
|
export {
|
|
34
34
|
AbcWaasApiClient,
|
|
35
35
|
AuthApi,
|
|
@@ -2,19 +2,23 @@
|
|
|
2
2
|
import {
|
|
3
3
|
AbcWaasApiClient,
|
|
4
4
|
createAbcWaasApiClient
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-FKPSLKA7.js";
|
|
6
|
+
import "../chunk-B56IHEUP.js";
|
|
7
|
+
import "../chunk-MPNSYA4E.js";
|
|
8
8
|
import {
|
|
9
9
|
generateMpcWallets,
|
|
10
10
|
recoverMpcWallets,
|
|
11
11
|
validateMpcWallets
|
|
12
12
|
} from "../chunk-UZXTNCDO.js";
|
|
13
|
-
import "../chunk-
|
|
13
|
+
import "../chunk-QCIIXMAZ.js";
|
|
14
14
|
import {
|
|
15
15
|
BitcoinApi
|
|
16
|
-
} from "../chunk-
|
|
17
|
-
import "../chunk-
|
|
16
|
+
} from "../chunk-KB7OGAUC.js";
|
|
17
|
+
import "../chunk-2HAU36T2.js";
|
|
18
|
+
import {
|
|
19
|
+
AbcBitcoinConnector,
|
|
20
|
+
createAbcBitcoinConnector
|
|
21
|
+
} from "../chunk-YCZ4CZQ6.js";
|
|
18
22
|
import {
|
|
19
23
|
SessionExpiredError,
|
|
20
24
|
dispatchSessionExpired,
|
|
@@ -22,10 +26,6 @@ import {
|
|
|
22
26
|
handleUnauthorizedResponse,
|
|
23
27
|
refreshAccessToken
|
|
24
28
|
} from "../chunk-AO24PU7X.js";
|
|
25
|
-
import {
|
|
26
|
-
AbcBitcoinConnector,
|
|
27
|
-
createAbcBitcoinConnector
|
|
28
|
-
} from "../chunk-2NAY6X3G.js";
|
|
29
29
|
import {
|
|
30
30
|
AbcBitcoinProvider,
|
|
31
31
|
BITCOIN_NETWORKS,
|
|
@@ -35,23 +35,23 @@ import {
|
|
|
35
35
|
AbcSolanaProvider,
|
|
36
36
|
SolanaProviderError
|
|
37
37
|
} from "../chunk-BH2VZAMQ.js";
|
|
38
|
-
import "../chunk-
|
|
39
|
-
import "../chunk-
|
|
38
|
+
import "../chunk-XKGUE56S.js";
|
|
39
|
+
import "../chunk-LQ2U33WM.js";
|
|
40
40
|
import {
|
|
41
41
|
abcWallet
|
|
42
|
-
} from "../chunk-
|
|
42
|
+
} from "../chunk-AGC7JS5M.js";
|
|
43
43
|
import {
|
|
44
44
|
abcConnector
|
|
45
|
-
} from "../chunk-
|
|
45
|
+
} from "../chunk-HJFZF4V3.js";
|
|
46
46
|
import {
|
|
47
47
|
AbcEvmProvider,
|
|
48
48
|
createAbcEvmProvider,
|
|
49
49
|
createAbcProvider
|
|
50
|
-
} from "../chunk-
|
|
50
|
+
} from "../chunk-CZVBS7QE.js";
|
|
51
51
|
import {
|
|
52
52
|
AbcWaasClient,
|
|
53
53
|
createAbcWaasClient
|
|
54
|
-
} from "../chunk-
|
|
54
|
+
} from "../chunk-YX4O33NC.js";
|
|
55
55
|
import "../chunk-4PCVQBFZ.js";
|
|
56
56
|
import {
|
|
57
57
|
secure_default
|
|
@@ -95,12 +95,7 @@ import {
|
|
|
95
95
|
throttle,
|
|
96
96
|
validateEmail,
|
|
97
97
|
validatePin
|
|
98
|
-
} from "../chunk-
|
|
99
|
-
import {
|
|
100
|
-
AbcError,
|
|
101
|
-
AbcErrorCode,
|
|
102
|
-
AbcStorageKey
|
|
103
|
-
} from "../chunk-RQIUWXDF.js";
|
|
98
|
+
} from "../chunk-TYUEB4VT.js";
|
|
104
99
|
import {
|
|
105
100
|
ABC_AUDIENCE,
|
|
106
101
|
ABC_ENDPOINTS,
|
|
@@ -126,6 +121,11 @@ import {
|
|
|
126
121
|
SUCCESS_MESSAGES,
|
|
127
122
|
TOKEN_EXPIRY
|
|
128
123
|
} from "../chunk-VETRBBA2.js";
|
|
124
|
+
import {
|
|
125
|
+
AbcError,
|
|
126
|
+
AbcErrorCode,
|
|
127
|
+
AbcStorageKey
|
|
128
|
+
} from "../chunk-RQIUWXDF.js";
|
|
129
129
|
export {
|
|
130
130
|
ABC_AUDIENCE,
|
|
131
131
|
ABC_ENDPOINTS,
|
|
@@ -35,9 +35,9 @@ import {
|
|
|
35
35
|
throttle,
|
|
36
36
|
validateEmail,
|
|
37
37
|
validatePin
|
|
38
|
-
} from "../chunk-
|
|
39
|
-
import "../chunk-RQIUWXDF.js";
|
|
38
|
+
} from "../chunk-TYUEB4VT.js";
|
|
40
39
|
import "../chunk-VETRBBA2.js";
|
|
40
|
+
import "../chunk-RQIUWXDF.js";
|
|
41
41
|
export {
|
|
42
42
|
calculateExpiryTimestamp,
|
|
43
43
|
clearAuthState,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bifrostWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-B6DM7J4N.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
|
bifrostWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
binanceWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-4T3UOJYR.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
|
binanceWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bitgetWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-CULIWWLV.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
|
bitgetWallet
|
|
10
10
|
};
|
|
@@ -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,179 +27,182 @@ 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
|
+
import {
|
|
42
|
+
safepalWallet
|
|
43
|
+
} from "./chunk-ATQWOE4J.js";
|
|
41
44
|
import {
|
|
42
45
|
seifWallet
|
|
43
46
|
} from "./chunk-Y3E6EZ7J.js";
|
|
44
47
|
import {
|
|
45
|
-
|
|
46
|
-
} from "./chunk-
|
|
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";
|
|
59
|
+
import {
|
|
60
|
+
trustWallet
|
|
61
|
+
} from "./chunk-S2PY4MDO.js";
|
|
62
62
|
import {
|
|
63
63
|
paraSwapWallet
|
|
64
64
|
} from "./chunk-FF7ZXD5C.js";
|
|
65
65
|
import {
|
|
66
|
-
|
|
67
|
-
} from "./chunk-
|
|
66
|
+
rabbyWallet
|
|
67
|
+
} from "./chunk-3RMYBZQG.js";
|
|
68
68
|
import {
|
|
69
|
-
|
|
70
|
-
} from "./chunk-
|
|
69
|
+
frontierWallet
|
|
70
|
+
} from "./chunk-JWO4ZQLK.js";
|
|
71
|
+
import {
|
|
72
|
+
oneKeyWallet
|
|
73
|
+
} from "./chunk-6UGYPEQE.js";
|
|
71
74
|
import {
|
|
72
75
|
ramperWallet
|
|
73
76
|
} from "./chunk-OX3PQBV2.js";
|
|
74
|
-
import {
|
|
75
|
-
rainbowWallet
|
|
76
|
-
} from "./chunk-6C3GUS6I.js";
|
|
77
|
-
import {
|
|
78
|
-
rabbyWallet
|
|
79
|
-
} from "./chunk-3RMYBZQG.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
95
|
import {
|
|
99
|
-
|
|
100
|
-
} from "./chunk-
|
|
96
|
+
okxWallet
|
|
97
|
+
} from "./chunk-Z2E65XSS.js";
|
|
98
|
+
import {
|
|
99
|
+
krakenWallet
|
|
100
|
+
} from "./chunk-CYOZFCR6.js";
|
|
101
101
|
import {
|
|
102
102
|
omniWallet
|
|
103
103
|
} from "./chunk-RGPO7AY3.js";
|
|
104
104
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
105
|
+
oneInchWallet
|
|
106
|
+
} from "./chunk-OJT577AY.js";
|
|
107
107
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
108
|
+
phantomWallet
|
|
109
|
+
} from "./chunk-DMQ4RXIY.js";
|
|
110
|
+
import {
|
|
111
|
+
iopayWallet
|
|
112
|
+
} from "./chunk-2W6UBYKX.js";
|
|
110
113
|
import {
|
|
111
114
|
imTokenWallet
|
|
112
115
|
} from "./chunk-EHE2536P.js";
|
|
113
|
-
import {
|
|
114
|
-
injectedWallet
|
|
115
|
-
} from "./chunk-GDGRUMZB.js";
|
|
116
116
|
import {
|
|
117
117
|
kaiaWallet
|
|
118
|
-
} from "./chunk-
|
|
119
|
-
import {
|
|
120
|
-
krakenWallet
|
|
121
|
-
} from "./chunk-CYOZFCR6.js";
|
|
122
|
-
import {
|
|
123
|
-
iopayWallet
|
|
124
|
-
} from "./chunk-A2XAHJNR.js";
|
|
125
|
-
import {
|
|
126
|
-
kaikasWallet
|
|
127
|
-
} from "./chunk-MUJPEDFF.js";
|
|
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
|
-
|
|
181
|
-
} from "./chunk-
|
|
182
|
-
import {
|
|
183
|
-
argentWallet
|
|
184
|
-
} from "./chunk-XT2WYPN5.js";
|
|
185
|
-
import {
|
|
186
|
-
berasigWallet
|
|
187
|
-
} from "./chunk-UZWMFUJU.js";
|
|
180
|
+
compassWallet
|
|
181
|
+
} from "./chunk-3OO564GS.js";
|
|
188
182
|
import {
|
|
189
183
|
bestWallet
|
|
190
184
|
} from "./chunk-OPAPBEA5.js";
|
|
191
185
|
import {
|
|
192
186
|
bifrostWallet
|
|
193
|
-
} from "./chunk-
|
|
187
|
+
} from "./chunk-B6DM7J4N.js";
|
|
194
188
|
import {
|
|
195
|
-
|
|
196
|
-
} from "./chunk-
|
|
189
|
+
argentWallet
|
|
190
|
+
} from "./chunk-XT2WYPN5.js";
|
|
191
|
+
import {
|
|
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
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
okxWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-Z2E65XSS.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
|
okxWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
rainbowWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-JBVBQUCS.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
|
rainbowWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
tokenPocketWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-5NM2LK2G.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
|
tokenPocketWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
trustWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-S2PY4MDO.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
|
trustWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
zerionWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-53IBFGVW.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
|
zerionWallet
|
|
10
10
|
};
|