@funkit/connect 5.5.13-next.0 → 5.5.13-next.1

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 (43) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/components/AnimatedDollarValue/AnimatedDollarValue.d.ts +1 -0
  3. package/dist/components/Dropdown/ChainDropdown.d.ts +3 -1
  4. package/dist/components/Dropdown/TokenAndChainDropdown.d.ts +5 -2
  5. package/dist/components/FunTransactionSummary/PaymentFeesSummary.d.ts +1 -2
  6. package/dist/components/TransferTokenDetails/TransferTokenDetails.d.ts +1 -2
  7. package/dist/components/Withdraw/WithdrawContent.d.ts +5 -3
  8. package/dist/hooks/queries/useWithdrawalRisk.d.ts +1 -0
  9. package/dist/hooks/useCheckoutDirectExecutionHistory.d.ts +1 -0
  10. package/dist/hooks/useCheckoutTransferInit.d.ts +4 -2
  11. package/dist/hooks/useTokenChain.d.ts +3 -1
  12. package/dist/hooks/useTokenTransfer.d.ts +4 -1
  13. package/dist/hooks/useWithdrawal.d.ts +15 -0
  14. package/dist/index.js +12185 -12095
  15. package/dist/modals/CheckoutModal/ConfirmationStep/usePostCheckout.d.ts +1 -0
  16. package/dist/modals/CheckoutModal/InputAmount/InputAmount.d.ts +1 -0
  17. package/dist/modals/CheckoutModal/LoadingAccount.d.ts +6 -2
  18. package/dist/modals/CheckoutModal/SelectAsset.d.ts +1 -0
  19. package/dist/modals/CheckoutModal/SourceChange/SourceChange.d.ts +7 -2
  20. package/dist/modals/CheckoutModal/TransferToken/TransferToken.d.ts +1 -0
  21. package/dist/modals/CheckoutModal/VirtualFiatAccount/FiatAccountDetail.d.ts +1 -0
  22. package/dist/utils/directExecution.d.ts +2 -4
  23. package/dist/utils/flags/config.d.ts +8 -12
  24. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  25. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  28. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  29. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  32. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  33. package/dist/wallets/walletConnectors/index.js +61 -61
  34. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  38. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  39. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  40. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  41. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  42. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  43. package/package.json +6 -6
@@ -24,5 +24,6 @@ interface UsePostCheckoutResult {
24
24
  postCheckoutError: PostCheckoutError | null;
25
25
  postCheckoutStepMessage: string | null;
26
26
  }
27
+ export declare function toPostCheckoutError(error: unknown): PostCheckoutError;
27
28
  export declare function usePostCheckout({ onSuccess, }: UsePostCheckoutOptions): UsePostCheckoutResult;
28
29
  export {};
@@ -7,6 +7,7 @@ export type InputAmountState = CheckoutModalCommonState & {
7
7
  fiatAmount?: number;
8
8
  fiatCurrency?: string;
9
9
  quote?: MeldQuote;
10
+ newUser?: boolean;
10
11
  };
11
12
  export type InputAmountNext = Record<string, never> | {
12
13
  fiatAmount: number | undefined;
@@ -2,7 +2,10 @@ import React from 'react';
2
2
  import { type ConnectablePaymentMethodInfo, PaymentMethod, type PaymentMethodAccountInfo, type PaymentMethodBrokerageInfo, type PaymentMethodVirtualBankInfo } from '../../domains/paymentMethods';
3
3
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from './stepTransition';
4
4
  export type LoadingAccountState = CheckoutModalCommonState;
5
- export type LoadingAccountNext = {
5
+ type WithNewUser<T> = T & {
6
+ newUser?: boolean;
7
+ };
8
+ export type LoadingAccountNext = WithNewUser<{
6
9
  usablePaymentMethod: PaymentMethod.ACCOUNT_BALANCE;
7
10
  paymentMethodInfo: PaymentMethodAccountInfo;
8
11
  } | {
@@ -15,7 +18,8 @@ export type LoadingAccountNext = {
15
18
  /** Can be set to null to skip auto payment method selection */
16
19
  usablePaymentMethod: null | PaymentMethod.TOKEN_TRANSFER;
17
20
  paymentMethodInfo?: ConnectablePaymentMethodInfo;
18
- };
21
+ }>;
19
22
  export declare const LoadingAccountInfo: ModalStepInfo<FunCheckoutStep.LOADING_ACCOUNT>;
20
23
  /** A placeholder component to handle redirecting to the checkout history page */
21
24
  export declare function LoadingAccount({ modalState, onNext, }: ModalStepComponentProps<FunCheckoutStep.LOADING_ACCOUNT>): React.JSX.Element;
25
+ export {};
@@ -4,6 +4,7 @@ import { type PaymentMethodAccountInfo, type PaymentMethodBrokerageInfo } from '
4
4
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from './stepTransition';
5
5
  export type SelectAssetState = CheckoutModalCommonState & {
6
6
  paymentMethodInfo: PaymentMethodBrokerageInfo | PaymentMethodAccountInfo;
7
+ newUser?: boolean;
7
8
  };
8
9
  export type SelectAssetNext = {
9
10
  paymentMethodInfo?: PaymentMethodBrokerageInfo | PaymentMethodAccountInfo;
@@ -3,8 +3,12 @@ import { type ConnectablePaymentMethodInfo, PaymentMethod, type PaymentMethodCar
3
3
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
4
4
  export type SourceChangeState = CheckoutModalCommonState & {
5
5
  paymentMethodInfo: ConnectablePaymentMethodInfo | null;
6
+ newUser?: boolean;
6
7
  };
7
- export type SourceChangeNext = {
8
+ type WithNewUser<T> = T & {
9
+ newUser?: boolean;
10
+ };
11
+ export type SourceChangeNext = WithNewUser<{
8
12
  connectNew: false;
9
13
  paymentMethodInfo: ConnectablePaymentMethodInfo;
10
14
  brokerageFailed: false;
@@ -25,6 +29,7 @@ export type SourceChangeNext = {
25
29
  } | {
26
30
  brokerageFailed: true;
27
31
  paymentMethodInfo: ConnectablePaymentMethodInfo;
28
- };
32
+ }>;
29
33
  export declare const SourceChangeInfo: ModalStepInfo<FunCheckoutStep.SOURCE_CHANGE>;
30
34
  export declare function SourceChange({ modalState, onNext, onClose, setModalState, }: ModalStepComponentProps<FunCheckoutStep.SOURCE_CHANGE>): React.JSX.Element;
35
+ export {};
@@ -3,6 +3,7 @@ import { type TransferTokenDefault } from '~/hooks/useTokenChain';
3
3
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
4
4
  export type TransferTokenState = CheckoutModalCommonState & {
5
5
  transferToken?: TransferTokenDefault;
6
+ newUser?: boolean;
6
7
  };
7
8
  export type TransferTokenNext = Record<string, never>;
8
9
  export interface TokenTransferSourceChainsAndAssets {
@@ -3,6 +3,7 @@ import { type PaymentMethodVirtualBankInfo } from '~/domains/paymentMethods';
3
3
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
4
4
  export type FiatAccountDetailState = CheckoutModalCommonState & {
5
5
  paymentMethodInfo: PaymentMethodVirtualBankInfo;
6
+ newUser?: boolean;
6
7
  };
7
8
  export type FiatAccountDetailNext = Record<string, never>;
8
9
  export declare const AccountDetailsScreen: ({ modalState, onNext, }: ModalStepComponentProps<FunCheckoutStep.FIAT_ACCOUNT_DETAIL>) => React.JSX.Element;
@@ -1,5 +1,3 @@
1
1
  import type { DirectExecution } from '@funkit/api-base';
2
- export declare function getDirectExecutionUpdatedTimeMs({ directExecution, }: {
3
- directExecution: DirectExecution;
4
- }): number;
5
- export declare function getDirectExecutionRunTimeMs(directExecution: DirectExecution): number;
2
+ export declare function getDirectExecutionUpdatedTimeMs(directExecution: DirectExecution): number;
3
+ export declare function getDirectExecutionRunTimeSeconds(directExecution: DirectExecution): number;
@@ -53,24 +53,12 @@ export declare const flagConfig: {
53
53
  values: string[];
54
54
  }[];
55
55
  value: true;
56
- if_all?: undefined;
57
56
  } | {
58
57
  if_any: {
59
58
  key: "apiKey";
60
59
  type: "isAnyOf";
61
60
  values: string[];
62
61
  }[];
63
- if_all: ({
64
- key: "userId";
65
- type: "pctRollout";
66
- pct: number;
67
- values?: undefined;
68
- } | {
69
- key: "apiKey";
70
- type: "isAnyOf";
71
- values: string[];
72
- pct?: undefined;
73
- })[];
74
62
  value: true;
75
63
  })[];
76
64
  };
@@ -281,6 +269,14 @@ export declare const flagConfig: {
281
269
  pct: number;
282
270
  }[];
283
271
  value: true;
272
+ } | {
273
+ if_any: {
274
+ key: "apiKey";
275
+ type: "isAnyOf";
276
+ values: string[];
277
+ }[];
278
+ value: true;
279
+ if_all?: undefined;
284
280
  } | {
285
281
  if_any: {
286
282
  key: "userId";
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-W6N74MS3.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-545L7Y4M.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  bifrostWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bitgetWallet
4
- } from "../chunk-A5APNTGL.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-7GSNBOD3.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  bitgetWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bybitWallet
4
- } from "../chunk-6ONTSPEY.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-W5O4YSZN.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  bybitWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  clvWallet
4
- } from "../chunk-KR6JBW5E.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-LEXSM5KI.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.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-DTRYS3MO.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-KFFJPS5R.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  coin98Wallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coreWallet
4
- } from "../chunk-HBA36GW3.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-JXP2QPW7.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  coreWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  foxWallet
4
- } from "../chunk-LMZMXEXL.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-XYBEMO3C.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  foxWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  frontierWallet
4
- } from "../chunk-3S2U24BJ.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-HKV7EMYZ.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  frontierWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  gateWallet
4
- } from "../chunk-GSOYKKIS.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-3NC26XLM.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  gateWallet
9
9
  };
@@ -1,52 +1,52 @@
1
1
  "use client";
2
+ import {
3
+ xdefiWallet
4
+ } from "./chunk-NO7XMBB5.js";
2
5
  import {
3
6
  zealWallet
4
7
  } from "./chunk-JROWU5BP.js";
5
- import {
6
- walletConnectWallet
7
- } from "./chunk-NP5QGWNL.js";
8
8
  import {
9
9
  zerionWallet
10
- } from "./chunk-AXWP3GD4.js";
10
+ } from "./chunk-ETTNDQQG.js";
11
11
  import {
12
- subWallet
13
- } from "./chunk-AD2KIJB6.js";
12
+ tahoWallet
13
+ } from "./chunk-6P2EMPZI.js";
14
14
  import {
15
- tokenPocketWallet
16
- } from "./chunk-IDKVN5CF.js";
15
+ subWallet
16
+ } from "./chunk-4UM4GTKZ.js";
17
17
  import {
18
18
  tokenaryWallet
19
19
  } from "./chunk-SLOIIJGP.js";
20
- import {
21
- tahoWallet
22
- } from "./chunk-6P2EMPZI.js";
23
20
  import {
24
21
  talismanWallet
25
22
  } from "./chunk-ABFSXBE6.js";
26
23
  import {
27
24
  trustWallet
28
- } from "./chunk-ISIBREBO.js";
25
+ } from "./chunk-IPOC2VJX.js";
29
26
  import {
30
27
  uniswapWallet
31
28
  } from "./chunk-LH7BMNFZ.js";
32
29
  import {
33
- xdefiWallet
34
- } from "./chunk-NO7XMBB5.js";
35
- import {
36
- oneKeyWallet
37
- } from "./chunk-4AD7VI2P.js";
30
+ tokenPocketWallet
31
+ } from "./chunk-FRGSRLTS.js";
38
32
  import {
39
- rainbowWallet
40
- } from "./chunk-2UCNRD7H.js";
33
+ walletConnectWallet
34
+ } from "./chunk-NP5QGWNL.js";
41
35
  import {
42
36
  phantomWallet
43
37
  } from "./chunk-ZSVTX6EK.js";
44
38
  import {
45
- roninWallet
46
- } from "./chunk-63YLN6R5.js";
39
+ rabbyWallet
40
+ } from "./chunk-BVX4XGNP.js";
41
+ import {
42
+ rainbowWallet
43
+ } from "./chunk-MOOBCMMB.js";
47
44
  import {
48
45
  ramperWallet
49
46
  } from "./chunk-PIUNLQJG.js";
47
+ import {
48
+ roninWallet
49
+ } from "./chunk-25VW5TZP.js";
50
50
  import {
51
51
  safeWallet
52
52
  } from "./chunk-BQQQL6UD.js";
@@ -55,99 +55,99 @@ import {
55
55
  } from "./chunk-R6RWZRFF.js";
56
56
  import {
57
57
  safepalWallet
58
- } from "./chunk-MSFKSQBY.js";
58
+ } from "./chunk-6LPM6LUQ.js";
59
59
  import {
60
60
  metaMaskWallet
61
- } from "./chunk-G73C6P5P.js";
61
+ } from "./chunk-N2NIIUW6.js";
62
+ import {
63
+ mewWallet
64
+ } from "./chunk-V57WLZEE.js";
62
65
  import {
63
66
  ledgerWallet
64
67
  } from "./chunk-BRBKM4PW.js";
65
68
  import {
66
- mewWallet
67
- } from "./chunk-V57WLZEE.js";
69
+ oktoWallet
70
+ } from "./chunk-ADIXAKUL.js";
68
71
  import {
69
72
  okxWallet
70
- } from "./chunk-4WEHDI4Y.js";
73
+ } from "./chunk-3U3BMEH5.js";
71
74
  import {
72
75
  omniWallet
73
76
  } from "./chunk-7CUY5G6R.js";
74
- import {
75
- oktoWallet
76
- } from "./chunk-ADIXAKUL.js";
77
77
  import {
78
78
  oneInchWallet
79
79
  } from "./chunk-OESTDX6I.js";
80
80
  import {
81
- rabbyWallet
82
- } from "./chunk-BVX4XGNP.js";
81
+ oneKeyWallet
82
+ } from "./chunk-4AD7VI2P.js";
83
83
  import {
84
- enkryptWallet
85
- } from "./chunk-SJTXS4ZW.js";
84
+ foxWallet
85
+ } from "./chunk-XYBEMO3C.js";
86
+ import {
87
+ frameWallet
88
+ } from "./chunk-ZMYVTWDF.js";
86
89
  import {
87
90
  frontierWallet
88
- } from "./chunk-3S2U24BJ.js";
91
+ } from "./chunk-HKV7EMYZ.js";
89
92
  import {
90
93
  gateWallet
91
- } from "./chunk-GSOYKKIS.js";
92
- import {
93
- frameWallet
94
- } from "./chunk-ZMYVTWDF.js";
94
+ } from "./chunk-3NC26XLM.js";
95
95
  import {
96
96
  imTokenWallet
97
97
  } from "./chunk-COZ7MIQS.js";
98
- import {
99
- injectedWallet
100
- } from "./chunk-VCVVV2K7.js";
101
98
  import {
102
99
  kresusWallet
103
100
  } from "./chunk-MJXPRJZT.js";
104
101
  import {
105
- bybitWallet
106
- } from "./chunk-6ONTSPEY.js";
107
- import {
108
- coin98Wallet
109
- } from "./chunk-DTRYS3MO.js";
102
+ injectedWallet
103
+ } from "./chunk-VCVVV2K7.js";
110
104
  import {
111
- coreWallet
112
- } from "./chunk-HBA36GW3.js";
105
+ bybitWallet
106
+ } from "./chunk-W5O4YSZN.js";
113
107
  import {
114
108
  clvWallet
115
- } from "./chunk-KR6JBW5E.js";
109
+ } from "./chunk-LEXSM5KI.js";
116
110
  import {
117
111
  coinbaseWallet
118
112
  } from "./chunk-H4IRCEZN.js";
119
113
  import {
120
- desigWallet
121
- } from "./chunk-CTU6JCOK.js";
114
+ coin98Wallet
115
+ } from "./chunk-KFFJPS5R.js";
116
+ import {
117
+ coreWallet
118
+ } from "./chunk-JXP2QPW7.js";
122
119
  import {
123
120
  dawnWallet
124
121
  } from "./chunk-LN7OD5EC.js";
125
122
  import {
126
- foxWallet
127
- } from "./chunk-LMZMXEXL.js";
123
+ desigWallet
124
+ } from "./chunk-CTU6JCOK.js";
128
125
  import {
129
- bifrostWallet
130
- } from "./chunk-W6N74MS3.js";
126
+ enkryptWallet
127
+ } from "./chunk-SJTXS4ZW.js";
131
128
  import {
132
129
  argentWallet
133
130
  } from "./chunk-WSQ2YJO2.js";
134
131
  import {
135
- bitgetWallet
136
- } from "./chunk-A5APNTGL.js";
132
+ bifrostWallet
133
+ } from "./chunk-545L7Y4M.js";
137
134
  import {
138
135
  bitskiWallet
139
136
  } from "./chunk-P74YPRF6.js";
137
+ import {
138
+ bitgetWallet
139
+ } from "./chunk-7GSNBOD3.js";
140
140
  import {
141
141
  bitverseWallet
142
142
  } from "./chunk-3HZRRP4Y.js";
143
- import {
144
- bloomWallet
145
- } from "./chunk-S27IADFU.js";
146
- import "./chunk-23WIEY36.js";
147
143
  import {
148
144
  braveWallet
149
145
  } from "./chunk-PB254NQ4.js";
150
146
  import "./chunk-WRA2DVJ7.js";
147
+ import {
148
+ bloomWallet
149
+ } from "./chunk-S27IADFU.js";
150
+ import "./chunk-23WIEY36.js";
151
151
  export {
152
152
  argentWallet,
153
153
  bifrostWallet,
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  metaMaskWallet
4
- } from "../chunk-G73C6P5P.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-N2NIIUW6.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  metaMaskWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  okxWallet
4
- } from "../chunk-4WEHDI4Y.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-3U3BMEH5.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  okxWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  rainbowWallet
4
- } from "../chunk-2UCNRD7H.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-MOOBCMMB.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  rainbowWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  roninWallet
4
- } from "../chunk-63YLN6R5.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-25VW5TZP.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  roninWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  safepalWallet
4
- } from "../chunk-MSFKSQBY.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-6LPM6LUQ.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  safepalWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  subWallet
4
- } from "../chunk-AD2KIJB6.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-4UM4GTKZ.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  subWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  tokenPocketWallet
4
- } from "../chunk-IDKVN5CF.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-FRGSRLTS.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  tokenPocketWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  trustWallet
4
- } from "../chunk-ISIBREBO.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-IPOC2VJX.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  trustWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  zerionWallet
4
- } from "../chunk-AXWP3GD4.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-ETTNDQQG.js";
6
5
  import "../chunk-WRA2DVJ7.js";
6
+ import "../chunk-23WIEY36.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": "5.5.13-next.0",
3
+ "version": "5.5.13-next.1",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -88,12 +88,12 @@
88
88
  "ua-parser-js": "^1.0.37",
89
89
  "use-debounce": "^10.0.5",
90
90
  "uuid": "^9.0.1",
91
- "@funkit/api-base": "1.9.5-next.0",
91
+ "@funkit/api-base": "1.9.5-next.1",
92
92
  "@funkit/chains": "0.3.2-next.0",
93
- "@funkit/core": "2.3.27-next.0",
94
- "@funkit/wagmi-tools": "3.0.49-next.0",
95
- "@funkit/fun-relay": "0.1.9-next.0",
96
- "@funkit/utils": "1.1.4-next.0"
93
+ "@funkit/core": "2.3.27-next.1",
94
+ "@funkit/utils": "1.1.4-next.0",
95
+ "@funkit/fun-relay": "0.1.9-next.1",
96
+ "@funkit/wagmi-tools": "3.0.49-next.1"
97
97
  },
98
98
  "repository": {
99
99
  "type": "git",