@funkit/connect 0.1.3 → 0.1.4

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 (32) hide show
  1. package/dist/{chunk-WSQKOMBH.js → chunk-AHK324EF.js} +933 -772
  2. package/dist/{chunk-YPT63F4L.js → chunk-P6ZB76ND.js} +933 -772
  3. package/dist/components/FunButton/FunLinkButton.d.ts +2 -1
  4. package/dist/components/FunCheckoutModal/FunCheckoutSelectAssetStep.d.ts +2 -1
  5. package/dist/components/FunPayments/FunPaymentMoonpayType.d.ts +3 -2
  6. package/dist/components/FunPayments/FunPaymentSetup.d.ts +2 -1
  7. package/dist/components/FunProgressBar/FunVerticalProgressBar.d.ts +2 -0
  8. package/dist/components/FunToast/FunToast.d.ts +3 -2
  9. package/dist/components/FunkitProvider/FunkitCheckoutContext.d.ts +4 -2
  10. package/dist/components/ProfileDetails/FunWalletProfileViews/FWHome/FWHome.css.d.ts +1 -0
  11. package/dist/components/index.css +5 -3
  12. package/dist/components/index.js +1 -1
  13. package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +11 -0
  14. package/dist/index.css +5 -3
  15. package/dist/index.js +1 -1
  16. package/dist/utils/checkout.d.ts +1 -6
  17. package/dist/wallets/walletConnectors/argentWallet/argentWallet.js +2 -2
  18. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  19. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  20. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  21. package/dist/wallets/walletConnectors/index.js +54 -54
  22. package/dist/wallets/walletConnectors/ledgerWallet/ledgerWallet.js +2 -2
  23. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  24. package/dist/wallets/walletConnectors/oktoWallet/oktoWallet.js +2 -2
  25. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/omniWallet/omniWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.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/walletConnectWallet/walletConnectWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  32. package/package.json +3 -3
@@ -1,7 +1,8 @@
1
1
  import React from 'react';
2
2
  import { TextProps } from '../Text/Text';
3
- export declare function FunLinkButton({ onClick, text, textProps, }: {
3
+ export declare function FunLinkButton({ onClick, text, textProps, hasPadding, }: {
4
4
  onClick: () => void;
5
5
  text: string;
6
6
  textProps?: Omit<TextProps, 'color'>;
7
+ hasPadding?: boolean;
7
8
  }): React.JSX.Element;
@@ -3,9 +3,10 @@ import { PaymentMethodInfo } from '../FunPayments/FunPaymentMethods';
3
3
  /**
4
4
  * Based on which payment method was selected, allow users to select which asset they want to fund
5
5
  */
6
- export declare function FunCheckoutSelectAssetStep({ checkoutId, selectedPaymentMethodInfo, onFinish, animateOut, }: {
6
+ export declare function FunCheckoutSelectAssetStep({ checkoutId, selectedPaymentMethodInfo, onFinish, isOnFinishLoading, animateOut, }: {
7
7
  checkoutId: string | null;
8
8
  selectedPaymentMethodInfo: PaymentMethodInfo | null;
9
+ isOnFinishLoading: boolean;
9
10
  onFinish: () => void;
10
11
  animateOut?: boolean;
11
12
  }): React.JSX.Element;
@@ -1,11 +1,12 @@
1
1
  import React from 'react';
2
2
  import { Address } from 'wagmi';
3
3
  import { PaymentFlow } from './FunPaymentMethods';
4
- export declare function FunPaymentMoonpayType({ paymentFlow, paymentAddress, depositToken, depositUsdAmount, onBackToHome, backAnimation, redirectToCheckoutHistory, }: {
4
+ export declare function FunPaymentMoonpayType({ paymentFlow, paymentAddress, depositToken, depositTokenChainId, depositTokenAmount, onBackToHome, backAnimation, redirectToCheckoutHistory, }: {
5
5
  paymentFlow: PaymentFlow;
6
6
  paymentAddress: Address;
7
7
  depositToken: string;
8
- depositUsdAmount: number;
8
+ depositTokenChainId: string;
9
+ depositTokenAmount: number;
9
10
  onBackToHome: () => void;
10
11
  backAnimation?: boolean;
11
12
  redirectToCheckoutHistory?: (depositAddress: string) => void;
@@ -9,9 +9,10 @@ interface FunPaymentSetupProps {
9
9
  onBackToHome: () => void;
10
10
  paymentAddress: Address;
11
11
  token: string;
12
+ tokenChainId: string;
12
13
  tokenAmountUsd: number;
13
14
  backAnimation?: boolean;
14
15
  redirectToCheckoutHistory?: (depositAddress: string) => void;
15
16
  }
16
- export declare function FunPaymentSetup({ paymentFlow, paymentAddress, paymentMethod, onSetup, onSoftHide, onBackToHome, token, tokenAmountUsd, backAnimation, redirectToCheckoutHistory, }: FunPaymentSetupProps): React.JSX.Element;
17
+ export declare function FunPaymentSetup({ paymentFlow, paymentAddress, paymentMethod, onSetup, onSoftHide, onBackToHome, token, tokenChainId, tokenAmountUsd, backAnimation, redirectToCheckoutHistory, }: FunPaymentSetupProps): React.JSX.Element;
17
18
  export {};
@@ -2,6 +2,8 @@ import React from 'react';
2
2
  interface ProgressLabel {
3
3
  text: string;
4
4
  description: string;
5
+ linkText?: string;
6
+ linkUrl?: string;
5
7
  }
6
8
  interface FunVerticalProgressBarProps {
7
9
  step: number;
@@ -10,8 +10,9 @@ export interface FunToastProps {
10
10
  title: string;
11
11
  hideTitleSuffix?: boolean;
12
12
  titleSuffix?: ReactNode;
13
- description: string;
13
+ description: string | ReactNode;
14
+ isDescriptionText?: boolean;
14
15
  icon?: ReactNode;
15
16
  closing?: boolean;
16
17
  }
17
- export declare function FunToast({ type, title, titleSuffix, hideTitleSuffix, description, icon, }: FunToastProps): React.JSX.Element;
18
+ export declare function FunToast({ type, title, titleSuffix, hideTitleSuffix, description, isDescriptionText, icon, }: FunToastProps): React.JSX.Element;
@@ -34,8 +34,10 @@ export interface FunkitCheckoutConfig {
34
34
  icon?: null | ReactNode;
35
35
  /** Title of the item being checked out. e.g. Staked Ether, XYZ Option, Solar Bond ABC **/
36
36
  checkoutItemTitle: string;
37
- /** Description of the item being checked out. If not specified, it will default to "Amount". **/
37
+ /** Description of the item being checked out. If not specified, it will default to blank. **/
38
38
  checkoutItemDescription?: string;
39
+ /** The quantity of the item being checked out. If not specified (0, null, undefined), it will default to blank. **/
40
+ checkoutItemAmount?: number;
39
41
  }
40
42
  interface FunkitCheckoutValidationResult {
41
43
  isValid: boolean;
@@ -93,7 +95,7 @@ interface useFunkitPreCheckoutInternalReturn {
93
95
  updateSourceAsset: (newSourceAsset: Address, newSourceAssetSymbol: string, newSourceAssetChainId: string) => void;
94
96
  confirmCheckout: (paymentMethod: PaymentMethod) => Promise<Address>;
95
97
  getCheckoutDraftDollarValue: () => Promise<void>;
96
- getCheckoutQuote: () => Promise<void>;
98
+ getCheckoutQuote: (sponsorInitialTransferGasLimit: number) => Promise<void>;
97
99
  }
98
100
  /**
99
101
  * Internal hook to handle frontend pre-checkout operations, PER-CHECKOUT ITEM.
@@ -14,3 +14,4 @@ export declare const animateAvatarInClass: string;
14
14
  export declare const animateAvatarOutClass: string;
15
15
  export declare const animateContentInClass: string;
16
16
  export declare const animateContentOutClass: string;
17
+ export declare const scroll: string;
@@ -2894,9 +2894,8 @@ input[type=number] {
2894
2894
  background: "red";
2895
2895
  }
2896
2896
 
2897
- /* vanilla-extract-css-ns:src/components/FunButton/FunButton.css.ts.vanilla.css?source=Ll8xdHl4NW51MCB7CiAgcGFkZGluZy1sZWZ0OiA0cHg7CiAgY3Vyc29yOiBwb2ludGVyOwp9Ci5fMXR5eDVudTA6aG92ZXIgewogIGNvbG9yOiB3aGl0ZTsKICB0ZXh0LWRlY29yYXRpb24tbGluZTogdW5kZXJsaW5lOwp9 */
2897
+ /* vanilla-extract-css-ns:src/components/FunButton/FunButton.css.ts.vanilla.css?source=Ll8xdHl4NW51MCB7CiAgY3Vyc29yOiBwb2ludGVyOwp9Ci5fMXR5eDVudTA6aG92ZXIgewogIGNvbG9yOiB3aGl0ZTsKICB0ZXh0LWRlY29yYXRpb24tbGluZTogdW5kZXJsaW5lOwp9 */
2898
2898
  [data-rk] ._1tyx5nu0 {
2899
- padding-left: 4px;
2900
2899
  cursor: pointer;
2901
2900
  }
2902
2901
  [data-rk] ._1tyx5nu0:hover {
@@ -3155,7 +3154,7 @@ input[type=number] {
3155
3154
  animation-name: _1qiugog1;
3156
3155
  }
3157
3156
 
3158
- /* vanilla-extract-css-ns:src/components/ProfileDetails/FunWalletProfileViews/FWHome/FWHome.css.ts.vanilla.css?source=#H4sIAAAAAAAAE8WT326DIBSH732Kc9Nku9CAlrXiTV+FKbZkggvSNk3ju5dpmuEf0i5Z6gWReOD7feck7L74pdRM8gZO6fnEMYJrAIBW3Qeg/ma5MBcKKIoz+6e1C6NpGffFNtiNgdgDxHdc+ucw5A2L/9s+eaX9ehhmNFNNWWtJoclZxd9QtHnPZrMADlzsD4ZCjFYz4RMUHoPwEPNz1+tJHng+D3fnN9Pu9mG75Ll2UUQmKM/c2iDqu/zoYEwJyYyoVVgcdbehkCAkm2xQNEIKtQ/Lo8r7M5VQnOnhoVJUVSjrglOwcmemixFF2SHT+0PMflU2y6pgR2W7rErsqKTLqiSOCvOqYPIClbWj8rmsCrEqN5495flVBgAA */
3157
+ /* vanilla-extract-css-ns:src/components/ProfileDetails/FunWalletProfileViews/FWHome/FWHome.css.ts.vanilla.css?source=#H4sIAAAAAAAAE8WTzY6CMBRG9z7F3Zg4C0gLMkrZ+CoFija2xbRVYia8+3QgZviNTjKRRUPDbc937k16OLN7oalkBm5xdWMYwdcKAK2bD0B5oRm3dwLIDxL3p3YLo3EZt8V6dRgC8QwQP3Dxn8PQbFjw3/bhO+23/TCrqTJFqSUBk1HBNsjffSSTWQAnxo8nSyBA64nwEQoPQbiP+bk76xk98Xwd3p3fRLv7p+1Gr7WL/GiEmplbvfLbLj8bGFVcUstL5eVX3WwIhAhJk/SKlkuujl5xVVl7RnDFqO4fKrgQnixzRsDJVVTnA4pyQyaPh5j8quyWVcEdlf2yKkFHJV5WJeyo0FkVHL1BZdtRSZdViToqGSFexdIzt57JdClESnVjl3NzEdQ9QlUq5i58A3xPm4SGBgAA */
3159
3158
  @keyframes v9wve10 {
3160
3159
  0% {
3161
3160
  opacity: 0.2;
@@ -3259,6 +3258,9 @@ input[type=number] {
3259
3258
  animation-fill-mode: forwards;
3260
3259
  animation-name: v9wve15;
3261
3260
  }
3261
+ [data-rk] .v9wve1c::-webkit-scrollbar {
3262
+ display: none;
3263
+ }
3262
3264
 
3263
3265
  /* vanilla-extract-css-ns:src/components/MenuButton/MenuButton.css.ts.vanilla.css?source=Ll8xMHB3NXg2MDpob3ZlciB7CiAgYmFja2dyb3VuZDogdW5zZXQ7Cn0= */
3264
3266
  [data-rk] ._10pw5x60:hover {
@@ -4,7 +4,7 @@ import {
4
4
  FunkitProvider,
5
5
  NATIVE_TOKEN,
6
6
  useFunkitCheckout
7
- } from "../chunk-WSQKOMBH.js";
7
+ } from "../chunk-AHK324EF.js";
8
8
  import "../chunk-IRPFZ4HK.js";
9
9
  import "../chunk-VP4CAK4A.js";
10
10
  export {
@@ -0,0 +1,11 @@
1
+ export declare function useCheckoutAccountBalanceTransfer(checkoutId: string | null): {
2
+ generateCheckoutTransferOpItems: (toAddress: string, tokenAmount: number | string) => Promise<{
3
+ rFunWallet: import("@funkit/core").FunWallet;
4
+ rFunWalletAuth: import("@funkit/core").Auth;
5
+ transferOp: import("@funkit/core").Operation;
6
+ } | {
7
+ rFunWallet: null;
8
+ rFunWalletAuth: null;
9
+ transferOp: null;
10
+ }>;
11
+ };
package/dist/index.css CHANGED
@@ -2904,9 +2904,8 @@ input[type=number] {
2904
2904
  background: "red";
2905
2905
  }
2906
2906
 
2907
- /* vanilla-extract-css-ns:src/components/FunButton/FunButton.css.ts.vanilla.css?source=Ll8xdHl4NW51MCB7CiAgcGFkZGluZy1sZWZ0OiA0cHg7CiAgY3Vyc29yOiBwb2ludGVyOwp9Ci5fMXR5eDVudTA6aG92ZXIgewogIGNvbG9yOiB3aGl0ZTsKICB0ZXh0LWRlY29yYXRpb24tbGluZTogdW5kZXJsaW5lOwp9 */
2907
+ /* vanilla-extract-css-ns:src/components/FunButton/FunButton.css.ts.vanilla.css?source=Ll8xdHl4NW51MCB7CiAgY3Vyc29yOiBwb2ludGVyOwp9Ci5fMXR5eDVudTA6aG92ZXIgewogIGNvbG9yOiB3aGl0ZTsKICB0ZXh0LWRlY29yYXRpb24tbGluZTogdW5kZXJsaW5lOwp9 */
2908
2908
  [data-rk] ._1tyx5nu0 {
2909
- padding-left: 4px;
2910
2909
  cursor: pointer;
2911
2910
  }
2912
2911
  [data-rk] ._1tyx5nu0:hover {
@@ -3165,7 +3164,7 @@ input[type=number] {
3165
3164
  animation-name: _1qiugog1;
3166
3165
  }
3167
3166
 
3168
- /* vanilla-extract-css-ns:src/components/ProfileDetails/FunWalletProfileViews/FWHome/FWHome.css.ts.vanilla.css?source=#H4sIAAAAAAAAE8WT326DIBSH732Kc9Nku9CAlrXiTV+FKbZkggvSNk3ju5dpmuEf0i5Z6gWReOD7feck7L74pdRM8gZO6fnEMYJrAIBW3Qeg/ma5MBcKKIoz+6e1C6NpGffFNtiNgdgDxHdc+ucw5A2L/9s+eaX9ehhmNFNNWWtJoclZxd9QtHnPZrMADlzsD4ZCjFYz4RMUHoPwEPNz1+tJHng+D3fnN9Pu9mG75Ll2UUQmKM/c2iDqu/zoYEwJyYyoVVgcdbehkCAkm2xQNEIKtQ/Lo8r7M5VQnOnhoVJUVSjrglOwcmemixFF2SHT+0PMflU2y6pgR2W7rErsqKTLqiSOCvOqYPIClbWj8rmsCrEqN5495flVBgAA */
3167
+ /* vanilla-extract-css-ns:src/components/ProfileDetails/FunWalletProfileViews/FWHome/FWHome.css.ts.vanilla.css?source=#H4sIAAAAAAAAE8WTzY6CMBRG9z7F3Zg4C0gLMkrZ+CoFija2xbRVYia8+3QgZviNTjKRRUPDbc937k16OLN7oalkBm5xdWMYwdcKAK2bD0B5oRm3dwLIDxL3p3YLo3EZt8V6dRgC8QwQP3Dxn8PQbFjw3/bhO+23/TCrqTJFqSUBk1HBNsjffSSTWQAnxo8nSyBA64nwEQoPQbiP+bk76xk98Xwd3p3fRLv7p+1Gr7WL/GiEmplbvfLbLj8bGFVcUstL5eVX3WwIhAhJk/SKlkuujl5xVVl7RnDFqO4fKrgQnixzRsDJVVTnA4pyQyaPh5j8quyWVcEdlf2yKkFHJV5WJeyo0FkVHL1BZdtRSZdViToqGSFexdIzt57JdClESnVjl3NzEdQ9QlUq5i58A3xPm4SGBgAA */
3169
3168
  @keyframes v9wve10 {
3170
3169
  0% {
3171
3170
  opacity: 0.2;
@@ -3269,6 +3268,9 @@ input[type=number] {
3269
3268
  animation-fill-mode: forwards;
3270
3269
  animation-name: v9wve15;
3271
3270
  }
3271
+ [data-rk] .v9wve1c::-webkit-scrollbar {
3272
+ display: none;
3273
+ }
3272
3274
 
3273
3275
  /* vanilla-extract-css-ns:src/components/MenuButton/MenuButton.css.ts.vanilla.css?source=Ll8xMHB3NXg2MDpob3ZlciB7CiAgYmFja2dyb3VuZDogdW5zZXQ7Cn0= */
3274
3276
  [data-rk] ._10pw5x60:hover {
package/dist/index.js CHANGED
@@ -39,7 +39,7 @@ import {
39
39
  useFunkitCheckout,
40
40
  useTransactionStore,
41
41
  useWalletConnectors
42
- } from "./chunk-WSQKOMBH.js";
42
+ } from "./chunk-AHK324EF.js";
43
43
  import "./chunk-IRPFZ4HK.js";
44
44
  import "./chunk-VP4CAK4A.js";
45
45
 
@@ -1,11 +1,6 @@
1
- import { CheckoutHistoryItem, CheckoutState, FunWallet, GlobalEnvOption } from '@funkit/core';
1
+ import { CheckoutHistoryItem, CheckoutState, FunWallet } from '@funkit/core';
2
2
  import { Chain as ViemChain, Hex } from 'viem';
3
3
  import { FunkitCheckoutConfig } from '../components/FunkitProvider/FunkitCheckoutContext';
4
- declare global {
5
- interface Window {
6
- globalEnvOptions: GlobalEnvOption;
7
- }
8
- }
9
4
  /**
10
5
  * Validates the checkout configuration.
11
6
  * @param config - The checkout configuration to validate.
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  argentWallet
4
- } from "../chunk-DINSZSEC.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-32KC4FTG.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  argentWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-RAKDFYVF.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-M4KIVTE3.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  bifrostWallet
9
9
  };
@@ -2,9 +2,9 @@
2
2
  import {
3
3
  bitKeepWallet,
4
4
  bitgetWallet
5
- } from "../chunk-4HP4HVWX.js";
6
- import "../chunk-4ACOCJJZ.js";
5
+ } from "../chunk-DTCZLIMY.js";
7
6
  import "../chunk-ZOLACFTK.js";
7
+ import "../chunk-4ACOCJJZ.js";
8
8
  export {
9
9
  bitKeepWallet,
10
10
  bitgetWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  frontierWallet
4
- } from "../chunk-T2DNUVKD.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-4VG2VEG2.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  frontierWallet
9
9
  };
@@ -1,128 +1,128 @@
1
1
  "use client";
2
+ import {
3
+ zealWallet
4
+ } from "./chunk-QBKHMTGI.js";
2
5
  import {
3
6
  xdefiWallet
4
7
  } from "./chunk-5ZLRNFDM.js";
5
8
  import {
6
- zerionWallet
7
- } from "./chunk-7Q7X4HIR.js";
9
+ safepalWallet
10
+ } from "./chunk-RMJYZWKN.js";
8
11
  import {
9
12
  tahoWallet
10
13
  } from "./chunk-OOGGCCFQ.js";
11
- import {
12
- safeheronWallet
13
- } from "./chunk-7WTKIVCW.js";
14
14
  import {
15
15
  talismanWallet
16
16
  } from "./chunk-5UETJ33B.js";
17
- import {
18
- uniswapWallet
19
- } from "./chunk-WCZ37NN2.js";
20
17
  import {
21
18
  trustWallet
22
- } from "./chunk-QVJQ2MU7.js";
19
+ } from "./chunk-LU3HYLHT.js";
23
20
  import {
24
21
  tokenPocketWallet
25
- } from "./chunk-6GAD4OSN.js";
22
+ } from "./chunk-HHEZNZRR.js";
26
23
  import {
27
- walletConnectWallet
28
- } from "./chunk-TM5A4D5D.js";
24
+ uniswapWallet
25
+ } from "./chunk-WCZ37NN2.js";
29
26
  import {
30
- zealWallet
31
- } from "./chunk-QBKHMTGI.js";
27
+ zerionWallet
28
+ } from "./chunk-BZWTTESU.js";
32
29
  import {
33
- omniWallet
34
- } from "./chunk-2T3BP5YM.js";
30
+ walletConnectWallet
31
+ } from "./chunk-Z47L7SO3.js";
35
32
  import {
36
- oneKeyWallet
37
- } from "./chunk-6CW3SAA3.js";
33
+ rabbyWallet
34
+ } from "./chunk-TNC2B7LX.js";
38
35
  import {
39
36
  phantomWallet
40
37
  } from "./chunk-KUZFZL2D.js";
38
+ import {
39
+ oneKeyWallet
40
+ } from "./chunk-6CW3SAA3.js";
41
41
  import {
42
42
  rainbowWallet
43
- } from "./chunk-VDUTD5UR.js";
43
+ } from "./chunk-TTTMI2Z2.js";
44
44
  import {
45
45
  safeWallet
46
46
  } from "./chunk-BNTZHUB6.js";
47
47
  import {
48
- safepalWallet
49
- } from "./chunk-RMJYZWKN.js";
50
- import {
51
- rabbyWallet
52
- } from "./chunk-TNC2B7LX.js";
48
+ okxWallet
49
+ } from "./chunk-EINKDQQW.js";
53
50
  import {
54
51
  subWallet
55
52
  } from "./chunk-JU27WJ7W.js";
53
+ import {
54
+ safeheronWallet
55
+ } from "./chunk-7WTKIVCW.js";
56
56
  import {
57
57
  imTokenWallet
58
58
  } from "./chunk-4TBAMXD2.js";
59
59
  import {
60
- clvWallet
61
- } from "./chunk-C3X4W5P4.js";
60
+ mewWallet
61
+ } from "./chunk-BZFEDZQJ.js";
62
+ import {
63
+ frontierWallet
64
+ } from "./chunk-4VG2VEG2.js";
62
65
  import {
63
66
  injectedWallet
64
67
  } from "./chunk-U32TVZ7G.js";
65
68
  import {
66
- ledgerWallet
67
- } from "./chunk-4AGSKVK4.js";
69
+ oktoWallet
70
+ } from "./chunk-TFHNF64Z.js";
68
71
  import {
69
72
  metaMaskWallet
70
- } from "./chunk-CESIYSTD.js";
73
+ } from "./chunk-UM7QXLQE.js";
71
74
  import {
72
- mewWallet
73
- } from "./chunk-BZFEDZQJ.js";
75
+ omniWallet
76
+ } from "./chunk-HKBLG5YG.js";
74
77
  import {
75
- oktoWallet
76
- } from "./chunk-3JTRMKJN.js";
78
+ ledgerWallet
79
+ } from "./chunk-WPGD3FGN.js";
77
80
  import {
78
- okxWallet
79
- } from "./chunk-MPVMJW2X.js";
81
+ coin98Wallet
82
+ } from "./chunk-PVTJW4KE.js";
80
83
  import {
81
84
  coreWallet
82
85
  } from "./chunk-K342MEBF.js";
83
86
  import {
84
87
  dawnWallet
85
88
  } from "./chunk-QJNS6IE4.js";
89
+ import {
90
+ coinbaseWallet
91
+ } from "./chunk-WFTAXMQP.js";
92
+ import "./chunk-UZ5XLPAW.js";
86
93
  import {
87
94
  desigWallet
88
95
  } from "./chunk-SXUVHZCG.js";
89
96
  import {
90
97
  enkryptWallet
91
98
  } from "./chunk-ND76X5A2.js";
92
- import {
93
- foxWallet
94
- } from "./chunk-C6BBHBY3.js";
95
99
  import {
96
100
  frameWallet
97
101
  } from "./chunk-MBFEMLUU.js";
98
102
  import {
99
- frontierWallet
100
- } from "./chunk-T2DNUVKD.js";
101
- import {
102
- argentWallet
103
- } from "./chunk-DINSZSEC.js";
103
+ foxWallet
104
+ } from "./chunk-C6BBHBY3.js";
104
105
  import {
105
106
  bifrostWallet
106
- } from "./chunk-RAKDFYVF.js";
107
- import {
108
- bitskiWallet
109
- } from "./chunk-FL3REGA5.js";
107
+ } from "./chunk-M4KIVTE3.js";
110
108
  import {
111
109
  bitKeepWallet,
112
110
  bitgetWallet
113
- } from "./chunk-4HP4HVWX.js";
111
+ } from "./chunk-DTCZLIMY.js";
112
+ import {
113
+ argentWallet
114
+ } from "./chunk-32KC4FTG.js";
115
+ import "./chunk-ZOLACFTK.js";
114
116
  import {
115
117
  braveWallet
116
118
  } from "./chunk-INSQDNCE.js";
117
119
  import {
118
- coin98Wallet
119
- } from "./chunk-PVTJW4KE.js";
120
+ clvWallet
121
+ } from "./chunk-C3X4W5P4.js";
120
122
  import "./chunk-4ACOCJJZ.js";
121
123
  import {
122
- coinbaseWallet
123
- } from "./chunk-WFTAXMQP.js";
124
- import "./chunk-UZ5XLPAW.js";
125
- import "./chunk-ZOLACFTK.js";
124
+ bitskiWallet
125
+ } from "./chunk-FL3REGA5.js";
126
126
  export {
127
127
  argentWallet,
128
128
  bifrostWallet,
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  ledgerWallet
4
- } from "../chunk-4AGSKVK4.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-WPGD3FGN.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  ledgerWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  metaMaskWallet
4
- } from "../chunk-CESIYSTD.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-UM7QXLQE.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  metaMaskWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  oktoWallet
4
- } from "../chunk-3JTRMKJN.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-TFHNF64Z.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  oktoWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  okxWallet
4
- } from "../chunk-MPVMJW2X.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-EINKDQQW.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  okxWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  omniWallet
4
- } from "../chunk-2T3BP5YM.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-HKBLG5YG.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  omniWallet
9
9
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  rainbowWallet
4
- } from "../chunk-VDUTD5UR.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-TTTMI2Z2.js";
6
5
  import "../chunk-UZ5XLPAW.js";
7
6
  import "../chunk-ZOLACFTK.js";
7
+ import "../chunk-4ACOCJJZ.js";
8
8
  export {
9
9
  rainbowWallet
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  tokenPocketWallet
4
- } from "../chunk-6GAD4OSN.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-HHEZNZRR.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  tokenPocketWallet
9
9
  };
@@ -1,10 +1,10 @@
1
1
  "use client";
2
2
  import {
3
3
  trustWallet
4
- } from "../chunk-QVJQ2MU7.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-LU3HYLHT.js";
6
5
  import "../chunk-UZ5XLPAW.js";
7
6
  import "../chunk-ZOLACFTK.js";
7
+ import "../chunk-4ACOCJJZ.js";
8
8
  export {
9
9
  trustWallet
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  walletConnectWallet
4
- } from "../chunk-TM5A4D5D.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-Z47L7SO3.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.js";
7
7
  export {
8
8
  walletConnectWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  zerionWallet
4
- } from "../chunk-7Q7X4HIR.js";
5
- import "../chunk-4ACOCJJZ.js";
4
+ } from "../chunk-BZWTTESU.js";
6
5
  import "../chunk-ZOLACFTK.js";
6
+ import "../chunk-4ACOCJJZ.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": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -82,8 +82,8 @@
82
82
  },
83
83
  "dependencies": {
84
84
  "@front-finance/link": "^1.1.9",
85
- "@funkit/core": "^0.10.2",
86
- "@funkit/wagmi-tools": "^0.1.1",
85
+ "@funkit/core": "^0.10.3",
86
+ "@funkit/wagmi-tools": "^0.1.2",
87
87
  "@moonpay/moonpay-react": "^1.4.1",
88
88
  "@privy-io/js-sdk-core": "^0.7.0",
89
89
  "@types/uuid": "^9.0.1",