@funkit/connect 6.14.10 → 6.14.12

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 (35) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/components/FunCheckoutHistory/FunDirectExecutionHistoryDetail.d.ts +2 -1
  3. package/dist/components/FunPayments/FunPaymentMethods.d.ts +1 -1
  4. package/dist/components/FunSelectBrokerage/FunBrokerageItem.css.d.ts +1 -0
  5. package/dist/components/FunSelectBrokerage/FunBrokerageItem.d.ts +8 -0
  6. package/dist/components/FunSelectBrokerage/FunSelectBrokerage.d.ts +9 -0
  7. package/dist/components/YouPayYouReceive/YouPayYouReceive.d.ts +4 -1
  8. package/dist/consts/bluvo.d.ts +15 -0
  9. package/dist/domains/paymentMethods.d.ts +9 -1
  10. package/dist/domains/wallet.d.ts +6 -2
  11. package/dist/hooks/queries/useRecentDirectExecutions.d.ts +9 -1
  12. package/dist/hooks/track/WithdrawModalEvent.d.ts +4 -0
  13. package/dist/hooks/track/useTrack.d.ts +4 -1
  14. package/dist/hooks/useBluvo.d.ts +24 -0
  15. package/dist/hooks/useCheckoutDirectExecutionHistory.d.ts +10 -0
  16. package/dist/hooks/usePaymentSources.d.ts +1 -0
  17. package/dist/index.css +18 -10
  18. package/dist/index.js +3078 -2346
  19. package/dist/modals/CheckoutModal/Brokerage/SelectBrokerage.d.ts +10 -0
  20. package/dist/modals/CheckoutModal/FunCheckoutStep.d.ts +3 -1
  21. package/dist/modals/CheckoutModal/InputAmount/InputAmount.d.ts +2 -1
  22. package/dist/modals/CheckoutModal/MeldCurrencySelect/utils.d.ts +1 -0
  23. package/dist/modals/CheckoutModal/MeldRedirect/MeldRedirect.d.ts +14 -0
  24. package/dist/modals/CheckoutModal/TransferToken/DirectExecutionNotification.d.ts +2 -2
  25. package/dist/modals/CheckoutModal/TransferToken/types.d.ts +3 -2
  26. package/dist/modals/CheckoutModal/stepTransition.d.ts +6 -0
  27. package/dist/providers/FunkitBrokerageProvider.d.ts +14 -0
  28. package/dist/providers/FunkitCheckoutContext.d.ts +1 -1
  29. package/dist/providers/FunkitCheckoutContext.track.d.ts +4 -3
  30. package/dist/utils/bluvo.d.ts +7 -0
  31. package/dist/utils/directExecution.d.ts +1 -0
  32. package/dist/utils/flags/config.d.ts +2 -9
  33. package/dist/utils/safeJSON.d.ts +1 -0
  34. package/dist/wallets/walletConnectors/index.js +47 -47
  35. package/package.json +8 -6
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { type PaymentMethodBrokerageInfo } from '~/domains/paymentMethods';
3
+ import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
4
+ export type SelectBrokerageState = CheckoutModalCommonState;
5
+ export type SelectBrokerageNext = {
6
+ hasActiveConnection: boolean;
7
+ paymentInfo: PaymentMethodBrokerageInfo;
8
+ };
9
+ export declare const SelectBrokerageInfo: ModalStepInfo<FunCheckoutStep.SELECT_BROKERAGE>;
10
+ export declare function SelectBrokerage({ onNext, }: ModalStepComponentProps<FunCheckoutStep.SELECT_BROKERAGE>): React.JSX.Element;
@@ -15,6 +15,8 @@ export declare enum FunCheckoutStep {
15
15
  FIAT_ACCOUNT_DETAIL = "fiat_account_detail",
16
16
  ERROR_SCREEN = "error_screen",
17
17
  MELD_QUOTES = "meld_quotes",
18
+ MELD_REDIRECT = "meld_redirect",
18
19
  MELD_CURRENCY_SELECT = "meld_currency_select",
19
- DIRECT_EXECUTION_NOTIF_CENTER = "direct_execution_notif_center"
20
+ DIRECT_EXECUTION_NOTIF_CENTER = "direct_execution_notif_center",
21
+ SELECT_BROKERAGE = "select_brokerage"
20
22
  }
@@ -12,7 +12,8 @@ export type InputAmountNext = Record<string, never> | {
12
12
  fiatAmount: number | undefined;
13
13
  fiatCurrency?: string;
14
14
  provider?: MeldServiceProvider;
15
- nextStep?: FunCheckoutStep.SOURCE_CHANGE | FunCheckoutStep.MELD_CURRENCY_SELECT | FunCheckoutStep.MELD_QUOTES;
15
+ quote?: MeldQuote;
16
+ nextStep?: FunCheckoutStep.SOURCE_CHANGE | FunCheckoutStep.MELD_CURRENCY_SELECT | FunCheckoutStep.MELD_QUOTES | FunCheckoutStep.MELD_REDIRECT;
16
17
  };
17
18
  export declare const InputAmountInfo: ModalStepInfo<FunCheckoutStep.INPUT_AMOUNT>;
18
19
  export declare function InputAmount(props: ModalStepComponentProps<FunCheckoutStep.INPUT_AMOUNT>): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const getFlagEmoji: (currencyCode: string) => string;
@@ -0,0 +1,14 @@
1
+ import type { MeldQuote } from '@funkit/api-base';
2
+ import React from 'react';
3
+ import type { PaymentMethodCardInfo } from '~/domains/paymentMethods';
4
+ import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
5
+ export type MeldRedirectState = CheckoutModalCommonState & {
6
+ paymentMethodInfo: PaymentMethodCardInfo;
7
+ /** Checkout amount in fiat */
8
+ fiatAmount: number | undefined;
9
+ fiatCurrency: string | undefined;
10
+ quote: MeldQuote;
11
+ };
12
+ export type MeldRedirectNext = Record<string, never>;
13
+ export declare const MeldRedirectInfo: ModalStepInfo<FunCheckoutStep.MELD_REDIRECT>;
14
+ export declare function MeldRedirect({ modalState, }: ModalStepComponentProps<FunCheckoutStep.MELD_REDIRECT>): React.JSX.Element;
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
- import type { DirectExecution } from '@funkit/api-base';
3
2
  import type { Address } from 'viem';
3
+ import type { MergedMultiStepDirectExecution } from '~/hooks/queries/useRecentDirectExecutions';
4
4
  interface DirectExecutionNotificationProps {
5
- directExecution: DirectExecution;
5
+ directExecution: MergedMultiStepDirectExecution;
6
6
  onClose: (id: string) => void;
7
7
  onHelp: (depositAddress: Address) => void;
8
8
  }
@@ -1,6 +1,7 @@
1
- import type { CheckoutHistoryItem, DirectExecution } from '@funkit/api-base';
1
+ import type { CheckoutHistoryItem } from '@funkit/api-base';
2
2
  import type { Address } from 'viem';
3
- export type NotificationItem = (DirectExecution & {
3
+ import type { MergedMultiStepDirectExecution } from '~/hooks/queries/useRecentDirectExecutions';
4
+ export type NotificationItem = (MergedMultiStepDirectExecution & {
4
5
  isDirectExecution: true;
5
6
  }) | (CheckoutHistoryItem & {
6
7
  isDirectExecution: false;
@@ -5,6 +5,7 @@ import { type ErrorScreenState } from '~/modals/CheckoutModal/VirtualFiatAccount
5
5
  import { type VirtualFiatAccountNext, type VirtualFiatAccountState } from '~/modals/CheckoutModal/VirtualFiatAccount/VirtualFiatAccount';
6
6
  import { FunCheckoutStartingStep, type FunkitActiveCheckoutItem } from '../../providers/FunkitCheckoutContext';
7
7
  import { type FunkitTextCustomizationsConfig } from '../../providers/FunkitConfigContext';
8
+ import { type SelectBrokerageNext, type SelectBrokerageState } from './Brokerage/SelectBrokerage';
8
9
  import { type CheckoutCompleteNext, type CheckoutCompleteState } from './CheckoutComplete/CheckoutComplete';
9
10
  import { type CheckoutHelpState } from './CheckoutHelp/CheckoutHelp';
10
11
  import { type ConfirmationStepNext, type ConfirmationStepState } from './ConfirmationStep/ConfirmationStep';
@@ -14,6 +15,7 @@ import { type InputAmountNext, type InputAmountState } from './InputAmount/Input
14
15
  import { type LoadingAccountNext, type LoadingAccountState } from './LoadingAccount';
15
16
  import { type MeldCurrencySelectNext, type MeldCurrencySelectState } from './MeldCurrencySelect/MeldCurrencySelect';
16
17
  import { type MeldQuotesNext, type MeldQuotesState } from './MeldQuotes/MeldQuotes';
18
+ import { type MeldRedirectNext, type MeldRedirectState } from './MeldRedirect/MeldRedirect';
17
19
  import { type MoonpaySetupNext, type MoonpaySetupState } from './MoonpaySetup';
18
20
  import { type SelectAssetNext, type SelectAssetState } from './SelectAsset';
19
21
  import { type SourceChangeNext, type SourceChangeState } from './SourceChange/SourceChange';
@@ -81,8 +83,10 @@ export type CheckoutModalState<S extends FunCheckoutStep = FunCheckoutStep> = {
81
83
  [FunCheckoutStep.FIAT_ACCOUNT_DETAIL]: FiatAccountDetailState;
82
84
  [FunCheckoutStep.ERROR_SCREEN]: ErrorScreenState;
83
85
  [FunCheckoutStep.MELD_QUOTES]: MeldQuotesState;
86
+ [FunCheckoutStep.MELD_REDIRECT]: MeldRedirectState;
84
87
  [FunCheckoutStep.MELD_CURRENCY_SELECT]: MeldCurrencySelectState;
85
88
  [FunCheckoutStep.DIRECT_EXECUTION_NOTIF_CENTER]: DirectExecutionNotifCenterState;
89
+ [FunCheckoutStep.SELECT_BROKERAGE]: SelectBrokerageState;
86
90
  }[T] & {
87
91
  step: T;
88
92
  };
@@ -104,8 +108,10 @@ export type NextPayload<S extends FunCheckoutStep = FunCheckoutStep> = {
104
108
  [FunCheckoutStep.FIAT_ACCOUNT_DETAIL]: FiatAccountDetailNext;
105
109
  [FunCheckoutStep.ERROR_SCREEN]: null;
106
110
  [FunCheckoutStep.MELD_QUOTES]: MeldQuotesNext;
111
+ [FunCheckoutStep.MELD_REDIRECT]: MeldRedirectNext;
107
112
  [FunCheckoutStep.MELD_CURRENCY_SELECT]: MeldCurrencySelectNext;
108
113
  [FunCheckoutStep.DIRECT_EXECUTION_NOTIF_CENTER]: null;
114
+ [FunCheckoutStep.SELECT_BROKERAGE]: SelectBrokerageNext;
109
115
  }[S] & {
110
116
  /** Whether screen transition should change direction to simulate back transition. Only applies if there is a history entry in the stack*/
111
117
  reverseAnimation?: boolean;
@@ -0,0 +1,14 @@
1
+ import { type UseBluvoFlowHook } from '@bluvo/react';
2
+ import React, { type ReactNode } from 'react';
3
+ import type { BluvoExchangeType } from '~/consts/bluvo';
4
+ type BluvoLocalStorageData = Partial<Record<BluvoExchangeType, string>>;
5
+ interface FunkitBrokerageContextProps {
6
+ bluvoClient: UseBluvoFlowHook | null;
7
+ authorizedConnections: BluvoLocalStorageData;
8
+ }
9
+ export declare const FunkitBrokerageContext: React.Context<FunkitBrokerageContextProps>;
10
+ export declare const FunkitBrokerageProvider: React.FC<{
11
+ children: ReactNode;
12
+ }>;
13
+ export declare function useFunkitBrokerageContext(): FunkitBrokerageContextProps;
14
+ export {};
@@ -207,7 +207,7 @@ interface FunkitCheckoutContextInterface {
207
207
  setCheckout: (checkout: FunkitActiveCheckoutItem) => void;
208
208
  setCompletedTimestamp(timestampMs: number): void;
209
209
  withdrawalItem: FunkitActiveWithdrawalItem | null;
210
- initNewWithdrawal(initSettings: Partial<UseFunkitCheckoutPropsWithFullConfig>): string;
210
+ initNewWithdrawal(initSettings: Partial<UseFunkitCheckoutPropsWithFullConfig>, config: UseFunkitCheckoutPropsWithFullConfig): string;
211
211
  updateWithdrawalSourceAssetAmount(newSourceAmount: number): void;
212
212
  }
213
213
  export type CheckoutProgressStep = 1 | 2;
@@ -1,8 +1,9 @@
1
- import { type TrackEventData } from '~/hooks/track/useTrack';
2
- import type { FunkitActiveCheckoutItem } from './FunkitCheckoutContext';
3
- export declare const trackEventFromActiveCheckoutItem: (activeCheckoutItem: FunkitActiveCheckoutItem) => TrackEventData;
1
+ import { CheckoutModalEvent, type TrackEventData } from '~/hooks/track/useTrack';
2
+ import type { FunkitActiveCheckoutItem, FunkitActiveWithdrawalItem } from './FunkitCheckoutContext';
3
+ export declare const trackEventFromActiveItem: (activeItem: FunkitActiveCheckoutItem | FunkitActiveWithdrawalItem, eventName: CheckoutModalEvent | WithdrawModalEvent) => TrackEventData;
4
4
  import type { RelayTxHash, RelayVmType } from '@funkit/fun-relay';
5
5
  import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
6
+ import type { WithdrawModalEvent } from '~/hooks/track/WithdrawModalEvent';
6
7
  export declare const trackEventFromDirectExecutionConfirmed: ({ txHash, checkoutItem, latestQuote, }: {
7
8
  txHash: RelayTxHash<RelayVmType>;
8
9
  checkoutItem: FunkitActiveCheckoutItem;
@@ -0,0 +1,7 @@
1
+ import type { WithdrawableBalance } from '@bluvo/sdk-ts';
2
+ import type { AssetHoldingsMap, BrokerageAssetHoldingsItem } from '~/domains/wallet';
3
+ /**
4
+ * Transforms Bluvo wallet balances into the AssetHoldingsMap format
5
+ * used by the SelectAsset component.
6
+ */
7
+ export declare function transformBluvoBalancesToAssetHoldings(balances: WithdrawableBalance[], preferredChainId?: string): AssetHoldingsMap<BrokerageAssetHoldingsItem>;
@@ -1,3 +1,4 @@
1
1
  import type { DirectExecution } from '@funkit/api-base';
2
+ export declare function getDirectExecutionCreatedTimeMs(directExecution: DirectExecution): number;
2
3
  export declare function getDirectExecutionUpdatedTimeMs(directExecution: DirectExecution): number;
3
4
  export declare function getDirectExecutionRunTimeSeconds(directExecution: DirectExecution): number;
@@ -8,13 +8,6 @@ export declare const flagConfig: {
8
8
  readonly type: "string";
9
9
  readonly default_value: string;
10
10
  readonly overrides: [{
11
- readonly if_any: [{
12
- readonly key: "apiKey";
13
- readonly type: "isAnyOf";
14
- readonly values: ["m4iHIILHcL4gN8EXCMzGe8zIdhuCXxck49mWajzJ", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e"];
15
- }];
16
- readonly value: string;
17
- }, {
18
11
  readonly if_any: [{
19
12
  readonly key: "apiKey";
20
13
  readonly type: "isAnyOf";
@@ -179,7 +172,6 @@ export declare const flagConfig: {
179
172
  readonly help_tutorial_url: {
180
173
  readonly type: "string";
181
174
  readonly default_value: "";
182
- readonly overrides: [];
183
175
  };
184
176
  readonly enable_card: {
185
177
  readonly type: "boolean";
@@ -203,11 +195,12 @@ export declare const flagConfig: {
203
195
  readonly enable_brokerage: {
204
196
  readonly type: "boolean";
205
197
  readonly default_value: false;
198
+ readonly overrides: [Override<boolean>];
206
199
  };
207
200
  readonly enable_meld_payment: {
208
201
  readonly type: "boolean";
209
202
  readonly default_value: false;
210
- readonly overrides: [{
203
+ readonly overrides: [Override<boolean>, {
211
204
  readonly if_any: [{
212
205
  readonly key: "userId";
213
206
  readonly type: "isAnyOf";
@@ -2,3 +2,4 @@
2
2
  * This function is a wrapper around `safeParseJson()` from our `@funkit/utils` package with logging errors to our logger.
3
3
  */
4
4
  export declare function safeJSONParse<T>(src?: string): T | null;
5
+ export declare function useSafeJSONParse<T>(src?: string): T | null;
@@ -1,25 +1,25 @@
1
1
  "use client";
2
- import {
3
- walletConnectWallet
4
- } from "./chunk-NP5QGWNL.js";
5
2
  import {
6
3
  zealWallet
7
4
  } from "./chunk-RNBEDQHF.js";
5
+ import {
6
+ xdefiWallet
7
+ } from "./chunk-BOU4WKRZ.js";
8
8
  import {
9
9
  zerionWallet
10
10
  } from "./chunk-SULRQO27.js";
11
+ import {
12
+ safepalWallet
13
+ } from "./chunk-NT2HYJKW.js";
11
14
  import {
12
15
  tahoWallet
13
16
  } from "./chunk-ZZZRUXZE.js";
14
- import {
15
- subWallet
16
- } from "./chunk-JWFF4AAL.js";
17
17
  import {
18
18
  talismanWallet
19
19
  } from "./chunk-DRO6WYMM.js";
20
20
  import {
21
- tokenPocketWallet
22
- } from "./chunk-2L43XSW3.js";
21
+ uniswapWallet
22
+ } from "./chunk-LH7BMNFZ.js";
23
23
  import {
24
24
  tokenaryWallet
25
25
  } from "./chunk-D6AOOO5F.js";
@@ -27,56 +27,56 @@ import {
27
27
  trustWallet
28
28
  } from "./chunk-VYBAYMP3.js";
29
29
  import {
30
- uniswapWallet
31
- } from "./chunk-LH7BMNFZ.js";
32
- import {
33
- xdefiWallet
34
- } from "./chunk-BOU4WKRZ.js";
30
+ tokenPocketWallet
31
+ } from "./chunk-2L43XSW3.js";
35
32
  import {
36
- phantomWallet
37
- } from "./chunk-362NXNTM.js";
33
+ walletConnectWallet
34
+ } from "./chunk-NP5QGWNL.js";
38
35
  import {
39
36
  rainbowWallet
40
37
  } from "./chunk-2KUBG3S6.js";
41
- import {
42
- ramperWallet
43
- } from "./chunk-BYXPFMI7.js";
44
38
  import {
45
39
  rabbyWallet
46
40
  } from "./chunk-BBOM42DL.js";
47
41
  import {
48
- roninWallet
49
- } from "./chunk-NWIQNBJU.js";
42
+ ramperWallet
43
+ } from "./chunk-BYXPFMI7.js";
50
44
  import {
51
45
  safeWallet
52
46
  } from "./chunk-BQQQL6UD.js";
47
+ import {
48
+ phantomWallet
49
+ } from "./chunk-362NXNTM.js";
50
+ import {
51
+ roninWallet
52
+ } from "./chunk-NWIQNBJU.js";
53
53
  import {
54
54
  safeheronWallet
55
55
  } from "./chunk-RZIO5TFF.js";
56
56
  import {
57
- safepalWallet
58
- } from "./chunk-NT2HYJKW.js";
57
+ subWallet
58
+ } from "./chunk-JWFF4AAL.js";
59
59
  import {
60
- metaMaskWallet
61
- } from "./chunk-2HYNUNAS.js";
60
+ ledgerWallet
61
+ } from "./chunk-BRBKM4PW.js";
62
+ import {
63
+ oktoWallet
64
+ } from "./chunk-ADIXAKUL.js";
62
65
  import {
63
66
  mewWallet
64
67
  } from "./chunk-OL5ZO7E4.js";
65
68
  import {
66
- oktoWallet
67
- } from "./chunk-ADIXAKUL.js";
69
+ omniWallet
70
+ } from "./chunk-7CUY5G6R.js";
68
71
  import {
69
- okxWallet
70
- } from "./chunk-TDIEHTMB.js";
72
+ metaMaskWallet
73
+ } from "./chunk-2HYNUNAS.js";
71
74
  import {
72
75
  oneInchWallet
73
76
  } from "./chunk-OESTDX6I.js";
74
77
  import {
75
- injectedWallet
76
- } from "./chunk-XWUJE7MW.js";
77
- import {
78
- omniWallet
79
- } from "./chunk-7CUY5G6R.js";
78
+ okxWallet
79
+ } from "./chunk-TDIEHTMB.js";
80
80
  import {
81
81
  oneKeyWallet
82
82
  } from "./chunk-SHBUZ7U7.js";
@@ -84,29 +84,23 @@ import {
84
84
  frameWallet
85
85
  } from "./chunk-IFON7E6U.js";
86
86
  import {
87
- desigWallet
88
- } from "./chunk-OPAZMNA7.js";
89
- import {
90
- imTokenWallet
91
- } from "./chunk-COZ7MIQS.js";
87
+ frontierWallet
88
+ } from "./chunk-TCAGNB4B.js";
92
89
  import {
93
90
  gateWallet
94
91
  } from "./chunk-FKJJQNKX.js";
95
- import {
96
- frontierWallet
97
- } from "./chunk-TCAGNB4B.js";
98
92
  import {
99
93
  kresusWallet
100
94
  } from "./chunk-MJXPRJZT.js";
101
95
  import {
102
- ledgerWallet
103
- } from "./chunk-BRBKM4PW.js";
96
+ imTokenWallet
97
+ } from "./chunk-COZ7MIQS.js";
104
98
  import {
105
99
  bybitWallet
106
100
  } from "./chunk-2STUC6QL.js";
107
101
  import {
108
- clvWallet
109
- } from "./chunk-M3NZ6R2E.js";
102
+ injectedWallet
103
+ } from "./chunk-XWUJE7MW.js";
110
104
  import {
111
105
  coin98Wallet
112
106
  } from "./chunk-OBOVHCEI.js";
@@ -117,11 +111,17 @@ import {
117
111
  coreWallet
118
112
  } from "./chunk-VR4TBQ6S.js";
119
113
  import {
120
- dawnWallet
121
- } from "./chunk-HWPKCIBE.js";
114
+ clvWallet
115
+ } from "./chunk-M3NZ6R2E.js";
122
116
  import {
123
117
  enkryptWallet
124
118
  } from "./chunk-OLOIXTYS.js";
119
+ import {
120
+ dawnWallet
121
+ } from "./chunk-HWPKCIBE.js";
122
+ import {
123
+ desigWallet
124
+ } from "./chunk-OPAZMNA7.js";
125
125
  import {
126
126
  foxWallet
127
127
  } from "./chunk-7QONTUXT.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "6.14.10",
3
+ "version": "6.14.12",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -73,6 +73,8 @@
73
73
  "vitest": "^3.0.9"
74
74
  },
75
75
  "dependencies": {
76
+ "@bluvo/react": "^1.2.2",
77
+ "@bluvo/sdk-ts": "^1.2.2",
76
78
  "@datadog/browser-logs": "5.22.0",
77
79
  "@moonpay/moonpay-react": "^1.6.1",
78
80
  "@number-flow/react": "^0.5.5",
@@ -93,12 +95,12 @@
93
95
  "ua-parser-js": "^1.0.37",
94
96
  "use-debounce": "^10.0.5",
95
97
  "uuid": "^9.0.1",
96
- "@funkit/api-base": "1.12.8",
98
+ "@funkit/api-base": "1.12.10",
99
+ "@funkit/fun-relay": "2.1.2",
100
+ "@funkit/core": "2.3.55",
101
+ "@funkit/utils": "1.1.13",
97
102
  "@funkit/chains": "0.4.2",
98
- "@funkit/fun-relay": "2.1.1",
99
- "@funkit/wagmi-tools": "3.0.76",
100
- "@funkit/core": "2.3.53",
101
- "@funkit/utils": "1.1.13"
103
+ "@funkit/wagmi-tools": "3.0.78"
102
104
  },
103
105
  "repository": {
104
106
  "type": "git",