@funkit/connect 6.5.0 → 6.7.0

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 (34) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/{chunk-IR3HFYKM.js → chunk-AYGZMDTC.js} +3 -0
  3. package/dist/{chunk-Z3KNAO7N.js → chunk-UOY5XFCR.js} +3 -0
  4. package/dist/components/Box/Box.d.ts +13 -13
  5. package/dist/components/Dropdown/BaseDropdownItem.d.ts +2 -1
  6. package/dist/components/Dropdown/ChainDropdown.d.ts +1 -6
  7. package/dist/components/Dropdown/TokenDropdown.d.ts +1 -6
  8. package/dist/components/FunInput/FunInput.d.ts +4 -4
  9. package/dist/components/Icons/SpinnerIconWithBackground.d.ts +1 -1
  10. package/dist/components/MeldQuoteItem/MeldQuoteItem.d.ts +2 -1
  11. package/dist/components/SourceMeldQuoteItem/SourceMeldQuoteItem.d.ts +4 -2
  12. package/dist/config/getDefaultConfig.d.ts +2 -3
  13. package/dist/consts/customers.d.ts +1 -0
  14. package/dist/css/sprinkles.css.d.ts +19 -13
  15. package/dist/domains/meld.d.ts +2 -0
  16. package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
  17. package/dist/hooks/useTextMeasurer.d.ts +3 -0
  18. package/dist/index.css +875 -812
  19. package/dist/index.js +1088 -673
  20. package/dist/modals/CheckoutModal/InputAmount/InputAmountLoaded.d.ts +2 -2
  21. package/dist/modals/CheckoutModal/InputAmount/state.d.ts +8 -1
  22. package/dist/modals/CheckoutModal/InputAmount/useAmountInput.d.ts +4 -1
  23. package/dist/modals/CheckoutModal/InputAmount/utils.d.ts +27 -0
  24. package/dist/modals/CheckoutModal/MeldQuotes/MeldQuotes.d.ts +1 -1
  25. package/dist/providers/FunkitCheckoutContext.d.ts +2 -8
  26. package/dist/providers/FunkitConfigContext.d.ts +0 -7
  27. package/dist/providers/FunkitProvider.d.ts +1 -2
  28. package/dist/providers/FunkitThemeProvider.d.ts +9 -0
  29. package/dist/themes/darkTheme.js +1 -1
  30. package/dist/themes/lightTheme.js +1 -1
  31. package/dist/utils/checkout.d.ts +1 -1
  32. package/dist/wallets/Wallet.d.ts +3 -2
  33. package/dist/wallets/walletConnectors/index.js +33 -33
  34. package/package.json +6 -6
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { FunkitTextCustomizationsConfig } from '~/providers/FunkitConfigContext';
2
+ import { type FunkitTextCustomizationsConfig } from '~/providers/FunkitConfigContext';
3
3
  import type { AssetHoldingsItem } from '~/utils/assets';
4
4
  import type { FunkitCheckoutConfig } from '../../../providers/FunkitCheckoutContext';
5
5
  import { FunCheckoutStep, type ModalStepComponentProps } from '../stepTransition';
@@ -15,5 +15,5 @@ interface InputAmountLoadedProps extends ModalStepComponentProps<FunCheckoutStep
15
15
  export declare function openMeldPopup(linkGetter: () => Promise<{
16
16
  widgetUrl: string;
17
17
  }>): Promise<void>;
18
- export declare function InputAmountLoaded({ checkoutConfig, modalState, onNext, sourceHolding, unitPrice, defaultFiatCurrency, textCustomizations, }: InputAmountLoadedProps): React.JSX.Element;
18
+ export declare function InputAmountLoaded({ checkoutConfig, modalState, onNext, onClose, sourceHolding, unitPrice, defaultFiatCurrency, textCustomizations, }: InputAmountLoadedProps): React.JSX.Element;
19
19
  export {};
@@ -15,6 +15,8 @@ export interface AmountInputInitOptions {
15
15
  minUsd?: number;
16
16
  /** Currency code for the currently selected fiat currency. Defaults to USD */
17
17
  fiatCurrency?: string;
18
+ /** Locale */
19
+ locale: Intl.LocalesArgument;
18
20
  /** Quick options, in fiat (not %) */
19
21
  quickOptions?: number[];
20
22
  }
@@ -29,6 +31,8 @@ export interface AmountInputState {
29
31
  inputValue: string;
30
32
  /** Whether the input is currently in fiat */
31
33
  isInputInFiat: boolean;
34
+ /** Locale */
35
+ locale: Intl.LocalesArgument;
32
36
  /** Estimated available amount, in USD (defaults to unlimited) */
33
37
  usdAvailableAmount: number | null;
34
38
  /** Maximum amount, in USD (defaults to unlimited) */
@@ -38,8 +42,11 @@ export interface AmountInputState {
38
42
  }
39
43
  /** Derived state includes additional fields that are pure functions of base state */
40
44
  export interface AmountInputDerivedState extends AmountInputState {
45
+ inputDecimals: number;
41
46
  inputError: AmountInputError | null;
47
+ inputPrefix: string;
42
48
  isValid: boolean;
49
+ placeholder: string;
43
50
  }
44
51
  export type AmountInputAction = {
45
52
  /** Switches between fiat and crypto input mode */
@@ -83,6 +90,6 @@ export type AmountInputError = {
83
90
  * Return half the balance and round up to nearest 10, 100, 1000 etc
84
91
  */
85
92
  export declare function calcInitialFiatAmount(balance: number): number;
86
- export declare function initializeState({ checkoutConfig, maxUsd, minUsd, paymentMethod, sourceHolding, unitPrice: realUnitPrice, defaultAmount, fiatCurrency, quickOptions, }: AmountInputInitOptions): AmountInputState;
93
+ export declare function initializeState({ checkoutConfig, defaultAmount, fiatCurrency, locale, maxUsd, minUsd, paymentMethod, quickOptions, sourceHolding, unitPrice: realUnitPrice, }: AmountInputInitOptions): AmountInputState;
87
94
  export declare function reduceState(state: AmountInputState, action: AmountInputAction): AmountInputState;
88
95
  export declare function getDerivedState(state: AmountInputState): AmountInputDerivedState;
@@ -1,9 +1,12 @@
1
+ import { type RefObject } from 'react';
1
2
  import type { FunInputChangeEvent } from '~/components/FunInput/FunInput';
2
3
  import { type AmountInputDerivedState, type AmountInputInitOptions } from './state';
3
4
  import { type InputAmountSuggestion } from './utils';
4
5
  interface UseAmountInputResult extends AmountInputDerivedState {
6
+ fontSize: number;
7
+ inputWidth: number | undefined;
5
8
  onChange(event: FunInputChangeEvent): void;
6
- placeholder: string;
9
+ ref: RefObject<HTMLInputElement>;
7
10
  setFiatAmount(usdAmount: number): AmountInputDerivedState;
8
11
  /** Possible user action to recover from the current error */
9
12
  suggestion: InputAmountSuggestion | undefined;
@@ -18,3 +18,30 @@ export interface InputAmountSuggestion {
18
18
  */
19
19
  export declare const getInputAmountSuggestion: (error: AmountInputError | null) => InputAmountSuggestion | undefined;
20
20
  export declare const getInputErrorNotification: (error: AmountInputError | null) => ErrorNotification | undefined;
21
+ export type NumberSeparators = {
22
+ decimalSeparator: string;
23
+ groupSeparator: RegExp;
24
+ };
25
+ export declare function getNumberSeparators(locale: Intl.LocalesArgument): NumberSeparators;
26
+ export declare function parseNumberInputValue(inputValue: string, separators: NumberSeparators): {
27
+ amount: number | undefined;
28
+ amountString: string;
29
+ amountStringNormalized: string;
30
+ decimalPart: string | null;
31
+ integerPart: string;
32
+ };
33
+ export declare function getCurrencyFormattingOptions(fiatCurrency: string, locale: Intl.LocalesArgument): {
34
+ currencySymbol: string;
35
+ currencySymbolWithSpacing: string;
36
+ decimals: number;
37
+ };
38
+ export declare function formatAssetAmountWithLocale(value: number, options: {
39
+ locale: Intl.LocalesArgument;
40
+ }): string;
41
+ export declare function formatCurrencyAmountWithLocale(value: number, options: {
42
+ fiatCurrency: string;
43
+ locale: Intl.LocalesArgument;
44
+ }): string;
45
+ export declare function replaceStringRange(original: string, replacement: string, start: number, end: number): string;
46
+ export declare function reformatDecimalPart(decimalPart: string, decimals: number): string;
47
+ export declare function reformatIntegerPart(integerPart: string, locale: Intl.LocalesArgument, preserveLeadingZeroes: boolean): string;
@@ -1,4 +1,4 @@
1
- import type { MeldQuote, MeldServiceProvider } from '@funkit/api-base';
1
+ import { type MeldQuote, MeldServiceProvider } from '@funkit/api-base';
2
2
  import React from 'react';
3
3
  import type { PaymentMethodCardInfo } from '~/domains/paymentMethods';
4
4
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
@@ -21,7 +21,7 @@ export declare enum FunCheckoutStartingStep {
21
21
  CONFIRMATION = "confirmation",
22
22
  SELECT_ASSET = "select_asset"
23
23
  }
24
- export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'generateActionsParams' | 'customRecipient' | 'modalTitle' | 'iconSrc' | 'modalTitleMeta' | 'externalCheckoutUserId'> {
24
+ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'generateActionsParams' | 'customRecipient' | 'modalTitle' | 'iconSrc' | 'modalTitleMeta'> {
25
25
  /** List of contract action params **/
26
26
  generateActionsParams?: (targetAssetAmount: number, config?: {
27
27
  targetAsset: Address;
@@ -40,8 +40,6 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
40
40
  iconSrc?: null | string;
41
41
  /** Title of the item being checked out. e.g. Staked Ether, XYZ Option, Solar Bond ABC **/
42
42
  checkoutItemTitle: string;
43
- /** @deprecated use targetAssetAmount **/
44
- checkoutItemAmount?: number;
45
43
  /** amount of source token. it is not baseUnit **/
46
44
  withdrawalSourceTokenBalance?: () => number;
47
45
  /** Whether checkout should be started in Defi mode, which has various flow implications (most importantly targetAssetAmount must be set and is not editable throughout the checkout) */
@@ -62,8 +60,6 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
62
60
  /** *****************************
63
61
  * Miscellaneous configurations *
64
62
  ********************************/
65
- /** User identification within customer's app for logging and customer dashboard purposes (future). **/
66
- externalCheckoutUserId?: string;
67
63
  /** a list of candidate assets to be chosen dynamically */
68
64
  dynamicTargetAssetCandidates?: DynamicTargetAssetCandidate[];
69
65
  /** minimal toAmount needed to proceed checkout. Checked after quote */
@@ -74,7 +70,7 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
74
70
  }
75
71
  export interface FunkitWithdrawalConfig {
76
72
  /** Title to show in the checkout modal. Defaults to "Checkout" **/
77
- modalTitle?: string;
73
+ modalTitle: string;
78
74
  /** Additional information to show in the title of the checkout modal. Blank by default **/
79
75
  modalTitleMeta?: string;
80
76
  /** Icon to show in the checkout modal (50px x 50px). If not specified, no icon will be shown. **/
@@ -84,8 +80,6 @@ export interface FunkitWithdrawalConfig {
84
80
  sourceChainId: string;
85
81
  /** source token id to withdraw **/
86
82
  sourceTokenAddress: Address;
87
- /** whether to show connected as preferred withdrawal destination*/
88
- showConnectedWalletAsPreferredRecipient?: boolean;
89
83
  /** Wallet instance used to execute the quote */
90
84
  wallet: WithdrawalClient;
91
85
  }
@@ -47,10 +47,6 @@ export interface FunkitUiCustomizationsConfig {
47
47
  /** Whether to allow entering an amount of tokens, rather than only USD - defaults to true */
48
48
  allowTokenAmountInput?: boolean;
49
49
  };
50
- paymentMethods?: {
51
- /** Whether paying by card is a payment method the users can use - defaults to true */
52
- isCardEnabled?: boolean;
53
- };
54
50
  callToActionsUppercase?: boolean;
55
51
  }
56
52
  export declare const DEFAULT_TEXT_CUSTOMIZATIONS: FunkitTextCustomizationsConfig;
@@ -71,8 +67,6 @@ export type FunkitConfig = {
71
67
  apiKey: string;
72
68
  /** App name **/
73
69
  appName: string;
74
- /** Whether app's background is scrollable when a widget is active **/
75
- allowBackgroundScroll?: boolean;
76
70
  /** Text customizations across all widgets **/
77
71
  textCustomizations?: Partial<FunkitTextCustomizationsConfig>;
78
72
  /** UI customizations across all widgets **/
@@ -81,7 +75,6 @@ export type FunkitConfig = {
81
75
  loginConfig: Partial<FunkitLoginOptionsConfig>;
82
76
  };
83
77
  interface FinalFunkitConfigInternal extends FunkitConfig {
84
- allowBackgroundScroll: boolean;
85
78
  textCustomizations: FunkitTextCustomizationsConfig;
86
79
  loginConfig: FunkitLoginOptionsConfig;
87
80
  }
@@ -23,8 +23,7 @@ interface FunkitProviderInnerProps {
23
23
  sandbox?: boolean | undefined;
24
24
  modalSize?: ModalSizes;
25
25
  }
26
- export type FunkitWagmiConfig = Omit<CreateFunkitWagmiConfigParameters, 'funkitApiKey' | 'initialChainId' | 'chains' | 'appName'> & {
27
- chains: Chain[];
26
+ export type FunkitWagmiConfig = Omit<CreateFunkitWagmiConfigParameters, 'funkitApiKey' | 'initialChainId' | 'appName'> & {
28
27
  projectId: string;
29
28
  };
30
29
  export interface FunkitProviderProps extends Omit<FunkitProviderInnerProps, 'initialChain'> {
@@ -222,6 +222,9 @@ export declare const useActiveTheme: () => {
222
222
  notification: string;
223
223
  qrCode: string;
224
224
  buttonFocusedShadow: string;
225
+ buttonHoverShadow: string;
226
+ buttonDisabledShadow: string;
227
+ selectedDropdownItem: string;
225
228
  };
226
229
  spacing: {
227
230
  modalBaseHorizontalPadding: string;
@@ -439,6 +442,9 @@ export declare const useActiveTheme: () => {
439
442
  notification: string;
440
443
  qrCode: string;
441
444
  buttonFocusedShadow: string;
445
+ buttonHoverShadow: string;
446
+ buttonDisabledShadow: string;
447
+ selectedDropdownItem: string;
442
448
  };
443
449
  spacing: {
444
450
  modalBaseHorizontalPadding: string;
@@ -654,6 +660,9 @@ export declare const useActiveTheme: () => {
654
660
  notification: string;
655
661
  qrCode: string;
656
662
  buttonFocusedShadow: string;
663
+ buttonHoverShadow: string;
664
+ buttonDisabledShadow: string;
665
+ selectedDropdownItem: string;
657
666
  };
658
667
  spacing: {
659
668
  modalBaseHorizontalPadding: string;
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-Z3KNAO7N.js";
4
+ } from "../chunk-UOY5XFCR.js";
5
5
  import "../chunk-7HKC2KCK.js";
6
6
  export {
7
7
  darkTheme
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-IR3HFYKM.js";
4
+ } from "../chunk-AYGZMDTC.js";
5
5
  import "../chunk-7HKC2KCK.js";
6
6
  export {
7
7
  lightTheme
@@ -54,7 +54,6 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
54
54
  bypassInit: boolean;
55
55
  apiKey?: string;
56
56
  nonce?: bigint | undefined;
57
- logger?: import("@funkit/api-base").Logger | undefined;
58
57
  fee?: {
59
58
  token?: string;
60
59
  amount?: number;
@@ -62,6 +61,7 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
62
61
  recipient: Address;
63
62
  } | undefined;
64
63
  skipDBAction?: boolean | undefined;
64
+ logger?: import("@funkit/api-base").Logger | undefined;
65
65
  };
66
66
  export type TokenInfo = {
67
67
  symbol: string;
@@ -74,10 +74,11 @@ export interface DefaultWalletOptions {
74
74
  walletConnectParameters?: FunkitConnectWalletConnectParameters;
75
75
  }
76
76
  export type CreateWalletFn = (createWalletParams: CoinbaseWalletOptions & Omit<WalletConnectWalletOptions, 'projectId'> & DefaultWalletOptions) => Wallet;
77
- export type WalletList = {
77
+ type WalletListEntry = {
78
78
  groupName: string;
79
79
  wallets: CreateWalletFn[];
80
- }[];
80
+ };
81
+ export type WalletList = [WalletListEntry, ...WalletListEntry[]];
81
82
  export type FunkitConnectWalletConnectParameters = Omit<WalletConnectParameters, 'showQrModal' | 'projectId'>;
82
83
  export type FunkitConnectDetails = Omit<Wallet, 'createConnector' | 'hidden'> & {
83
84
  index: number;
@@ -2,24 +2,24 @@
2
2
  import {
3
3
  xdefiWallet
4
4
  } from "./chunk-BOU4WKRZ.js";
5
- import {
6
- zealWallet
7
- } from "./chunk-RNBEDQHF.js";
8
5
  import {
9
6
  zerionWallet
10
7
  } from "./chunk-Q3H3TRBS.js";
11
8
  import {
12
- safepalWallet
13
- } from "./chunk-EC6CHBSZ.js";
9
+ zealWallet
10
+ } from "./chunk-RNBEDQHF.js";
11
+ import {
12
+ subWallet
13
+ } from "./chunk-ZSI5N4VV.js";
14
14
  import {
15
15
  tahoWallet
16
16
  } from "./chunk-ZZZRUXZE.js";
17
- import {
18
- talismanWallet
19
- } from "./chunk-DRO6WYMM.js";
20
17
  import {
21
18
  tokenPocketWallet
22
19
  } from "./chunk-J3LI3FYZ.js";
20
+ import {
21
+ talismanWallet
22
+ } from "./chunk-DRO6WYMM.js";
23
23
  import {
24
24
  tokenaryWallet
25
25
  } from "./chunk-D6AOOO5F.js";
@@ -44,51 +44,51 @@ import {
44
44
  import {
45
45
  roninWallet
46
46
  } from "./chunk-QLVVUKYB.js";
47
- import {
48
- ramperWallet
49
- } from "./chunk-BYXPFMI7.js";
50
47
  import {
51
48
  safeWallet
52
49
  } from "./chunk-BQQQL6UD.js";
50
+ import {
51
+ ramperWallet
52
+ } from "./chunk-BYXPFMI7.js";
53
53
  import {
54
54
  safeheronWallet
55
55
  } from "./chunk-RZIO5TFF.js";
56
56
  import {
57
- subWallet
58
- } from "./chunk-ZSI5N4VV.js";
59
- import {
60
- ledgerWallet
61
- } from "./chunk-BRBKM4PW.js";
57
+ safepalWallet
58
+ } from "./chunk-EC6CHBSZ.js";
62
59
  import {
63
60
  metaMaskWallet
64
61
  } from "./chunk-UYGJO62F.js";
62
+ import {
63
+ ledgerWallet
64
+ } from "./chunk-BRBKM4PW.js";
65
65
  import {
66
66
  oktoWallet
67
67
  } from "./chunk-ADIXAKUL.js";
68
68
  import {
69
69
  mewWallet
70
70
  } from "./chunk-OL5ZO7E4.js";
71
+ import {
72
+ oneInchWallet
73
+ } from "./chunk-OESTDX6I.js";
71
74
  import {
72
75
  okxWallet
73
76
  } from "./chunk-AFXHGWBH.js";
74
77
  import {
75
78
  omniWallet
76
79
  } from "./chunk-7CUY5G6R.js";
77
- import {
78
- oneInchWallet
79
- } from "./chunk-OESTDX6I.js";
80
80
  import {
81
81
  oneKeyWallet
82
82
  } from "./chunk-SHBUZ7U7.js";
83
83
  import {
84
84
  foxWallet
85
85
  } from "./chunk-CNPKISHN.js";
86
- import {
87
- frontierWallet
88
- } from "./chunk-VWCLFMWJ.js";
89
86
  import {
90
87
  frameWallet
91
88
  } from "./chunk-IFON7E6U.js";
89
+ import {
90
+ frontierWallet
91
+ } from "./chunk-VWCLFMWJ.js";
92
92
  import {
93
93
  gateWallet
94
94
  } from "./chunk-CJGUM55H.js";
@@ -101,39 +101,36 @@ import {
101
101
  import {
102
102
  kresusWallet
103
103
  } from "./chunk-MJXPRJZT.js";
104
- import {
105
- clvWallet
106
- } from "./chunk-2GJQ4XZQ.js";
107
104
  import {
108
105
  bybitWallet
109
106
  } from "./chunk-LNEC5RNX.js";
107
+ import {
108
+ clvWallet
109
+ } from "./chunk-2GJQ4XZQ.js";
110
110
  import {
111
111
  coin98Wallet
112
112
  } from "./chunk-KIDC67XJ.js";
113
113
  import {
114
114
  coinbaseWallet
115
115
  } from "./chunk-H4IRCEZN.js";
116
- import {
117
- dawnWallet
118
- } from "./chunk-HWPKCIBE.js";
119
116
  import {
120
117
  coreWallet
121
118
  } from "./chunk-JCHN6A47.js";
122
119
  import {
123
- desigWallet
124
- } from "./chunk-OPAZMNA7.js";
120
+ dawnWallet
121
+ } from "./chunk-HWPKCIBE.js";
125
122
  import {
126
123
  enkryptWallet
127
124
  } from "./chunk-OLOIXTYS.js";
125
+ import {
126
+ desigWallet
127
+ } from "./chunk-OPAZMNA7.js";
128
128
  import {
129
129
  argentWallet
130
130
  } from "./chunk-WSQ2YJO2.js";
131
131
  import {
132
132
  bifrostWallet
133
133
  } from "./chunk-UIASLGLV.js";
134
- import {
135
- bitgetWallet
136
- } from "./chunk-5W7VDOCL.js";
137
134
  import {
138
135
  bitskiWallet
139
136
  } from "./chunk-HS3C7OQV.js";
@@ -143,6 +140,9 @@ import {
143
140
  import {
144
141
  braveWallet
145
142
  } from "./chunk-BPZ2XJO2.js";
143
+ import {
144
+ bitgetWallet
145
+ } from "./chunk-5W7VDOCL.js";
146
146
  import "./chunk-DNSG5Q7V.js";
147
147
  import {
148
148
  bloomWallet
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "6.5.0",
3
+ "version": "6.7.0",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -94,12 +94,12 @@
94
94
  "ua-parser-js": "^1.0.37",
95
95
  "use-debounce": "^10.0.5",
96
96
  "uuid": "^9.0.1",
97
- "@funkit/api-base": "1.10.0",
98
- "@funkit/fun-relay": "2.0.0",
99
- "@funkit/core": "2.3.42",
100
- "@funkit/utils": "1.1.8",
97
+ "@funkit/api-base": "1.11.0",
98
+ "@funkit/core": "2.3.43",
101
99
  "@funkit/chains": "0.3.10",
102
- "@funkit/wagmi-tools": "3.0.64"
100
+ "@funkit/fun-relay": "2.0.1",
101
+ "@funkit/utils": "1.1.8",
102
+ "@funkit/wagmi-tools": "3.0.65"
103
103
  },
104
104
  "repository": {
105
105
  "type": "git",