@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.
- package/dist/{chunk-WSQKOMBH.js → chunk-AHK324EF.js} +933 -772
- package/dist/{chunk-YPT63F4L.js → chunk-P6ZB76ND.js} +933 -772
- package/dist/components/FunButton/FunLinkButton.d.ts +2 -1
- package/dist/components/FunCheckoutModal/FunCheckoutSelectAssetStep.d.ts +2 -1
- package/dist/components/FunPayments/FunPaymentMoonpayType.d.ts +3 -2
- package/dist/components/FunPayments/FunPaymentSetup.d.ts +2 -1
- package/dist/components/FunProgressBar/FunVerticalProgressBar.d.ts +2 -0
- package/dist/components/FunToast/FunToast.d.ts +3 -2
- package/dist/components/FunkitProvider/FunkitCheckoutContext.d.ts +4 -2
- package/dist/components/ProfileDetails/FunWalletProfileViews/FWHome/FWHome.css.d.ts +1 -0
- package/dist/components/index.css +5 -3
- package/dist/components/index.js +1 -1
- package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +11 -0
- package/dist/index.css +5 -3
- package/dist/index.js +1 -1
- package/dist/utils/checkout.d.ts +1 -6
- package/dist/wallets/walletConnectors/argentWallet/argentWallet.js +2 -2
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
- package/dist/wallets/walletConnectors/index.js +54 -54
- package/dist/wallets/walletConnectors/ledgerWallet/ledgerWallet.js +2 -2
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/oktoWallet/oktoWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/omniWallet/omniWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
- package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
- package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
- package/dist/wallets/walletConnectors/walletConnectWallet/walletConnectWallet.js +2 -2
- package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
- 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,
|
|
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
|
-
|
|
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 {};
|
|
@@ -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
|
|
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.
|
|
@@ -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=
|
|
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=#
|
|
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 {
|
package/dist/components/index.js
CHANGED
|
@@ -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=
|
|
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=#
|
|
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
package/dist/utils/checkout.d.ts
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
import { CheckoutHistoryItem, CheckoutState, FunWallet
|
|
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,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
|
-
|
|
7
|
-
} from "./chunk-
|
|
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-
|
|
19
|
+
} from "./chunk-LU3HYLHT.js";
|
|
23
20
|
import {
|
|
24
21
|
tokenPocketWallet
|
|
25
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-HHEZNZRR.js";
|
|
26
23
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
24
|
+
uniswapWallet
|
|
25
|
+
} from "./chunk-WCZ37NN2.js";
|
|
29
26
|
import {
|
|
30
|
-
|
|
31
|
-
} from "./chunk-
|
|
27
|
+
zerionWallet
|
|
28
|
+
} from "./chunk-BZWTTESU.js";
|
|
32
29
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
30
|
+
walletConnectWallet
|
|
31
|
+
} from "./chunk-Z47L7SO3.js";
|
|
35
32
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
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-
|
|
43
|
+
} from "./chunk-TTTMI2Z2.js";
|
|
44
44
|
import {
|
|
45
45
|
safeWallet
|
|
46
46
|
} from "./chunk-BNTZHUB6.js";
|
|
47
47
|
import {
|
|
48
|
-
|
|
49
|
-
} from "./chunk-
|
|
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
|
-
|
|
61
|
-
} from "./chunk-
|
|
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
|
-
|
|
67
|
-
} from "./chunk-
|
|
69
|
+
oktoWallet
|
|
70
|
+
} from "./chunk-TFHNF64Z.js";
|
|
68
71
|
import {
|
|
69
72
|
metaMaskWallet
|
|
70
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-UM7QXLQE.js";
|
|
71
74
|
import {
|
|
72
|
-
|
|
73
|
-
} from "./chunk-
|
|
75
|
+
omniWallet
|
|
76
|
+
} from "./chunk-HKBLG5YG.js";
|
|
74
77
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
78
|
+
ledgerWallet
|
|
79
|
+
} from "./chunk-WPGD3FGN.js";
|
|
77
80
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
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
|
-
|
|
100
|
-
} from "./chunk-
|
|
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-
|
|
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-
|
|
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
|
-
|
|
119
|
-
} from "./chunk-
|
|
120
|
+
clvWallet
|
|
121
|
+
} from "./chunk-C3X4W5P4.js";
|
|
120
122
|
import "./chunk-4ACOCJJZ.js";
|
|
121
123
|
import {
|
|
122
|
-
|
|
123
|
-
} from "./chunk-
|
|
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,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
rainbowWallet
|
|
4
|
-
} from "../chunk-
|
|
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,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
trustWallet
|
|
4
|
-
} from "../chunk-
|
|
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
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/connect",
|
|
3
|
-
"version": "0.1.
|
|
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.
|
|
86
|
-
"@funkit/wagmi-tools": "^0.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",
|