@funkit/connect 0.1.13 → 0.1.14

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 (38) hide show
  1. package/dist/{chunk-UOUEGWLS.js → chunk-47OHV4T2.js} +2 -2
  2. package/dist/{chunk-Q73FKLU4.js → chunk-C2QHNJBG.js} +2 -2
  3. package/dist/{chunk-BQU2NRO5.js → chunk-OYE6VAAG.js} +56 -38
  4. package/dist/components/FunkitProvider/FunkitCheckoutContext.d.ts +6 -2
  5. package/dist/components/index.js +3 -3
  6. package/dist/index.js +3 -3
  7. package/dist/themes/darkTheme.js +1 -1
  8. package/dist/themes/lightTheme.js +1 -1
  9. package/dist/wallets/walletConnectors/argentWallet/argentWallet.js +2 -2
  10. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  11. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  12. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  13. package/dist/wallets/walletConnectors/index.js +57 -57
  14. package/dist/wallets/walletConnectors/ledgerWallet/ledgerWallet.js +2 -2
  15. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  16. package/dist/wallets/walletConnectors/oktoWallet/oktoWallet.js +2 -2
  17. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  18. package/dist/wallets/walletConnectors/omniWallet/omniWallet.js +2 -2
  19. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  20. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  21. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  22. package/dist/wallets/walletConnectors/walletConnectWallet/walletConnectWallet.js +2 -2
  23. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  24. package/package.json +3 -3
  25. package/dist/wallets/walletConnectors/chunk-3XLDPS4Y.js +0 -102
  26. package/dist/wallets/walletConnectors/chunk-4EKX7Z25.js +0 -114
  27. package/dist/wallets/walletConnectors/chunk-6FQF7H7H.js +0 -112
  28. package/dist/wallets/walletConnectors/chunk-77KYAV4P.js +0 -110
  29. package/dist/wallets/walletConnectors/chunk-GHYJ56FA.js +0 -113
  30. package/dist/wallets/walletConnectors/chunk-GLB4HFDR.js +0 -105
  31. package/dist/wallets/walletConnectors/chunk-LEWQ7DQV.js +0 -71
  32. package/dist/wallets/walletConnectors/chunk-LL6T7V77.js +0 -81
  33. package/dist/wallets/walletConnectors/chunk-MOWIPEYK.js +0 -226
  34. package/dist/wallets/walletConnectors/chunk-NEDPCNTA.js +0 -71
  35. package/dist/wallets/walletConnectors/chunk-VW5SMBMG.js +0 -71
  36. package/dist/wallets/walletConnectors/chunk-XXTDCRCW.js +0 -52
  37. package/dist/wallets/walletConnectors/{chunk-YWKKNHO3.js → chunk-4W6RLMME.js} +3 -3
  38. package/dist/wallets/walletConnectors/{chunk-IEAKLGB6.js → chunk-NZ4YUZKF.js} +4 -4
@@ -68,8 +68,8 @@ var darkTheme = ({
68
68
  inputFieldDisabled: "",
69
69
  strokePrimary: "",
70
70
  strokeSecondary: "",
71
- buttonPrimary: "#FFF",
72
- buttonProcessing: "",
71
+ buttonPrimary: accentColor,
72
+ buttonProcessing: accentColorForeground,
73
73
  buttonDisabled: "rgba(255, 255, 255, 0.20)",
74
74
  buttonTextPrimary: "#000000",
75
75
  buttonTextSecondary: "#FFF",
@@ -68,8 +68,8 @@ var lightTheme = ({
68
68
  inputFieldDisabled: "#1A1B1F99",
69
69
  strokePrimary: "#0000000D",
70
70
  strokeSecondary: "",
71
- buttonPrimary: "#31A3F8",
72
- buttonProcessing: "#31A3F859",
71
+ buttonPrimary: accentColor,
72
+ buttonProcessing: accentColorForeground,
73
73
  buttonDisabled: "#31A3F826",
74
74
  buttonWarning: "#C60000",
75
75
  buttonTextWarning: "#FFF",
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "./chunk-UOUEGWLS.js";
4
+ } from "./chunk-47OHV4T2.js";
5
5
  import {
6
6
  lightTheme
7
- } from "./chunk-Q73FKLU4.js";
7
+ } from "./chunk-C2QHNJBG.js";
8
8
 
9
9
  // src/components/index.ts
10
10
  import { FUNKIT_CONNECT_CHECKOUT_NATIVE_CURRENCY_ADDRESS as FUNKIT_CONNECT_CHECKOUT_NATIVE_CURRENCY_ADDRESS3 } from "@funkit/core";
@@ -1653,7 +1653,6 @@ function GeneralWalletProvider({ children }) {
1653
1653
  DEFAULT_FUNWALLET_INDEX
1654
1654
  )
1655
1655
  });
1656
- console.log(">>>", await newFunWallet.getAddress());
1657
1656
  }
1658
1657
  logger.log("setupFunWallet_result", { newFunWallet, newFunWalletAuth });
1659
1658
  setFunWallet(newFunWallet);
@@ -20464,6 +20463,13 @@ var useFunkitCheckout = (props) => {
20464
20463
  },
20465
20464
  [onError]
20466
20465
  );
20466
+ const onOpenWrapper = useCallback15(
20467
+ (newId) => {
20468
+ props?.onOpen?.();
20469
+ openFunCheckoutModal?.(newId);
20470
+ },
20471
+ [openFunCheckoutModal, props]
20472
+ );
20467
20473
  const beginCheckout = useCallback15(
20468
20474
  async (inputConfig = config) => {
20469
20475
  const validationResult = validateCheckoutConfig(inputConfig);
@@ -20488,7 +20494,7 @@ var useFunkitCheckout = (props) => {
20488
20494
  return;
20489
20495
  }
20490
20496
  }
20491
- openFunCheckoutModal?.(newId);
20497
+ onOpenWrapper?.(newId);
20492
20498
  } else {
20493
20499
  openConnectModal?.();
20494
20500
  setWaitingLogin(inputConfig);
@@ -20507,8 +20513,8 @@ var useFunkitCheckout = (props) => {
20507
20513
  _initNewCheckout,
20508
20514
  props,
20509
20515
  isUserLoggedIn,
20516
+ onOpenWrapper,
20510
20517
  walletAddress,
20511
- openFunCheckoutModal,
20512
20518
  onErrorWrapper,
20513
20519
  openConnectModal
20514
20520
  ]
@@ -22277,7 +22283,7 @@ function MeshOrAccountSelectAsset({
22277
22283
  weight: "semibold"
22278
22284
  }, "Select Asset to Pay")), /* @__PURE__ */ React108.createElement(Box, {
22279
22285
  paddingBottom: "24",
22280
- paddingTop: "18"
22286
+ paddingTop: "8"
22281
22287
  }, isLoadingAssets ? /* @__PURE__ */ React108.createElement(Box, {
22282
22288
  display: "flex",
22283
22289
  flexDirection: "column",
@@ -22296,7 +22302,8 @@ function MeshOrAccountSelectAsset({
22296
22302
  isDropdownOpen: true,
22297
22303
  options: assetOptions,
22298
22304
  selectedValue: selectedTokenSymbol || "",
22299
- optionItemPadding: "12"
22305
+ optionItemPadding: "12",
22306
+ showBorder: false
22300
22307
  })), showErrorNotification ? /* @__PURE__ */ React108.createElement(Box, {
22301
22308
  paddingBottom: "24"
22302
22309
  }, /* @__PURE__ */ React108.createElement(FunNotification, {
@@ -22487,16 +22494,29 @@ function FunCheckoutModal({
22487
22494
  checkoutStep,
22488
22495
  selectedPaymentMethodInfo?.paymentMethod
22489
22496
  ]);
22497
+ const onCloseWrapper = useCallback17(() => {
22498
+ checkoutItem?.initSettings?.onClose?.();
22499
+ onClose?.();
22500
+ }, [checkoutItem?.initSettings, onClose]);
22490
22501
  const redirectToCheckoutHistory = useCallback17(
22491
22502
  (depositAddress) => {
22492
22503
  if (depositAddress) {
22493
- onClose?.();
22494
- openFunCheckoutHistoryModal?.(depositAddress);
22504
+ checkoutItem?.initSettings?.onSuccess?.({
22505
+ type: "success",
22506
+ message: "Checkout funding step completed successfully.",
22507
+ metadata: {}
22508
+ });
22509
+ onCloseWrapper?.();
22510
+ if (depositAddress === checkoutItem?.initSettings?.config?.customRecipient) {
22511
+ logger.log("Skipping checkout history detail");
22512
+ } else {
22513
+ openFunCheckoutHistoryModal?.(depositAddress);
22514
+ }
22495
22515
  } else {
22496
22516
  logger.warn("No depositAddress generated");
22497
22517
  }
22498
22518
  },
22499
- [onClose, openFunCheckoutHistoryModal]
22519
+ [checkoutItem?.initSettings, onCloseWrapper, openFunCheckoutHistoryModal]
22500
22520
  );
22501
22521
  const [isSourceAssetConfirming, setIsSourceAssetConfirming] = useState30(false);
22502
22522
  const onSourceAssetConfirmed = useCallback17(async () => {
@@ -22602,7 +22622,7 @@ function FunCheckoutModal({
22602
22622
  const { showToast } = useFunToast();
22603
22623
  return /* @__PURE__ */ React110.createElement(Dialog, {
22604
22624
  open,
22605
- onClose,
22625
+ onClose: onCloseWrapper,
22606
22626
  titleId: "fun-checkout-modal",
22607
22627
  isHidden: isSoftHidden
22608
22628
  }, /* @__PURE__ */ React110.createElement(DialogContent, {
@@ -22616,7 +22636,7 @@ function FunCheckoutModal({
22616
22636
  onBack: titleConfig.onBack,
22617
22637
  title: titleConfig.title,
22618
22638
  hasCloseButton: true,
22619
- onClose
22639
+ onClose: onCloseWrapper
22620
22640
  }), checkoutStep === "payment" /* SELECT_PAYMENT_METHOD */ ? /* @__PURE__ */ React110.createElement(FunCheckoutVerifyDetailsStep, {
22621
22641
  checkoutId,
22622
22642
  onSelectPaymentMethod
@@ -24868,7 +24888,7 @@ function setRainbowKitVersion({ version }) {
24868
24888
  }
24869
24889
  function useFingerprint() {
24870
24890
  const fingerprint = useCallback22(() => {
24871
- setRainbowKitVersion({ version: "0.1.13" });
24891
+ setRainbowKitVersion({ version: "0.1.14" });
24872
24892
  }, []);
24873
24893
  useEffect33(() => {
24874
24894
  fingerprint();
@@ -24954,31 +24974,29 @@ function FunkitProvider(props) {
24954
24974
  validateFunkitProviderProps(props);
24955
24975
  const appWagmiConfig = props.wagmiConfig;
24956
24976
  const initialChainId = getInitialChainIdFromFunkitProviderProps(props);
24957
- if (props?.funkitConfig?.enabledLoginOptions?.web2) {
24958
- const existingWalletGroupList = appWagmiConfig?.connectors?.(true) || [];
24959
- const filteredWalletGroupList = [];
24960
- existingWalletGroupList.forEach((groupItem) => {
24961
- if (groupItem.groupName === RESERVED_GROUP_NAME) {
24962
- } else {
24963
- filteredWalletGroupList.push(groupItem);
24964
- }
24965
- });
24966
- const newConnectors = connectorsForWallets([
24967
- ...filteredWalletGroupList,
24968
- {
24969
- groupName: RESERVED_GROUP_NAME,
24970
- wallets: [
24971
- funkitConnectWallet({
24972
- funkitOptions: {
24973
- chain: initialChainId,
24974
- apiKey: props.funkitConfig.apiKey
24975
- }
24976
- })
24977
- ]
24978
- }
24979
- ]);
24980
- appWagmiConfig.connectors = newConnectors;
24981
- }
24977
+ const existingWalletGroupList = appWagmiConfig?.connectors?.(true) || [];
24978
+ const filteredWalletGroupList = [];
24979
+ existingWalletGroupList.forEach((groupItem) => {
24980
+ if (groupItem.groupName === RESERVED_GROUP_NAME) {
24981
+ } else {
24982
+ filteredWalletGroupList.push(groupItem);
24983
+ }
24984
+ });
24985
+ const newConnectors = connectorsForWallets([
24986
+ ...filteredWalletGroupList,
24987
+ {
24988
+ groupName: RESERVED_GROUP_NAME,
24989
+ wallets: [
24990
+ funkitConnectWallet({
24991
+ funkitOptions: {
24992
+ chain: initialChainId,
24993
+ apiKey: props.funkitConfig.apiKey
24994
+ }
24995
+ })
24996
+ ]
24997
+ }
24998
+ ]);
24999
+ appWagmiConfig.connectors = newConnectors;
24982
25000
  const config = createConfig(appWagmiConfig);
24983
25001
  logger.configure(props.funkitConfig.apiKey, !!props.debug);
24984
25002
  return /* @__PURE__ */ React132.createElement(WagmiConfig, {
@@ -61,15 +61,19 @@ export type FunkitCheckoutResult = {
61
61
  interface useFunkitCheckoutProps {
62
62
  /** @required the checkout config object **/
63
63
  config: FunkitCheckoutConfig;
64
+ /** @optional fires when the checkout modal is opened **/
65
+ onOpen?: () => void;
66
+ /** @optional fires when the checkout modal is closed **/
67
+ onClose?: () => void;
64
68
  /** @optional fires when checkout config is done validating **/
65
69
  onValidation?: (result: FunkitCheckoutValidationResult) => void;
66
70
  /** @optional fires when a checkout quote is received **/
67
71
  onEstimation?: (result: FunkitCheckoutQuoteResult) => void;
68
72
  /** @optional fires when a checkout if confirmed with the funkit server **/
69
73
  onConfirmation?: () => void;
70
- /** @optional fires if the checkout fails at any point */
74
+ /** @optional fires if the checkout fails at any point **/
71
75
  onError?: (result: FunkitCheckoutResult) => void;
72
- /** @optional fires if the checkout fails at any point */
76
+ /** @optional fires if the checkout fails at any point **/
73
77
  onSuccess?: (result: FunkitCheckoutResult) => void;
74
78
  }
75
79
  /**
@@ -4,9 +4,9 @@ import {
4
4
  FunkitProvider,
5
5
  NATIVE_TOKEN,
6
6
  useFunkitCheckout
7
- } from "../chunk-BQU2NRO5.js";
8
- import "../chunk-UOUEGWLS.js";
9
- import "../chunk-Q73FKLU4.js";
7
+ } from "../chunk-OYE6VAAG.js";
8
+ import "../chunk-47OHV4T2.js";
9
+ import "../chunk-C2QHNJBG.js";
10
10
  import "../chunk-VP4CAK4A.js";
11
11
  export {
12
12
  ConnectButton,
package/dist/index.js CHANGED
@@ -31,13 +31,13 @@ import {
31
31
  useFunCheckoutModal,
32
32
  useFunkitCheckout,
33
33
  useWalletConnectors
34
- } from "./chunk-BQU2NRO5.js";
34
+ } from "./chunk-OYE6VAAG.js";
35
35
  import {
36
36
  darkTheme
37
- } from "./chunk-UOUEGWLS.js";
37
+ } from "./chunk-47OHV4T2.js";
38
38
  import {
39
39
  lightTheme
40
- } from "./chunk-Q73FKLU4.js";
40
+ } from "./chunk-C2QHNJBG.js";
41
41
  import "./chunk-VP4CAK4A.js";
42
42
 
43
43
  // src/components/ConnectOptions/MobileOptions.tsx
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-UOUEGWLS.js";
4
+ } from "../chunk-47OHV4T2.js";
5
5
  import "../chunk-VP4CAK4A.js";
6
6
  export {
7
7
  darkTheme
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-Q73FKLU4.js";
4
+ } from "../chunk-C2QHNJBG.js";
5
5
  import "../chunk-VP4CAK4A.js";
6
6
  export {
7
7
  lightTheme
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  argentWallet
4
- } from "../chunk-LEWQ7DQV.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-FTTYELWN.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  argentWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-LL6T7V77.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-LBSWP7R6.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  bifrostWallet
9
9
  };
@@ -2,9 +2,9 @@
2
2
  import {
3
3
  bitKeepWallet,
4
4
  bitgetWallet
5
- } from "../chunk-6FQF7H7H.js";
6
- import "../chunk-ZOLACFTK.js";
5
+ } from "../chunk-Q6N2YWW4.js";
7
6
  import "../chunk-6T5K52ZY.js";
7
+ import "../chunk-ZOLACFTK.js";
8
8
  export {
9
9
  bitKeepWallet,
10
10
  bitgetWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  frontierWallet
4
- } from "../chunk-4EKX7Z25.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-JJICTRJY.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  frontierWallet
9
9
  };
@@ -1,44 +1,46 @@
1
1
  "use client";
2
2
  import {
3
- rainbowWallet
4
- } from "./chunk-IEAKLGB6.js";
3
+ coin98Wallet
4
+ } from "./chunk-LVMQKSKW.js";
5
5
  import {
6
- trustWallet
7
- } from "./chunk-YWKKNHO3.js";
6
+ walletConnectWallet
7
+ } from "./chunk-DBMFZSXN.js";
8
8
  import {
9
- tokenPocketWallet
10
- } from "./chunk-3XLDPS4Y.js";
9
+ tahoWallet
10
+ } from "./chunk-OOGGCCFQ.js";
11
11
  import {
12
- uniswapWallet
13
- } from "./chunk-APZ6YBCA.js";
12
+ tokenPocketWallet
13
+ } from "./chunk-KUXG7P5Q.js";
14
14
  import {
15
- walletConnectWallet
16
- } from "./chunk-XXTDCRCW.js";
15
+ trustWallet
16
+ } from "./chunk-TORM2ZGA.js";
17
17
  import {
18
- xdefiWallet
19
- } from "./chunk-5ZLRNFDM.js";
18
+ talismanWallet
19
+ } from "./chunk-5UETJ33B.js";
20
20
  import {
21
21
  zealWallet
22
22
  } from "./chunk-QBKHMTGI.js";
23
+ import {
24
+ xdefiWallet
25
+ } from "./chunk-5ZLRNFDM.js";
23
26
  import {
24
27
  zerionWallet
25
- } from "./chunk-77KYAV4P.js";
28
+ } from "./chunk-MDDT3PSR.js";
26
29
  import {
27
- coinbaseWallet
28
- } from "./chunk-WFTAXMQP.js";
29
- import "./chunk-UZ5XLPAW.js";
30
+ uniswapWallet
31
+ } from "./chunk-APZ6YBCA.js";
30
32
  import {
31
- imTokenWallet
32
- } from "./chunk-7EOFWORX.js";
33
+ oneKeyWallet
34
+ } from "./chunk-6CW3SAA3.js";
33
35
  import {
34
- injectedWallet
35
- } from "./chunk-U32TVZ7G.js";
36
+ phantomWallet
37
+ } from "./chunk-KUZFZL2D.js";
36
38
  import {
37
- oktoWallet
38
- } from "./chunk-VW5SMBMG.js";
39
+ rabbyWallet
40
+ } from "./chunk-TNC2B7LX.js";
39
41
  import {
40
- safeheronWallet
41
- } from "./chunk-7WTKIVCW.js";
42
+ rainbowWallet
43
+ } from "./chunk-4WS4ZSRN.js";
42
44
  import {
43
45
  safeWallet
44
46
  } from "./chunk-BNTZHUB6.js";
@@ -49,70 +51,66 @@ import {
49
51
  subWallet
50
52
  } from "./chunk-PTF3JKWO.js";
51
53
  import {
52
- tahoWallet
53
- } from "./chunk-OOGGCCFQ.js";
54
+ safeheronWallet
55
+ } from "./chunk-7WTKIVCW.js";
54
56
  import {
55
- talismanWallet
56
- } from "./chunk-5UETJ33B.js";
57
+ injectedWallet
58
+ } from "./chunk-U32TVZ7G.js";
57
59
  import {
58
- frontierWallet
59
- } from "./chunk-4EKX7Z25.js";
60
+ ledgerWallet
61
+ } from "./chunk-VAR774R5.js";
60
62
  import {
61
63
  metaMaskWallet
62
- } from "./chunk-MOWIPEYK.js";
64
+ } from "./chunk-2XHTO74O.js";
65
+ import {
66
+ foxWallet
67
+ } from "./chunk-TG2HN6KW.js";
63
68
  import {
64
69
  mewWallet
65
70
  } from "./chunk-BZFEDZQJ.js";
66
71
  import {
67
72
  okxWallet
68
- } from "./chunk-GHYJ56FA.js";
69
- import {
70
- omniWallet
71
- } from "./chunk-NEDPCNTA.js";
73
+ } from "./chunk-RL5OHS6R.js";
72
74
  import {
73
- oneKeyWallet
74
- } from "./chunk-6CW3SAA3.js";
75
- import {
76
- phantomWallet
77
- } from "./chunk-KUZFZL2D.js";
78
- import {
79
- rabbyWallet
80
- } from "./chunk-TNC2B7LX.js";
75
+ oktoWallet
76
+ } from "./chunk-BDKAIAQA.js";
81
77
  import {
82
- coin98Wallet
83
- } from "./chunk-LVMQKSKW.js";
78
+ omniWallet
79
+ } from "./chunk-X6A7D2EA.js";
84
80
  import {
85
81
  coreWallet
86
82
  } from "./chunk-T3RIVRAX.js";
87
83
  import {
88
84
  dawnWallet
89
85
  } from "./chunk-QJNS6IE4.js";
86
+ import {
87
+ argentWallet
88
+ } from "./chunk-FTTYELWN.js";
90
89
  import {
91
90
  desigWallet
92
91
  } from "./chunk-SXUVHZCG.js";
93
92
  import {
94
93
  enkryptWallet
95
94
  } from "./chunk-ND76X5A2.js";
96
- import {
97
- foxWallet
98
- } from "./chunk-TG2HN6KW.js";
99
95
  import {
100
96
  frameWallet
101
97
  } from "./chunk-MBFEMLUU.js";
102
98
  import {
103
- ledgerWallet
104
- } from "./chunk-GLB4HFDR.js";
99
+ frontierWallet
100
+ } from "./chunk-JJICTRJY.js";
105
101
  import {
106
- argentWallet
107
- } from "./chunk-LEWQ7DQV.js";
102
+ imTokenWallet
103
+ } from "./chunk-7EOFWORX.js";
108
104
  import {
109
105
  bifrostWallet
110
- } from "./chunk-LL6T7V77.js";
106
+ } from "./chunk-LBSWP7R6.js";
111
107
  import {
112
108
  bitKeepWallet,
113
109
  bitgetWallet
114
- } from "./chunk-6FQF7H7H.js";
115
- import "./chunk-ZOLACFTK.js";
110
+ } from "./chunk-Q6N2YWW4.js";
111
+ import {
112
+ bitskiWallet
113
+ } from "./chunk-FL3REGA5.js";
116
114
  import {
117
115
  braveWallet
118
116
  } from "./chunk-INSQDNCE.js";
@@ -121,8 +119,10 @@ import {
121
119
  } from "./chunk-EHO4MJZJ.js";
122
120
  import "./chunk-6T5K52ZY.js";
123
121
  import {
124
- bitskiWallet
125
- } from "./chunk-FL3REGA5.js";
122
+ coinbaseWallet
123
+ } from "./chunk-WFTAXMQP.js";
124
+ import "./chunk-UZ5XLPAW.js";
125
+ import "./chunk-ZOLACFTK.js";
126
126
  export {
127
127
  argentWallet,
128
128
  bifrostWallet,
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  ledgerWallet
4
- } from "../chunk-GLB4HFDR.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-VAR774R5.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  ledgerWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  metaMaskWallet
4
- } from "../chunk-MOWIPEYK.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-2XHTO74O.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  metaMaskWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  oktoWallet
4
- } from "../chunk-VW5SMBMG.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-BDKAIAQA.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  oktoWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  okxWallet
4
- } from "../chunk-GHYJ56FA.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-RL5OHS6R.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  okxWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  omniWallet
4
- } from "../chunk-NEDPCNTA.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-X6A7D2EA.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  omniWallet
9
9
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  rainbowWallet
4
- } from "../chunk-IEAKLGB6.js";
4
+ } from "../chunk-4WS4ZSRN.js";
5
+ import "../chunk-6T5K52ZY.js";
5
6
  import "../chunk-UZ5XLPAW.js";
6
7
  import "../chunk-ZOLACFTK.js";
7
- import "../chunk-6T5K52ZY.js";
8
8
  export {
9
9
  rainbowWallet
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  tokenPocketWallet
4
- } from "../chunk-3XLDPS4Y.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-KUXG7P5Q.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  tokenPocketWallet
9
9
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  trustWallet
4
- } from "../chunk-YWKKNHO3.js";
4
+ } from "../chunk-TORM2ZGA.js";
5
+ import "../chunk-6T5K52ZY.js";
5
6
  import "../chunk-UZ5XLPAW.js";
6
7
  import "../chunk-ZOLACFTK.js";
7
- import "../chunk-6T5K52ZY.js";
8
8
  export {
9
9
  trustWallet
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  walletConnectWallet
4
- } from "../chunk-XXTDCRCW.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-DBMFZSXN.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  walletConnectWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  zerionWallet
4
- } from "../chunk-77KYAV4P.js";
5
- import "../chunk-ZOLACFTK.js";
4
+ } from "../chunk-MDDT3PSR.js";
6
5
  import "../chunk-6T5K52ZY.js";
6
+ import "../chunk-ZOLACFTK.js";
7
7
  export {
8
8
  zerionWallet
9
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -85,8 +85,8 @@
85
85
  },
86
86
  "dependencies": {
87
87
  "@front-finance/link": "^1.1.9",
88
- "@funkit/core": "^0.10.9",
89
- "@funkit/wagmi-tools": "^0.1.8",
88
+ "@funkit/core": "^0.10.10",
89
+ "@funkit/wagmi-tools": "^0.1.9",
90
90
  "@moonpay/moonpay-react": "^1.4.1",
91
91
  "@privy-io/js-sdk-core": "^0.11.0",
92
92
  "@types/uuid": "^9.0.1",