@funkit/connect 1.0.1 → 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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @funkit/connect
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - fc3ab0d: feat: allow customization of all theme colors
8
+ - 48caeec: refactor: optional checkout config
9
+ - Updated dependencies [6c91a63]
10
+ - @funkit/core@1.0.1
11
+ - @funkit/wagmi-tools@1.0.2
12
+
13
+ ## 1.0.2
14
+
15
+ ### Patch Changes
16
+
17
+ - 27e03bc: feat: readme
18
+
3
19
  ## 1.0.1
4
20
 
5
21
  ### Patch Changes
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ ## FunkitConnect
2
+
3
+ The `@funkit/connect` package elevates decentralize applications via web2 & web3 sign-ins together with one-click onramps & checkouts.
4
+
5
+ - 🔗 [v0 Integration guide](https://the-fun-group.notion.site/funkit-connect-integration-guide-90efe96a9f4e40d99cc49e7abecdc437)
6
+ - 🔗 v1 Integration guide (TBD)
7
+
8
+ ### Version Information
9
+
10
+ - Package versions `< 1.x.x` support wagmi v1 only.
11
+ - Package versions `>= 1.x.x` support wagmi v2 only.
12
+
13
+ ### 📝 Note
14
+
15
+ This package is currently in closed beta. To learn more, reach out to [developers@fun.xyz](mailto:developers@fun.xyz).
@@ -17,6 +17,7 @@ var defaultAccentColor = accentColors.white;
17
17
  var lightTheme = ({
18
18
  accentColor = defaultAccentColor.accentColor,
19
19
  accentColorForeground = defaultAccentColor.accentColorForeground,
20
+ customColors,
20
21
  ...baseThemeOptions
21
22
  } = {}) => ({
22
23
  ...baseTheme(baseThemeOptions),
@@ -76,7 +77,8 @@ var lightTheme = ({
76
77
  buttonTextPrimary: "#FFFFFF",
77
78
  buttonTextSecondary: "#000000",
78
79
  buttonTextDisabled: "#FFF",
79
- transparent: "transparent"
80
+ transparent: "transparent",
81
+ ...customColors || {}
80
82
  },
81
83
  shadows: {
82
84
  connectButton: "0px 4px 12px rgba(0, 0, 0, 0.1)",
@@ -17,6 +17,7 @@ var defaultAccentColor = accentColors.white;
17
17
  var darkTheme = ({
18
18
  accentColor = defaultAccentColor.accentColor,
19
19
  accentColorForeground = defaultAccentColor.accentColorForeground,
20
+ customColors,
20
21
  ...baseThemeOptions
21
22
  } = {}) => ({
22
23
  ...baseTheme(baseThemeOptions),
@@ -76,7 +77,8 @@ var darkTheme = ({
76
77
  buttonTextDisabled: "#000000",
77
78
  buttonWarning: "#C60000",
78
79
  buttonTextWarning: "#FFF",
79
- transparent: "transparent"
80
+ transparent: "transparent",
81
+ ...customColors || {}
80
82
  },
81
83
  shadows: {
82
84
  connectButton: "0px 4px 12px rgba(0, 0, 0, 0.1)",
@@ -66,8 +66,8 @@ export type FunkitCheckoutResult = {
66
66
  metadata: object | Error;
67
67
  };
68
68
  interface useFunkitCheckoutProps {
69
- /** @required the checkout config object **/
70
- config: FunkitCheckoutConfig;
69
+ /** @optional the checkout config object **/
70
+ config?: FunkitCheckoutConfig;
71
71
  /** @optional fires when the checkout modal is opened **/
72
72
  onOpen?: () => void;
73
73
  /** @optional fires when the checkout modal is closed **/
@@ -83,6 +83,9 @@ interface useFunkitCheckoutProps {
83
83
  /** @optional fires if the checkout fails at any point **/
84
84
  onSuccess?: (result: FunkitCheckoutResult) => void;
85
85
  }
86
+ type useFunkitCheckoutPropsFinal = Omit<useFunkitCheckoutProps, 'config'> & {
87
+ config: FunkitCheckoutConfig;
88
+ };
86
89
  /**
87
90
  * Checkout Item for frontend use
88
91
  */
@@ -103,8 +106,8 @@ export interface FunkitActiveCheckoutItem {
103
106
  quoteErrorMessage: string;
104
107
  /** The deposit address provided by server after the checkout is confirmed. If `null`, it is not confirmed yet. **/
105
108
  depositAddress: null | Address;
106
- /** Settings the checkout was init-ed with **/
107
- initSettings: useFunkitCheckoutProps;
109
+ /** Final settings the checkout was init-ed with **/
110
+ initSettings: useFunkitCheckoutPropsFinal;
108
111
  /** User's selected payment method information */
109
112
  selectedPaymentMethodInfo: PaymentMethodInfo | null;
110
113
  /** User's choice of source asset to fund the checkout operation **/
@@ -155,6 +158,6 @@ export declare const useFunkitAllPostCheckoutsInternal: () => {
155
158
  * External hook for user to kickstart a checkout in their app
156
159
  */
157
160
  export declare const useFunkitCheckout: (props: useFunkitCheckoutProps) => {
158
- beginCheckout: (inputConfig?: useFunkitCheckoutProps['config']) => Promise<void>;
161
+ beginCheckout: (inputConfig?: FunkitCheckoutConfig) => Promise<void>;
159
162
  };
160
163
  export {};
@@ -29,10 +29,10 @@ export declare const defaultTheme: {
29
29
  profileActionHover: string;
30
30
  profileForeground: string;
31
31
  selectedOptionBorder: string;
32
+ standby: string;
32
33
  solidLine: string;
33
- rightTranslucentLine: string;
34
34
  leftTranslucentLine: string;
35
- standby: string;
35
+ rightTranslucentLine: string;
36
36
  loadingBase: string;
37
37
  loadingAccent: string;
38
38
  modalBackdrop: string;
@@ -52,11 +52,11 @@ export declare const defaultTheme: {
52
52
  buttonPrimary: string;
53
53
  buttonProcessing: string;
54
54
  buttonDisabled: string;
55
+ buttonWarning: string;
56
+ buttonTextWarning: string;
55
57
  buttonTextPrimary: string;
56
58
  buttonTextSecondary: string;
57
59
  buttonTextDisabled: string;
58
- buttonWarning: string;
59
- buttonTextWarning: string;
60
60
  transparent: string;
61
61
  };
62
62
  shadows: {
package/dist/index.js CHANGED
@@ -4,10 +4,10 @@ import {
4
4
  } from "./chunk-SW6GAS7K.js";
5
5
  import {
6
6
  darkTheme
7
- } from "./chunk-U4FFX2HZ.js";
7
+ } from "./chunk-SWTU7PBZ.js";
8
8
  import {
9
9
  lightTheme
10
- } from "./chunk-C2QHNJBG.js";
10
+ } from "./chunk-MQTK22MG.js";
11
11
  import "./chunk-VP4CAK4A.js";
12
12
 
13
13
  // src/components/ConnectButton/ConnectButton.tsx
@@ -1791,6 +1791,12 @@ function validateCheckoutConfig(config) {
1791
1791
  message: "Invalid targetAssetAmount configuration: Has to be a number greater than 0"
1792
1792
  };
1793
1793
  }
1794
+ if (!config.actionsParams) {
1795
+ return {
1796
+ isValid: false,
1797
+ message: "Invalid actionsParams configuration: Has to be an array. If no actions are required, please specify an empty array ([]) instead."
1798
+ };
1799
+ }
1794
1800
  if (!FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO[config.targetChain]) {
1795
1801
  return {
1796
1802
  isValid: false,
@@ -2071,7 +2077,6 @@ function FunkitCheckoutProvider({ children }) {
2071
2077
  apiKey: funkitConfig.apiKey
2072
2078
  });
2073
2079
  }
2074
- logger.log("newCheckoutHistoryList", newCheckoutHistoryList);
2075
2080
  setCheckoutHistoryList(
2076
2081
  newCheckoutHistoryList.sort((a, b) => b.createdTimeMs - a.createdTimeMs)
2077
2082
  );
@@ -2658,7 +2663,8 @@ var useFunkitAllPostCheckoutsInternal = () => {
2658
2663
  };
2659
2664
  };
2660
2665
  var useFunkitCheckout = (props) => {
2661
- const { config, onValidation, onError } = props;
2666
+ const { onValidation, onError } = props;
2667
+ const propsConfig = useMemo6(() => (props == null ? void 0 : props.config) || {}, [props == null ? void 0 : props.config]);
2662
2668
  const actualWagmiConfig = useConfig2();
2663
2669
  const { _initNewCheckout } = useContext9(FunkitCheckoutContext);
2664
2670
  const { openFunCheckoutModal } = useFunCheckoutModal();
@@ -2681,25 +2687,30 @@ var useFunkitCheckout = (props) => {
2681
2687
  [openFunCheckoutModal, props]
2682
2688
  );
2683
2689
  const beginCheckout = useCallback5(
2684
- async (inputConfig = config) => {
2685
- const validationResult = validateCheckoutConfig(inputConfig);
2690
+ async (inputConfig) => {
2691
+ const combinedConfig = {
2692
+ ...propsConfig || {},
2693
+ ...inputConfig || {}
2694
+ };
2695
+ const validationResult = validateCheckoutConfig(combinedConfig);
2686
2696
  onValidation == null ? void 0 : onValidation(validationResult);
2687
2697
  if (validationResult.isValid) {
2688
- let newId = _initNewCheckout == null ? void 0 : _initNewCheckout({ ...props, config: inputConfig }, false);
2689
- if (isUserLoggedIn || !!inputConfig.customRecipient) {
2698
+ const finalConfig = combinedConfig;
2699
+ let newId = _initNewCheckout == null ? void 0 : _initNewCheckout({ ...props, config: finalConfig }, false);
2700
+ if (isUserLoggedIn || !!finalConfig.customRecipient) {
2690
2701
  if (isUserLoggedIn) {
2691
2702
  const { result, tokenTicker } = await testAutoExecutionDuringCheckout(
2692
- inputConfig,
2703
+ finalConfig,
2693
2704
  walletAddress,
2694
2705
  actualWagmiConfig
2695
2706
  );
2696
2707
  if (result) {
2697
2708
  newId = _initNewCheckout == null ? void 0 : _initNewCheckout(
2698
- { ...props, config: inputConfig },
2709
+ { ...props, config: finalConfig },
2699
2710
  true,
2700
2711
  tokenTicker
2701
2712
  );
2702
- } else if (!FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO3[inputConfig.targetChain].isFiatCheckoutSupported) {
2713
+ } else if (!FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO3[finalConfig.targetChain].isFiatCheckoutSupported) {
2703
2714
  onErrorWrapper == null ? void 0 : onErrorWrapper({
2704
2715
  type: "error",
2705
2716
  message: "Unable to begin a new checkout: Insufficient funds on testnet account",
@@ -2711,7 +2722,7 @@ var useFunkitCheckout = (props) => {
2711
2722
  onOpenWrapper == null ? void 0 : onOpenWrapper(newId);
2712
2723
  } else {
2713
2724
  openConnectModal == null ? void 0 : openConnectModal();
2714
- setWaitingLogin(inputConfig);
2725
+ setWaitingLogin(finalConfig);
2715
2726
  }
2716
2727
  } else {
2717
2728
  onErrorWrapper == null ? void 0 : onErrorWrapper({
@@ -2722,7 +2733,7 @@ var useFunkitCheckout = (props) => {
2722
2733
  }
2723
2734
  },
2724
2735
  [
2725
- config,
2736
+ propsConfig,
2726
2737
  onValidation,
2727
2738
  _initNewCheckout,
2728
2739
  props,
@@ -14731,7 +14742,7 @@ function setFunkitConnectVersion({ version }) {
14731
14742
  localStorage.setItem(storageKey4, version);
14732
14743
  }
14733
14744
  function getCurrentSdkVersion() {
14734
- return "1.0.1";
14745
+ return "1.0.3";
14735
14746
  }
14736
14747
  function useFingerprint() {
14737
14748
  const fingerprint = useCallback26(() => {
@@ -21,5 +21,6 @@ export type AccentColorPreset = 'blue' | 'green' | 'red' | 'purple' | 'pink' | '
21
21
  export interface ThemeOptions extends BaseThemeOptions {
22
22
  accentColor?: string;
23
23
  accentColorForeground?: string;
24
+ customColors?: Partial<ThemeVars['colors']>;
24
25
  }
25
26
  export {};
@@ -1,6 +1,6 @@
1
1
  import { AccentColor, AccentColorPreset, ThemeOptions } from './baseTheme';
2
2
  export declare const darkTheme: {
3
- ({ accentColor, accentColorForeground, ...baseThemeOptions }?: ThemeOptions): {
3
+ ({ accentColor, accentColorForeground, customColors, ...baseThemeOptions }?: ThemeOptions): {
4
4
  colors: {
5
5
  accentColor: string;
6
6
  accentColorForeground: string;
@@ -29,10 +29,10 @@ export declare const darkTheme: {
29
29
  profileActionHover: string;
30
30
  profileForeground: string;
31
31
  selectedOptionBorder: string;
32
+ standby: string;
32
33
  solidLine: string;
33
- rightTranslucentLine: string;
34
34
  leftTranslucentLine: string;
35
- standby: string;
35
+ rightTranslucentLine: string;
36
36
  loadingBase: string;
37
37
  loadingAccent: string;
38
38
  modalBackdrop: string;
@@ -52,11 +52,11 @@ export declare const darkTheme: {
52
52
  buttonPrimary: string;
53
53
  buttonProcessing: string;
54
54
  buttonDisabled: string;
55
+ buttonWarning: string;
56
+ buttonTextWarning: string;
55
57
  buttonTextPrimary: string;
56
58
  buttonTextSecondary: string;
57
59
  buttonTextDisabled: string;
58
- buttonWarning: string;
59
- buttonTextWarning: string;
60
60
  transparent: string;
61
61
  };
62
62
  shadows: {
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-U4FFX2HZ.js";
4
+ } from "../chunk-SWTU7PBZ.js";
5
5
  import "../chunk-VP4CAK4A.js";
6
6
  export {
7
7
  darkTheme
@@ -1,6 +1,6 @@
1
1
  import { AccentColor, AccentColorPreset, ThemeOptions } from './baseTheme';
2
2
  export declare const lightTheme: {
3
- ({ accentColor, accentColorForeground, ...baseThemeOptions }?: ThemeOptions): {
3
+ ({ accentColor, accentColorForeground, customColors, ...baseThemeOptions }?: ThemeOptions): {
4
4
  colors: {
5
5
  accentColor: string;
6
6
  accentColorForeground: string;
@@ -29,10 +29,10 @@ export declare const lightTheme: {
29
29
  profileActionHover: string;
30
30
  profileForeground: string;
31
31
  selectedOptionBorder: string;
32
+ standby: string;
32
33
  solidLine: string;
33
- rightTranslucentLine: string;
34
34
  leftTranslucentLine: string;
35
- standby: string;
35
+ rightTranslucentLine: string;
36
36
  loadingBase: string;
37
37
  loadingAccent: string;
38
38
  modalBackdrop: string;
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-C2QHNJBG.js";
4
+ } from "../chunk-MQTK22MG.js";
5
5
  import "../chunk-VP4CAK4A.js";
6
6
  export {
7
7
  lightTheme
@@ -13,7 +13,7 @@ export declare const DUMMY_TRANSFER_PARAMS: {
13
13
  * @param config - The checkout configuration to validate.
14
14
  * @returns An object indicating whether the configuration is valid and a message if it is not.
15
15
  */
16
- export declare function validateCheckoutConfig(config: FunkitCheckoutConfig): {
16
+ export declare function validateCheckoutConfig(config: Partial<FunkitCheckoutConfig>): {
17
17
  isValid: boolean;
18
18
  message: string;
19
19
  };
@@ -1,37 +1,37 @@
1
1
  "use client";
2
- import {
3
- zealWallet
4
- } from "./chunk-DPXMP5KS.js";
5
- import {
6
- zerionWallet
7
- } from "./chunk-SQGFKNNZ.js";
8
2
  import {
9
3
  walletConnectWallet
10
4
  } from "./chunk-ASPRR7T3.js";
11
5
  import {
12
- safepalWallet
13
- } from "./chunk-RTW6PVQI.js";
14
- import {
15
- tokenPocketWallet
16
- } from "./chunk-OR3PU2W4.js";
17
- import {
18
- talismanWallet
19
- } from "./chunk-H273OTQA.js";
6
+ kresusWallet
7
+ } from "./chunk-X6T3CICZ.js";
20
8
  import {
21
- rainbowWallet
22
- } from "./chunk-FDIIMYTB.js";
9
+ metaMaskWallet
10
+ } from "./chunk-X255T3C4.js";
23
11
  import {
24
12
  tokenaryWallet
25
13
  } from "./chunk-ENZLEAG2.js";
14
+ import {
15
+ subWallet
16
+ } from "./chunk-2GAW2UBU.js";
17
+ import {
18
+ tokenPocketWallet
19
+ } from "./chunk-OR3PU2W4.js";
20
+ import {
21
+ trustWallet
22
+ } from "./chunk-OAEJQOAV.js";
26
23
  import {
27
24
  xdefiWallet
28
25
  } from "./chunk-L734HTUS.js";
26
+ import {
27
+ zealWallet
28
+ } from "./chunk-DPXMP5KS.js";
29
29
  import {
30
30
  uniswapWallet
31
31
  } from "./chunk-XRSY4JVH.js";
32
32
  import {
33
- trustWallet
34
- } from "./chunk-OAEJQOAV.js";
33
+ zerionWallet
34
+ } from "./chunk-SQGFKNNZ.js";
35
35
  import {
36
36
  phantomWallet
37
37
  } from "./chunk-KGBLSE7L.js";
@@ -39,38 +39,35 @@ import {
39
39
  roninWallet
40
40
  } from "./chunk-GW6EF4G2.js";
41
41
  import {
42
- rabbyWallet
43
- } from "./chunk-XPEBP6XV.js";
42
+ rainbowWallet
43
+ } from "./chunk-FDIIMYTB.js";
44
44
  import {
45
45
  safeWallet
46
46
  } from "./chunk-D3DCQ72J.js";
47
47
  import {
48
- ramperWallet
49
- } from "./chunk-ZOL6ZMTJ.js";
50
- import {
51
- subWallet
52
- } from "./chunk-2GAW2UBU.js";
53
- import {
54
- safeheronWallet
55
- } from "./chunk-63NPZXAL.js";
48
+ safepalWallet
49
+ } from "./chunk-RTW6PVQI.js";
56
50
  import {
57
51
  tahoWallet
58
52
  } from "./chunk-H76YCX2M.js";
59
53
  import {
60
- kresusWallet
61
- } from "./chunk-X6T3CICZ.js";
62
- import {
63
- mewWallet
64
- } from "./chunk-PWYTDYBE.js";
54
+ safeheronWallet
55
+ } from "./chunk-63NPZXAL.js";
65
56
  import {
66
- metaMaskWallet
67
- } from "./chunk-X255T3C4.js";
57
+ talismanWallet
58
+ } from "./chunk-H273OTQA.js";
68
59
  import {
69
60
  oktoWallet
70
61
  } from "./chunk-WKHTUEF5.js";
71
62
  import {
72
63
  okxWallet
73
64
  } from "./chunk-XSSD5ZVD.js";
65
+ import {
66
+ mewWallet
67
+ } from "./chunk-PWYTDYBE.js";
68
+ import {
69
+ oneInchWallet
70
+ } from "./chunk-LCPIZUR3.js";
74
71
  import {
75
72
  omniWallet
76
73
  } from "./chunk-SVN7OEQR.js";
@@ -78,75 +75,78 @@ import {
78
75
  oneKeyWallet
79
76
  } from "./chunk-4WOV4ITL.js";
80
77
  import {
81
- oneInchWallet
82
- } from "./chunk-LCPIZUR3.js";
78
+ rabbyWallet
79
+ } from "./chunk-XPEBP6XV.js";
83
80
  import {
84
- desigWallet
85
- } from "./chunk-P4JLZ42R.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
88
  } from "./chunk-N3VZE65M.js";
92
89
  import {
93
- gateWallet
94
- } from "./chunk-2PC2XXUH.js";
90
+ frameWallet
91
+ } from "./chunk-XXFJVY73.js";
95
92
  import {
96
93
  imTokenWallet
97
94
  } from "./chunk-5MVV7OVS.js";
95
+ import {
96
+ injectedWallet
97
+ } from "./chunk-KIHCNUU3.js";
98
+ import {
99
+ gateWallet
100
+ } from "./chunk-2PC2XXUH.js";
98
101
  import {
99
102
  ledgerWallet
100
103
  } from "./chunk-Y6VY6E3L.js";
101
104
  import {
102
- injectedWallet
103
- } from "./chunk-KIHCNUU3.js";
105
+ coreWallet
106
+ } from "./chunk-IBWFKX7P.js";
107
+ import {
108
+ bybitWallet
109
+ } from "./chunk-CUKVUCIP.js";
110
+ import {
111
+ clvWallet
112
+ } from "./chunk-T6JVHES7.js";
104
113
  import {
105
114
  coinbaseWallet
106
115
  } from "./chunk-YC7XNS7C.js";
107
116
  import {
108
- braveWallet
109
- } from "./chunk-ABYQAXUX.js";
117
+ dawnWallet
118
+ } from "./chunk-VWZEDVW6.js";
110
119
  import {
111
- clvWallet
112
- } from "./chunk-T6JVHES7.js";
120
+ desigWallet
121
+ } from "./chunk-P4JLZ42R.js";
113
122
  import {
114
123
  coin98Wallet
115
124
  } from "./chunk-Z2HIQYVN.js";
116
125
  import {
117
- coreWallet
118
- } from "./chunk-IBWFKX7P.js";
126
+ enkryptWallet
127
+ } from "./chunk-FLY7F4XA.js";
119
128
  import {
120
- foxWallet
121
- } from "./chunk-OKWOB3DN.js";
129
+ bifrostWallet
130
+ } from "./chunk-SL4VH23R.js";
122
131
  import {
123
- dawnWallet
124
- } from "./chunk-VWZEDVW6.js";
132
+ argentWallet
133
+ } from "./chunk-NZ5G23JP.js";
125
134
  import {
126
- frameWallet
127
- } from "./chunk-XXFJVY73.js";
135
+ braveWallet
136
+ } from "./chunk-ABYQAXUX.js";
128
137
  import {
129
138
  bitverseWallet
130
139
  } from "./chunk-NL4I7WOT.js";
131
- import {
132
- bifrostWallet
133
- } from "./chunk-SL4VH23R.js";
134
140
  import {
135
141
  bitskiWallet
136
142
  } from "./chunk-C67TQJ6W.js";
137
- import {
138
- bitgetWallet
139
- } from "./chunk-75A2U7T7.js";
140
143
  import {
141
144
  bloomWallet
142
145
  } from "./chunk-NTGZF5BY.js";
143
146
  import {
144
- bybitWallet
145
- } from "./chunk-CUKVUCIP.js";
147
+ bitgetWallet
148
+ } from "./chunk-75A2U7T7.js";
146
149
  import "./chunk-QII6PY2D.js";
147
- import {
148
- argentWallet
149
- } from "./chunk-NZ5G23JP.js";
150
150
  import "./chunk-ZOLACFTK.js";
151
151
  import "./chunk-ZDU3JFGR.js";
152
152
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -80,8 +80,8 @@
80
80
  "react-remove-scroll": "2.5.7",
81
81
  "ua-parser-js": "^1.0.37",
82
82
  "@tanstack/react-query": "^5.28.8",
83
- "@funkit/wagmi-tools": "^1.0.1",
84
- "@funkit/core": "^1.0.0",
83
+ "@funkit/wagmi-tools": "^1.0.2",
84
+ "@funkit/core": "^1.0.1",
85
85
  "@datadog/browser-logs": "^5.12.0",
86
86
  "@privy-io/js-sdk-core": "^0.14.0",
87
87
  "@moonpay/moonpay-react": "^1.6.1",