@funkit/connect 9.7.0 → 9.7.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 (49) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/__generated__/default_configs.d.ts +3 -5
  3. package/dist/__generated__/default_feature_gates.d.ts +3 -0
  4. package/dist/components/FunPayments/FunPaymentMethods.d.ts +8 -4
  5. package/dist/hooks/track/CheckoutModalEvent.d.ts +3 -1
  6. package/dist/hooks/useIsUserUnderComplianceReview.d.ts +1 -0
  7. package/dist/index.js +739 -650
  8. package/dist/modals/CheckoutModal/SourceChange/ComplianceReviewBanner.d.ts +6 -0
  9. package/dist/modals/CheckoutModal/SourceChange/ConnectedSource.d.ts +2 -1
  10. package/dist/modals/CheckoutModal/SourceChange/FormOfPaymentsList.d.ts +2 -1
  11. package/dist/utils/flags/config.d.ts +7 -0
  12. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  13. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  14. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  15. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  16. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  17. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  18. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  19. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  20. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  21. package/dist/wallets/walletConnectors/index.js +45 -45
  22. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  23. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  24. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  25. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  28. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  29. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  31. package/package.json +2 -2
  32. package/dist/wallets/walletConnectors/{chunk-5TN5Z2WY.js → chunk-3ZJN3PXP.js} +3 -3
  33. package/dist/wallets/walletConnectors/{chunk-V6UOWTEZ.js → chunk-55VS2NKG.js} +3 -3
  34. package/dist/wallets/walletConnectors/{chunk-DEFRRPXB.js → chunk-7IEUTLHY.js} +3 -3
  35. package/dist/wallets/walletConnectors/{chunk-LCIPVVH5.js → chunk-AZYMJ4C6.js} +3 -3
  36. package/dist/wallets/walletConnectors/{chunk-T4ROGPMF.js → chunk-FWM4KTOV.js} +3 -3
  37. package/dist/wallets/walletConnectors/{chunk-YIEASHLS.js → chunk-IMNI4AGV.js} +3 -3
  38. package/dist/wallets/walletConnectors/{chunk-7V33VJAL.js → chunk-IRHK6SOW.js} +3 -3
  39. package/dist/wallets/walletConnectors/{chunk-UDTBQV4Q.js → chunk-J3PJOMO7.js} +3 -3
  40. package/dist/wallets/walletConnectors/{chunk-VJZWNQOF.js → chunk-LEAZMT5Y.js} +3 -3
  41. package/dist/wallets/walletConnectors/{chunk-6DRCY52E.js → chunk-OD6B2ISG.js} +3 -3
  42. package/dist/wallets/walletConnectors/{chunk-FG2LDVXL.js → chunk-OSOB6QYX.js} +3 -3
  43. package/dist/wallets/walletConnectors/{chunk-XVBSJCW5.js → chunk-RZQ4B4Z7.js} +3 -3
  44. package/dist/wallets/walletConnectors/{chunk-KWX2SYU2.js → chunk-UFYNHHDU.js} +3 -3
  45. package/dist/wallets/walletConnectors/{chunk-HXWUH73P.js → chunk-UYW6MV74.js} +3 -3
  46. package/dist/wallets/walletConnectors/{chunk-34HACM5U.js → chunk-VMMROPXK.js} +3 -3
  47. package/dist/wallets/walletConnectors/{chunk-ZPSPK6LH.js → chunk-YGMU5VWD.js} +3 -3
  48. package/dist/wallets/walletConnectors/{chunk-APHCF4DT.js → chunk-ZJJWGKB6.js} +3 -3
  49. package/dist/wallets/walletConnectors/{chunk-HRDPUW3V.js → chunk-ZL6XCMV5.js} +3 -3
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface ComplianceReviewBannerProps {
3
+ checkoutId: string;
4
+ }
5
+ export declare function ComplianceReviewBanner({ checkoutId, }: ComplianceReviewBannerProps): React.JSX.Element;
6
+ export {};
@@ -6,6 +6,7 @@ interface ConnectedSourceProps {
6
6
  selectedPaymentInfo: ConnectablePaymentMethodInfo | null;
7
7
  showSelectedCheckmark?: boolean;
8
8
  onSelect: () => void;
9
+ isDisabled?: boolean;
9
10
  }
10
- export declare const ConnectedSource: ({ paymentInfo, targetChainId, selectedPaymentInfo, showSelectedCheckmark, onSelect, }: ConnectedSourceProps) => React.JSX.Element | null;
11
+ export declare const ConnectedSource: ({ paymentInfo, targetChainId, selectedPaymentInfo, showSelectedCheckmark, onSelect, isDisabled, }: ConnectedSourceProps) => React.JSX.Element | null;
11
12
  export {};
@@ -7,6 +7,7 @@ interface FormOfPaymentsListProps {
7
7
  onFopSelect: (fop: SwappedFormOfPayment) => void;
8
8
  exchangeRatesData?: ExchangeRates;
9
9
  enableSourceGroupLabels: boolean;
10
+ isDisabled?: boolean;
10
11
  }
11
12
  interface FormOfPaymentSection {
12
13
  items: SwappedFormOfPayment[];
@@ -16,5 +17,5 @@ export declare function getFormOfPaymentSections(fopsData: GetFopsResponse, fopP
16
17
  primary: FormOfPaymentSection;
17
18
  secondary: FormOfPaymentSection;
18
19
  };
19
- export declare function FormOfPaymentsList({ fopsData, isLoading, selectedFop, onFopSelect, exchangeRatesData, enableSourceGroupLabels, }: FormOfPaymentsListProps): React.JSX.Element;
20
+ export declare function FormOfPaymentsList({ fopsData, isLoading, selectedFop, onFopSelect, exchangeRatesData, enableSourceGroupLabels, isDisabled, }: FormOfPaymentsListProps): React.JSX.Element;
20
21
  export {};
@@ -111,6 +111,13 @@ export declare const flagConfig: {
111
111
  readonly values: ["5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2"];
112
112
  }];
113
113
  readonly value: string;
114
+ }, {
115
+ readonly if_any: [{
116
+ readonly key: "apiKey";
117
+ readonly type: "isAnyOf";
118
+ readonly values: ["57G91zNoew4nYxIoqSCpS1vWr8JT3gGVasNqMwgG"];
119
+ }];
120
+ readonly value: string;
114
121
  }];
115
122
  };
116
123
  readonly withdrawal_chains_and_assets: {
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-6DRCY52E.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-OD6B2ISG.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  bifrostWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bitgetWallet
4
- } from "../chunk-YIEASHLS.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-IMNI4AGV.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  bitgetWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bybitWallet
4
- } from "../chunk-DEFRRPXB.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-7IEUTLHY.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  bybitWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  clvWallet
4
- } from "../chunk-5TN5Z2WY.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-3ZJN3PXP.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  clvWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coin98Wallet
4
- } from "../chunk-XVBSJCW5.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-RZQ4B4Z7.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  coin98Wallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coreWallet
4
- } from "../chunk-V6UOWTEZ.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-55VS2NKG.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  coreWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  foxWallet
4
- } from "../chunk-ZPSPK6LH.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-YGMU5VWD.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  foxWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  frontierWallet
4
- } from "../chunk-UDTBQV4Q.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-J3PJOMO7.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  frontierWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  gateWallet
4
- } from "../chunk-VJZWNQOF.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-LEAZMT5Y.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  gateWallet
@@ -1,25 +1,25 @@
1
1
  "use client";
2
+ import {
3
+ zerionWallet
4
+ } from "./chunk-UFYNHHDU.js";
2
5
  import {
3
6
  zealWallet
4
7
  } from "./chunk-A5EZBNME.js";
5
8
  import {
6
- zerionWallet
7
- } from "./chunk-KWX2SYU2.js";
9
+ tahoWallet
10
+ } from "./chunk-KS5MJNGD.js";
8
11
  import {
9
12
  talismanWallet
10
13
  } from "./chunk-T3VMQBBI.js";
11
14
  import {
12
15
  tokenPocketWallet
13
- } from "./chunk-HXWUH73P.js";
16
+ } from "./chunk-UYW6MV74.js";
14
17
  import {
15
18
  tokenaryWallet
16
19
  } from "./chunk-R7X5RIO7.js";
17
20
  import {
18
21
  trustWallet
19
- } from "./chunk-T4ROGPMF.js";
20
- import {
21
- tahoWallet
22
- } from "./chunk-KS5MJNGD.js";
22
+ } from "./chunk-FWM4KTOV.js";
23
23
  import {
24
24
  uniswapWallet
25
25
  } from "./chunk-UKSIXGWC.js";
@@ -30,14 +30,17 @@ import {
30
30
  xdefiWallet
31
31
  } from "./chunk-KSNA53EX.js";
32
32
  import {
33
- rainbowWallet
34
- } from "./chunk-LCIPVVH5.js";
33
+ rabbyWallet
34
+ } from "./chunk-7PVUEV4M.js";
35
35
  import {
36
- oneKeyWallet
37
- } from "./chunk-E3NZE4UP.js";
36
+ rainbowWallet
37
+ } from "./chunk-AZYMJ4C6.js";
38
38
  import {
39
39
  ramperWallet
40
40
  } from "./chunk-P4E2ZFQB.js";
41
+ import {
42
+ roninWallet
43
+ } from "./chunk-OSOB6QYX.js";
41
44
  import {
42
45
  safeWallet
43
46
  } from "./chunk-BHAPTB57.js";
@@ -46,22 +49,22 @@ import {
46
49
  } from "./chunk-AM5MSNVQ.js";
47
50
  import {
48
51
  safepalWallet
49
- } from "./chunk-34HACM5U.js";
52
+ } from "./chunk-VMMROPXK.js";
50
53
  import {
51
54
  subWallet
52
- } from "./chunk-APHCF4DT.js";
55
+ } from "./chunk-ZJJWGKB6.js";
53
56
  import {
54
- roninWallet
55
- } from "./chunk-FG2LDVXL.js";
57
+ metaMaskWallet
58
+ } from "./chunk-IRHK6SOW.js";
56
59
  import {
57
60
  mewWallet
58
61
  } from "./chunk-DP5ICBEB.js";
59
- import {
60
- metaMaskWallet
61
- } from "./chunk-7V33VJAL.js";
62
62
  import {
63
63
  oktoWallet
64
64
  } from "./chunk-BBPTPMH7.js";
65
+ import {
66
+ okxWallet
67
+ } from "./chunk-ZL6XCMV5.js";
65
68
  import {
66
69
  omniWallet
67
70
  } from "./chunk-G3RQSCYR.js";
@@ -69,53 +72,50 @@ import {
69
72
  oneInchWallet
70
73
  } from "./chunk-EUMOVTRQ.js";
71
74
  import {
72
- okxWallet
73
- } from "./chunk-HRDPUW3V.js";
75
+ oneKeyWallet
76
+ } from "./chunk-E3NZE4UP.js";
74
77
  import {
75
78
  phantomWallet
76
79
  } from "./chunk-57GN4W23.js";
77
- import {
78
- rabbyWallet
79
- } from "./chunk-7PVUEV4M.js";
80
80
  import {
81
81
  foxWallet
82
- } from "./chunk-ZPSPK6LH.js";
83
- import {
84
- frontierWallet
85
- } from "./chunk-UDTBQV4Q.js";
82
+ } from "./chunk-YGMU5VWD.js";
86
83
  import {
87
84
  frameWallet
88
85
  } from "./chunk-MTJIPVYB.js";
89
86
  import {
90
87
  gateWallet
91
- } from "./chunk-VJZWNQOF.js";
88
+ } from "./chunk-LEAZMT5Y.js";
89
+ import {
90
+ frontierWallet
91
+ } from "./chunk-J3PJOMO7.js";
92
+ import {
93
+ imTokenWallet
94
+ } from "./chunk-BWLMNATA.js";
92
95
  import {
93
96
  injectedWallet
94
97
  } from "./chunk-HPUEYLLS.js";
95
98
  import {
96
99
  kresusWallet
97
100
  } from "./chunk-O4IDLNBH.js";
98
- import {
99
- imTokenWallet
100
- } from "./chunk-BWLMNATA.js";
101
101
  import {
102
102
  ledgerWallet
103
103
  } from "./chunk-V4EXM3KB.js";
104
104
  import {
105
105
  clvWallet
106
- } from "./chunk-5TN5Z2WY.js";
106
+ } from "./chunk-3ZJN3PXP.js";
107
107
  import {
108
108
  coin98Wallet
109
- } from "./chunk-XVBSJCW5.js";
109
+ } from "./chunk-RZQ4B4Z7.js";
110
110
  import {
111
111
  coinbaseWallet
112
112
  } from "./chunk-OUM6H3WU.js";
113
113
  import {
114
- argentWallet
115
- } from "./chunk-XTD6OMZP.js";
114
+ bloomWallet
115
+ } from "./chunk-S6R4B763.js";
116
116
  import {
117
117
  coreWallet
118
- } from "./chunk-V6UOWTEZ.js";
118
+ } from "./chunk-55VS2NKG.js";
119
119
  import {
120
120
  dawnWallet
121
121
  } from "./chunk-PARFRRNI.js";
@@ -125,29 +125,29 @@ import {
125
125
  import {
126
126
  enkryptWallet
127
127
  } from "./chunk-2DKNXOPL.js";
128
+ import {
129
+ argentWallet
130
+ } from "./chunk-XTD6OMZP.js";
128
131
  import {
129
132
  bifrostWallet
130
- } from "./chunk-6DRCY52E.js";
133
+ } from "./chunk-OD6B2ISG.js";
131
134
  import {
132
135
  bitgetWallet
133
- } from "./chunk-YIEASHLS.js";
136
+ } from "./chunk-IMNI4AGV.js";
134
137
  import {
135
138
  bitskiWallet
136
139
  } from "./chunk-Y36HPFB3.js";
137
140
  import {
138
- bloomWallet
139
- } from "./chunk-S6R4B763.js";
141
+ bitverseWallet
142
+ } from "./chunk-RZH4FSX7.js";
140
143
  import {
141
144
  braveWallet
142
145
  } from "./chunk-XVH4JIXB.js";
143
- import {
144
- bitverseWallet
145
- } from "./chunk-RZH4FSX7.js";
146
146
  import {
147
147
  bybitWallet
148
- } from "./chunk-DEFRRPXB.js";
149
- import "./chunk-YYYRPQHB.js";
148
+ } from "./chunk-7IEUTLHY.js";
150
149
  import "./chunk-FMVNQKZL.js";
150
+ import "./chunk-YYYRPQHB.js";
151
151
  import "./chunk-3K2MFXCO.js";
152
152
  export {
153
153
  argentWallet,
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  metaMaskWallet
4
- } from "../chunk-7V33VJAL.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-IRHK6SOW.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  metaMaskWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  okxWallet
4
- } from "../chunk-HRDPUW3V.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-ZL6XCMV5.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  okxWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  rainbowWallet
4
- } from "../chunk-LCIPVVH5.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-AZYMJ4C6.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  rainbowWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  roninWallet
4
- } from "../chunk-FG2LDVXL.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-OSOB6QYX.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  roninWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  safepalWallet
4
- } from "../chunk-34HACM5U.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-VMMROPXK.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  safepalWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  subWallet
4
- } from "../chunk-APHCF4DT.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-ZJJWGKB6.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  subWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  tokenPocketWallet
4
- } from "../chunk-HXWUH73P.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-UYW6MV74.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  tokenPocketWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  trustWallet
4
- } from "../chunk-T4ROGPMF.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-FWM4KTOV.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  trustWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  zerionWallet
4
- } from "../chunk-KWX2SYU2.js";
5
- import "../chunk-YYYRPQHB.js";
4
+ } from "../chunk-UFYNHHDU.js";
6
5
  import "../chunk-FMVNQKZL.js";
6
+ import "../chunk-YYYRPQHB.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  zerionWallet
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "9.7.0",
3
+ "version": "9.7.1",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -104,7 +104,7 @@
104
104
  "ua-parser-js": "^1.0.37",
105
105
  "use-debounce": "^10.0.5",
106
106
  "uuid": "^9.0.1",
107
- "@funkit/api-base": "4.1.0",
107
+ "@funkit/api-base": "4.1.1",
108
108
  "@funkit/chains": "1.1.2",
109
109
  "@funkit/fun-relay": "2.6.6",
110
110
  "@funkit/utils": "2.0.0"
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/clvWallet/clvWallet.ts
11
11
  var clvWallet = ({
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/coreWallet/coreWallet.ts
11
11
  var coreWallet = ({
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/bybitWallet/bybitWallet.ts
11
11
  var bybitWallet = ({
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/rainbowWallet/rainbowWallet.ts
11
11
  import { isAndroid, isIOS } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/trustWallet/trustWallet.ts
11
11
  import { isMobile } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/bitgetWallet/bitgetWallet.ts
11
11
  import { isAndroid } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.ts
11
11
  import { isAndroid, isIOS } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/frontierWallet/frontierWallet.ts
11
11
  import { isAndroid } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/gateWallet/gateWallet.ts
11
11
  import { isAndroid } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/bifrostWallet/bifrostWallet.ts
11
11
  import { isAndroid } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
+ import {
3
+ getWalletConnectConnector
4
+ } from "./chunk-FMVNQKZL.js";
2
5
  import {
3
6
  getInjectedConnector,
4
7
  hasInjectedProvider
5
8
  } from "./chunk-YYYRPQHB.js";
6
- import {
7
- getWalletConnectConnector
8
- } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/roninWallet/roninWallet.ts
11
11
  var roninWallet = ({