@funkit/connect 1.0.2 → 1.0.3

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 (54) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/{chunk-C2QHNJBG.js → chunk-MQTK22MG.js} +3 -1
  3. package/dist/{chunk-U4FFX2HZ.js → chunk-SWTU7PBZ.js} +3 -1
  4. package/dist/components/FunkitProvider/FunkitCheckoutContext.d.ts +8 -5
  5. package/dist/components/FunkitProvider/FunkitThemeProvider.d.ts +4 -4
  6. package/dist/index.js +27 -16
  7. package/dist/themes/baseTheme.d.ts +1 -0
  8. package/dist/themes/darkTheme.d.ts +5 -5
  9. package/dist/themes/darkTheme.js +1 -1
  10. package/dist/themes/lightTheme.d.ts +3 -3
  11. package/dist/themes/lightTheme.js +1 -1
  12. package/dist/utils/checkout.d.ts +1 -1
  13. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  14. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  15. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  16. package/dist/wallets/walletConnectors/chunk-2GAW2UBU.js +102 -0
  17. package/dist/wallets/walletConnectors/chunk-2PC2XXUH.js +94 -0
  18. package/dist/wallets/walletConnectors/chunk-75A2U7T7.js +100 -0
  19. package/dist/wallets/walletConnectors/chunk-CUKVUCIP.js +98 -0
  20. package/dist/wallets/walletConnectors/chunk-FDIIMYTB.js +73 -0
  21. package/dist/wallets/walletConnectors/chunk-GW6EF4G2.js +92 -0
  22. package/dist/wallets/walletConnectors/chunk-IBWFKX7P.js +94 -0
  23. package/dist/wallets/walletConnectors/chunk-N3VZE65M.js +98 -0
  24. package/dist/wallets/walletConnectors/chunk-OAEJQOAV.js +105 -0
  25. package/dist/wallets/walletConnectors/chunk-OKWOB3DN.js +66 -0
  26. package/dist/wallets/walletConnectors/chunk-OR3PU2W4.js +95 -0
  27. package/dist/wallets/walletConnectors/chunk-RTW6PVQI.js +107 -0
  28. package/dist/wallets/walletConnectors/chunk-SL4VH23R.js +71 -0
  29. package/dist/wallets/walletConnectors/chunk-SQGFKNNZ.js +102 -0
  30. package/dist/wallets/walletConnectors/chunk-T6JVHES7.js +87 -0
  31. package/dist/wallets/walletConnectors/chunk-VWZEDVW6.js +27 -0
  32. package/dist/wallets/walletConnectors/chunk-X255T3C4.js +178 -0
  33. package/dist/wallets/walletConnectors/chunk-XSSD5ZVD.js +96 -0
  34. package/dist/wallets/walletConnectors/chunk-YC7XNS7C.js +98 -0
  35. package/dist/wallets/walletConnectors/chunk-Z2HIQYVN.js +96 -0
  36. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  38. package/dist/wallets/walletConnectors/coinbaseWallet/coinbaseWallet.js +2 -2
  39. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  40. package/dist/wallets/walletConnectors/dawnWallet/dawnWallet.js +2 -2
  41. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  42. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  43. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  44. package/dist/wallets/walletConnectors/index.js +72 -72
  45. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  46. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  47. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  48. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  49. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  50. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  51. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  52. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  53. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  54. package/package.json +3 -3
@@ -0,0 +1,96 @@
1
+ "use client";
2
+ import {
3
+ getInjectedConnector,
4
+ hasInjectedProvider
5
+ } from "./chunk-QII6PY2D.js";
6
+ import {
7
+ isAndroid
8
+ } from "./chunk-ZOLACFTK.js";
9
+ import {
10
+ getWalletConnectConnector
11
+ } from "./chunk-ZDU3JFGR.js";
12
+
13
+ // src/wallets/walletConnectors/okxWallet/okxWallet.ts
14
+ var okxWallet = ({
15
+ projectId,
16
+ walletConnectParameters
17
+ }) => {
18
+ const isOKXInjected = hasInjectedProvider({ namespace: "okxwallet" });
19
+ const shouldUseWalletConnect = !isOKXInjected;
20
+ return {
21
+ id: "okx",
22
+ name: "OKX Wallet",
23
+ rdns: "com.okex.wallet",
24
+ iconUrl: async () => (await import("./okxWallet-GKYMI2XW.js")).default,
25
+ iconAccent: "#000",
26
+ iconBackground: "#000",
27
+ downloadUrls: {
28
+ android: "https://play.google.com/store/apps/details?id=com.okinc.okex.gp",
29
+ ios: "https://itunes.apple.com/app/id1327268470?mt=8",
30
+ mobile: "https://okx.com/download",
31
+ qrCode: "https://okx.com/download",
32
+ chrome: "https://chrome.google.com/webstore/detail/okx-wallet/mcohilncbfahbmgdjkbpemcciiolgcge",
33
+ edge: "https://microsoftedge.microsoft.com/addons/detail/okx-wallet/pbpjkcldjiffchgbbndmhojiacbgflha",
34
+ firefox: "https://addons.mozilla.org/firefox/addon/okexwallet/",
35
+ browserExtension: "https://okx.com/download"
36
+ },
37
+ mobile: {
38
+ getUri: shouldUseWalletConnect ? (uri) => {
39
+ return isAndroid() ? uri : `okex://main/wc?uri=${encodeURIComponent(uri)}`;
40
+ } : void 0
41
+ },
42
+ qrCode: shouldUseWalletConnect ? {
43
+ getUri: (uri) => uri,
44
+ instructions: {
45
+ learnMoreUrl: "https://okx.com/web3/",
46
+ steps: [
47
+ {
48
+ description: "wallet_connectors.okx.qr_code.step1.description",
49
+ step: "install",
50
+ title: "wallet_connectors.okx.qr_code.step1.title"
51
+ },
52
+ {
53
+ description: "wallet_connectors.okx.qr_code.step2.description",
54
+ step: "create",
55
+ title: "wallet_connectors.okx.qr_code.step2.title"
56
+ },
57
+ {
58
+ description: "wallet_connectors.okx.qr_code.step3.description",
59
+ step: "scan",
60
+ title: "wallet_connectors.okx.qr_code.step3.title"
61
+ }
62
+ ]
63
+ }
64
+ } : void 0,
65
+ extension: {
66
+ instructions: {
67
+ learnMoreUrl: "https://okx.com/web3/",
68
+ steps: [
69
+ {
70
+ description: "wallet_connectors.okx.extension.step1.description",
71
+ step: "install",
72
+ title: "wallet_connectors.okx.extension.step1.title"
73
+ },
74
+ {
75
+ description: "wallet_connectors.okx.extension.step2.description",
76
+ step: "create",
77
+ title: "wallet_connectors.okx.extension.step2.title"
78
+ },
79
+ {
80
+ description: "wallet_connectors.okx.extension.step3.description",
81
+ step: "refresh",
82
+ title: "wallet_connectors.okx.extension.step3.title"
83
+ }
84
+ ]
85
+ }
86
+ },
87
+ createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
88
+ projectId,
89
+ walletConnectParameters
90
+ }) : getInjectedConnector({ namespace: "okxwallet" })
91
+ };
92
+ };
93
+
94
+ export {
95
+ okxWallet
96
+ };
@@ -0,0 +1,98 @@
1
+ "use client";
2
+ import {
3
+ hasInjectedProvider
4
+ } from "./chunk-QII6PY2D.js";
5
+ import {
6
+ isIOS
7
+ } from "./chunk-ZOLACFTK.js";
8
+
9
+ // src/wallets/walletConnectors/coinbaseWallet/coinbaseWallet.ts
10
+ import { createConnector } from "wagmi";
11
+ import { coinbaseWallet as coinbaseWagmiWallet } from "wagmi/connectors";
12
+ var coinbaseWallet = ({
13
+ appName,
14
+ appIcon
15
+ }) => {
16
+ const isCoinbaseWalletInjected = hasInjectedProvider({
17
+ flag: "isCoinbaseWallet"
18
+ });
19
+ const getUri = (uri) => uri;
20
+ const ios = isIOS();
21
+ return {
22
+ id: "coinbase",
23
+ name: "Coinbase Wallet",
24
+ shortName: "Coinbase",
25
+ rdns: "com.coinbase.wallet",
26
+ iconUrl: async () => (await import("./coinbaseWallet-2OUR5TUP.js")).default,
27
+ iconAccent: "#2c5ff6",
28
+ iconBackground: "#2c5ff6",
29
+ installed: isCoinbaseWalletInjected || void 0,
30
+ downloadUrls: {
31
+ android: "https://play.google.com/store/apps/details?id=org.toshi",
32
+ ios: "https://apps.apple.com/us/app/coinbase-wallet-store-crypto/id1278383455",
33
+ mobile: "https://coinbase.com/wallet/downloads",
34
+ qrCode: "https://coinbase-wallet.onelink.me/q5Sx/fdb9b250",
35
+ chrome: "https://chrome.google.com/webstore/detail/coinbase-wallet-extension/hnfanknocfeofbddgcijnmhnfnkdnaad",
36
+ browserExtension: "https://coinbase.com/wallet"
37
+ },
38
+ ...ios ? {} : {
39
+ qrCode: {
40
+ getUri,
41
+ instructions: {
42
+ learnMoreUrl: "https://coinbase.com/wallet/articles/getting-started-mobile",
43
+ steps: [
44
+ {
45
+ description: "wallet_connectors.coinbase.qr_code.step1.description",
46
+ step: "install",
47
+ title: "wallet_connectors.coinbase.qr_code.step1.title"
48
+ },
49
+ {
50
+ description: "wallet_connectors.coinbase.qr_code.step2.description",
51
+ step: "create",
52
+ title: "wallet_connectors.coinbase.qr_code.step2.title"
53
+ },
54
+ {
55
+ description: "wallet_connectors.coinbase.qr_code.step3.description",
56
+ step: "scan",
57
+ title: "wallet_connectors.coinbase.qr_code.step3.title"
58
+ }
59
+ ]
60
+ }
61
+ },
62
+ extension: {
63
+ instructions: {
64
+ learnMoreUrl: "https://coinbase.com/wallet/articles/getting-started-extension",
65
+ steps: [
66
+ {
67
+ description: "wallet_connectors.coinbase.extension.step1.description",
68
+ step: "install",
69
+ title: "wallet_connectors.coinbase.extension.step1.title"
70
+ },
71
+ {
72
+ description: "wallet_connectors.coinbase.extension.step2.description",
73
+ step: "create",
74
+ title: "wallet_connectors.coinbase.extension.step2.title"
75
+ },
76
+ {
77
+ description: "wallet_connectors.coinbase.extension.step3.description",
78
+ step: "refresh",
79
+ title: "wallet_connectors.coinbase.extension.step3.title"
80
+ }
81
+ ]
82
+ }
83
+ }
84
+ },
85
+ createConnector: (walletDetails) => createConnector((config) => ({
86
+ ...coinbaseWagmiWallet({
87
+ appName,
88
+ appLogoUrl: appIcon,
89
+ headlessMode: true
90
+ })(config),
91
+ ...walletDetails
92
+ }))
93
+ };
94
+ };
95
+
96
+ export {
97
+ coinbaseWallet
98
+ };
@@ -0,0 +1,96 @@
1
+ "use client";
2
+ import {
3
+ getInjectedConnector,
4
+ hasInjectedProvider
5
+ } from "./chunk-QII6PY2D.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-ZDU3JFGR.js";
9
+
10
+ // src/wallets/walletConnectors/coin98Wallet/coin98Wallet.ts
11
+ var coin98Wallet = ({
12
+ projectId,
13
+ walletConnectParameters
14
+ }) => {
15
+ const isCoin98WalletInjected = hasInjectedProvider({
16
+ namespace: "coin98.provider",
17
+ flag: "isCoin98"
18
+ });
19
+ const shouldUseWalletConnect = !isCoin98WalletInjected;
20
+ return {
21
+ id: "coin98",
22
+ name: "Coin98 Wallet",
23
+ iconUrl: async () => (await import("./coin98Wallet-7Q4WNBWR.js")).default,
24
+ installed: isCoin98WalletInjected,
25
+ iconAccent: "#CDA349",
26
+ iconBackground: "#fff",
27
+ rdns: "coin98.com",
28
+ downloadUrls: {
29
+ android: "https://play.google.com/store/apps/details?id=coin98.crypto.finance.media",
30
+ ios: "https://apps.apple.com/vn/app/coin98-super-app/id1561969966",
31
+ mobile: "https://coin98.com/wallet",
32
+ qrCode: "https://coin98.com/wallet",
33
+ chrome: "https://chrome.google.com/webstore/detail/coin98-wallet/aeachknmefphepccionboohckonoeemg",
34
+ browserExtension: "https://coin98.com/wallet"
35
+ },
36
+ mobile: {
37
+ getUri: shouldUseWalletConnect ? (uri) => uri : void 0
38
+ },
39
+ qrCode: shouldUseWalletConnect ? {
40
+ getUri: (uri) => uri,
41
+ instructions: {
42
+ learnMoreUrl: "https://coin98.com/wallet",
43
+ steps: [
44
+ {
45
+ description: "wallet_connectors.coin98.qr_code.step1.description",
46
+ step: "install",
47
+ title: "wallet_connectors.coin98.qr_code.step1.title"
48
+ },
49
+ {
50
+ description: "wallet_connectors.coin98.qr_code.step2.description",
51
+ step: "create",
52
+ title: "wallet_connectors.coin98.qr_code.step2.title"
53
+ },
54
+ {
55
+ description: "wallet_connectors.coin98.qr_code.step3.description",
56
+ step: "scan",
57
+ title: "wallet_connectors.coin98.qr_code.step3.title"
58
+ }
59
+ ]
60
+ }
61
+ } : void 0,
62
+ extension: {
63
+ instructions: {
64
+ learnMoreUrl: "https://coin98.com/wallet",
65
+ steps: [
66
+ {
67
+ description: "wallet_connectors.coin98.extension.step1.description",
68
+ step: "install",
69
+ title: "wallet_connectors.coin98.extension.step1.title"
70
+ },
71
+ {
72
+ description: "wallet_connectors.coin98.extension.step2.description",
73
+ step: "create",
74
+ title: "wallet_connectors.coin98.extension.step2.title"
75
+ },
76
+ {
77
+ description: "wallet_connectors.coin98.extension.step3.description",
78
+ step: "refresh",
79
+ title: "wallet_connectors.coin98.extension.step3.title"
80
+ }
81
+ ]
82
+ }
83
+ },
84
+ createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
85
+ projectId,
86
+ walletConnectParameters
87
+ }) : getInjectedConnector({
88
+ namespace: "coin98Wallet",
89
+ flag: "isCoin98"
90
+ })
91
+ };
92
+ };
93
+
94
+ export {
95
+ coin98Wallet
96
+ };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  clvWallet
4
- } from "../chunk-MIWCKFYE.js";
5
- import "../chunk-ZDU3JFGR.js";
4
+ } from "../chunk-T6JVHES7.js";
6
5
  import "../chunk-QII6PY2D.js";
6
+ import "../chunk-ZDU3JFGR.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-4FQLUQNA.js";
5
- import "../chunk-ZDU3JFGR.js";
4
+ } from "../chunk-Z2HIQYVN.js";
6
5
  import "../chunk-QII6PY2D.js";
6
+ import "../chunk-ZDU3JFGR.js";
7
7
  export {
8
8
  coin98Wallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coinbaseWallet
4
- } from "../chunk-XBUTWYE4.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-YC7XNS7C.js";
6
5
  import "../chunk-QII6PY2D.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  coinbaseWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coreWallet
4
- } from "../chunk-JLQ5HJYV.js";
5
- import "../chunk-ZDU3JFGR.js";
4
+ } from "../chunk-IBWFKX7P.js";
6
5
  import "../chunk-QII6PY2D.js";
6
+ import "../chunk-ZDU3JFGR.js";
7
7
  export {
8
8
  coreWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  dawnWallet
4
- } from "../chunk-4XQDKOGF.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-VWZEDVW6.js";
6
5
  import "../chunk-QII6PY2D.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  dawnWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  foxWallet
4
- } from "../chunk-Q4RLUJJD.js";
5
- import "../chunk-ZDU3JFGR.js";
4
+ } from "../chunk-OKWOB3DN.js";
6
5
  import "../chunk-QII6PY2D.js";
6
+ import "../chunk-ZDU3JFGR.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-AM4SSLAP.js";
4
+ } from "../chunk-N3VZE65M.js";
5
+ import "../chunk-QII6PY2D.js";
5
6
  import "../chunk-ZOLACFTK.js";
6
7
  import "../chunk-ZDU3JFGR.js";
7
- import "../chunk-QII6PY2D.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-V45EXW7A.js";
4
+ } from "../chunk-2PC2XXUH.js";
5
+ import "../chunk-QII6PY2D.js";
5
6
  import "../chunk-ZOLACFTK.js";
6
7
  import "../chunk-ZDU3JFGR.js";
7
- import "../chunk-QII6PY2D.js";
8
8
  export {
9
9
  gateWallet
10
10
  };
@@ -3,152 +3,152 @@ import {
3
3
  walletConnectWallet
4
4
  } from "./chunk-ASPRR7T3.js";
5
5
  import {
6
- zealWallet
7
- } from "./chunk-DPXMP5KS.js";
8
- import {
9
- zerionWallet
10
- } from "./chunk-7CQPABJG.js";
6
+ kresusWallet
7
+ } from "./chunk-X6T3CICZ.js";
11
8
  import {
12
- safepalWallet
13
- } from "./chunk-SYELB4QO.js";
9
+ metaMaskWallet
10
+ } from "./chunk-X255T3C4.js";
14
11
  import {
15
- tahoWallet
16
- } from "./chunk-H76YCX2M.js";
12
+ tokenaryWallet
13
+ } from "./chunk-ENZLEAG2.js";
17
14
  import {
18
- talismanWallet
19
- } from "./chunk-H273OTQA.js";
15
+ subWallet
16
+ } from "./chunk-2GAW2UBU.js";
20
17
  import {
21
18
  tokenPocketWallet
22
- } from "./chunk-2UXZAUWT.js";
23
- import {
24
- tokenaryWallet
25
- } from "./chunk-ENZLEAG2.js";
19
+ } from "./chunk-OR3PU2W4.js";
26
20
  import {
27
21
  trustWallet
28
- } from "./chunk-Z2DGDHHZ.js";
22
+ } from "./chunk-OAEJQOAV.js";
29
23
  import {
30
24
  xdefiWallet
31
25
  } from "./chunk-L734HTUS.js";
26
+ import {
27
+ zealWallet
28
+ } from "./chunk-DPXMP5KS.js";
32
29
  import {
33
30
  uniswapWallet
34
31
  } from "./chunk-XRSY4JVH.js";
35
32
  import {
36
- oneKeyWallet
37
- } from "./chunk-4WOV4ITL.js";
38
- import {
39
- rabbyWallet
40
- } from "./chunk-XPEBP6XV.js";
33
+ zerionWallet
34
+ } from "./chunk-SQGFKNNZ.js";
41
35
  import {
42
- rainbowWallet
43
- } from "./chunk-O5NKWWEG.js";
36
+ phantomWallet
37
+ } from "./chunk-KGBLSE7L.js";
44
38
  import {
45
39
  roninWallet
46
- } from "./chunk-LVRXH33E.js";
40
+ } from "./chunk-GW6EF4G2.js";
41
+ import {
42
+ rainbowWallet
43
+ } from "./chunk-FDIIMYTB.js";
47
44
  import {
48
45
  safeWallet
49
46
  } from "./chunk-D3DCQ72J.js";
50
47
  import {
51
- ramperWallet
52
- } from "./chunk-ZOL6ZMTJ.js";
48
+ safepalWallet
49
+ } from "./chunk-RTW6PVQI.js";
50
+ import {
51
+ tahoWallet
52
+ } from "./chunk-H76YCX2M.js";
53
53
  import {
54
54
  safeheronWallet
55
55
  } from "./chunk-63NPZXAL.js";
56
56
  import {
57
- subWallet
58
- } from "./chunk-ZBAQFL6G.js";
57
+ talismanWallet
58
+ } from "./chunk-H273OTQA.js";
59
59
  import {
60
- kresusWallet
61
- } from "./chunk-X6T3CICZ.js";
60
+ oktoWallet
61
+ } from "./chunk-WKHTUEF5.js";
62
62
  import {
63
- metaMaskWallet
64
- } from "./chunk-3WZRNEZH.js";
63
+ okxWallet
64
+ } from "./chunk-XSSD5ZVD.js";
65
65
  import {
66
66
  mewWallet
67
67
  } from "./chunk-PWYTDYBE.js";
68
68
  import {
69
- oktoWallet
70
- } from "./chunk-WKHTUEF5.js";
71
- import {
72
- okxWallet
73
- } from "./chunk-NGXIHASN.js";
69
+ oneInchWallet
70
+ } from "./chunk-LCPIZUR3.js";
74
71
  import {
75
72
  omniWallet
76
73
  } from "./chunk-SVN7OEQR.js";
77
74
  import {
78
- oneInchWallet
79
- } from "./chunk-LCPIZUR3.js";
75
+ oneKeyWallet
76
+ } from "./chunk-4WOV4ITL.js";
80
77
  import {
81
- phantomWallet
82
- } from "./chunk-KGBLSE7L.js";
78
+ rabbyWallet
79
+ } from "./chunk-XPEBP6XV.js";
83
80
  import {
84
- foxWallet
85
- } from "./chunk-Q4RLUJJD.js";
81
+ ramperWallet
82
+ } from "./chunk-ZOL6ZMTJ.js";
86
83
  import {
87
- enkryptWallet
88
- } from "./chunk-FLY7F4XA.js";
84
+ foxWallet
85
+ } from "./chunk-OKWOB3DN.js";
89
86
  import {
90
87
  frontierWallet
91
- } from "./chunk-AM4SSLAP.js";
88
+ } from "./chunk-N3VZE65M.js";
89
+ import {
90
+ frameWallet
91
+ } from "./chunk-XXFJVY73.js";
92
92
  import {
93
93
  imTokenWallet
94
94
  } from "./chunk-5MVV7OVS.js";
95
- import {
96
- gateWallet
97
- } from "./chunk-V45EXW7A.js";
98
95
  import {
99
96
  injectedWallet
100
97
  } from "./chunk-KIHCNUU3.js";
98
+ import {
99
+ gateWallet
100
+ } from "./chunk-2PC2XXUH.js";
101
101
  import {
102
102
  ledgerWallet
103
103
  } from "./chunk-Y6VY6E3L.js";
104
104
  import {
105
- clvWallet
106
- } from "./chunk-MIWCKFYE.js";
105
+ coreWallet
106
+ } from "./chunk-IBWFKX7P.js";
107
107
  import {
108
108
  bybitWallet
109
- } from "./chunk-ZUAHWUEL.js";
109
+ } from "./chunk-CUKVUCIP.js";
110
110
  import {
111
- coreWallet
112
- } from "./chunk-JLQ5HJYV.js";
111
+ clvWallet
112
+ } from "./chunk-T6JVHES7.js";
113
113
  import {
114
114
  coinbaseWallet
115
- } from "./chunk-XBUTWYE4.js";
116
- import {
117
- coin98Wallet
118
- } from "./chunk-4FQLUQNA.js";
115
+ } from "./chunk-YC7XNS7C.js";
119
116
  import {
120
117
  dawnWallet
121
- } from "./chunk-4XQDKOGF.js";
122
- import {
123
- frameWallet
124
- } from "./chunk-XXFJVY73.js";
118
+ } from "./chunk-VWZEDVW6.js";
125
119
  import {
126
120
  desigWallet
127
121
  } from "./chunk-P4JLZ42R.js";
128
122
  import {
129
- argentWallet
130
- } from "./chunk-NZ5G23JP.js";
123
+ coin98Wallet
124
+ } from "./chunk-Z2HIQYVN.js";
131
125
  import {
132
- bitskiWallet
133
- } from "./chunk-C67TQJ6W.js";
126
+ enkryptWallet
127
+ } from "./chunk-FLY7F4XA.js";
134
128
  import {
135
129
  bifrostWallet
136
- } from "./chunk-6LTLPR2Q.js";
130
+ } from "./chunk-SL4VH23R.js";
131
+ import {
132
+ argentWallet
133
+ } from "./chunk-NZ5G23JP.js";
134
+ import {
135
+ braveWallet
136
+ } from "./chunk-ABYQAXUX.js";
137
137
  import {
138
138
  bitverseWallet
139
139
  } from "./chunk-NL4I7WOT.js";
140
+ import {
141
+ bitskiWallet
142
+ } from "./chunk-C67TQJ6W.js";
140
143
  import {
141
144
  bloomWallet
142
145
  } from "./chunk-NTGZF5BY.js";
143
146
  import {
144
147
  bitgetWallet
145
- } from "./chunk-ZNXQ4V6G.js";
148
+ } from "./chunk-75A2U7T7.js";
149
+ import "./chunk-QII6PY2D.js";
146
150
  import "./chunk-ZOLACFTK.js";
147
151
  import "./chunk-ZDU3JFGR.js";
148
- import {
149
- braveWallet
150
- } from "./chunk-ABYQAXUX.js";
151
- import "./chunk-QII6PY2D.js";
152
152
  export {
153
153
  argentWallet,
154
154
  bifrostWallet,
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  metaMaskWallet
4
- } from "../chunk-3WZRNEZH.js";
4
+ } from "../chunk-X255T3C4.js";
5
+ import "../chunk-QII6PY2D.js";
5
6
  import "../chunk-ZOLACFTK.js";
6
7
  import "../chunk-ZDU3JFGR.js";
7
- import "../chunk-QII6PY2D.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-NGXIHASN.js";
4
+ } from "../chunk-XSSD5ZVD.js";
5
+ import "../chunk-QII6PY2D.js";
5
6
  import "../chunk-ZOLACFTK.js";
6
7
  import "../chunk-ZDU3JFGR.js";
7
- import "../chunk-QII6PY2D.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-O5NKWWEG.js";
4
+ } from "../chunk-FDIIMYTB.js";
5
+ import "../chunk-QII6PY2D.js";
5
6
  import "../chunk-ZOLACFTK.js";
6
7
  import "../chunk-ZDU3JFGR.js";
7
- import "../chunk-QII6PY2D.js";
8
8
  export {
9
9
  rainbowWallet
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  roninWallet
4
- } from "../chunk-LVRXH33E.js";
5
- import "../chunk-ZDU3JFGR.js";
4
+ } from "../chunk-GW6EF4G2.js";
6
5
  import "../chunk-QII6PY2D.js";
6
+ import "../chunk-ZDU3JFGR.js";
7
7
  export {
8
8
  roninWallet
9
9
  };