@funkit/connect 5.0.4 → 5.0.5
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/CHANGELOG.md +10 -0
- package/dist/components/CopyAddress/CopyIconButton.d.ts +1 -0
- package/dist/components/FunAssetAvatar/FunAssetAvatar.css.d.ts +0 -2
- package/dist/components/FunAssetAvatar/FunAssetAvatar.d.ts +1 -2
- package/dist/components/FunCheckoutBlocked/FunCheckoutBlocked.d.ts +1 -1
- package/dist/components/FunPaymentMethodItem/FunPaymentMethodItem.d.ts +6 -4
- package/dist/components/FunPayments/FunPaymentMethods.d.ts +1 -0
- package/dist/components/FunSkeletonLoader/FunSkeletonBlock.d.ts +2 -2
- package/dist/components/QRCode/QRCodeSkeletonLoader.d.ts +7 -0
- package/dist/components/SourcePaymentMethodItem/SourcePaymentMethodItem.d.ts +7 -0
- package/dist/consts/animations.d.ts +1 -0
- package/dist/domains/{checkoutState.d.ts → checkout.d.ts} +3 -0
- package/dist/domains/{checkoutFees.d.ts → fees.d.ts} +1 -1
- package/dist/domains/paymentMethods.d.ts +1 -1
- package/dist/domains/quote.d.ts +1 -1
- package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
- package/dist/hooks/useIsBlacklisted.d.ts +6 -0
- package/dist/index.css +3 -10
- package/dist/index.js +652 -580
- package/dist/modals/CheckoutModal/CheckoutNotification.d.ts +1 -1
- package/dist/modals/CheckoutModal/ConfirmationStep/ConfirmationStep.d.ts +1 -1
- package/dist/modals/CheckoutModal/ConfirmationStep/useCheckoutConfirmation.d.ts +6 -0
- package/dist/modals/CheckoutModal/stepTransition.d.ts +4 -0
- package/dist/providers/FunkitMoonpayProvider.d.ts +0 -2
- package/dist/providers/GeneralWalletProvider.d.ts +9 -10
- package/dist/utils/checkout.d.ts +1 -1
- package/dist/utils/flags/config.d.ts +1 -1
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
- package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
- package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
- package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
- package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
- package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
- package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
- package/dist/wallets/walletConnectors/index.js +67 -67
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
- package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
- package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
- package/dist/wallets/walletConnectors/subWallet/subWallet.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/zerionWallet/zerionWallet.js +2 -2
- package/package.json +3 -3
- package/dist/hooks/useIsCheckoutRisky.d.ts +0 -4
- /package/dist/components/{FunPaymentMethodItem/FunPaymentMethodItem.css.d.ts → SourcePaymentMethodItem/SourcePaymentMethodItem.css.d.ts} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { CheckoutHistoryItem } from '@funkit/api-base';
|
|
3
3
|
import type { Address } from 'viem';
|
|
4
|
-
import { type CheckoutStatus } from '~/domains/
|
|
4
|
+
import { type CheckoutStatus } from '~/domains/checkout';
|
|
5
5
|
export type NotificationStatus = CheckoutStatus | 'delayed';
|
|
6
6
|
interface CheckoutNotificationProps {
|
|
7
7
|
checkout: CheckoutHistoryItem;
|
|
@@ -18,5 +18,5 @@ export type ConfirmationStepNext = {
|
|
|
18
18
|
redirectBackToSourceChange?: boolean;
|
|
19
19
|
};
|
|
20
20
|
export declare const ConfirmationStepInfo: ModalStepInfo<FunCheckoutStep.CONFIRMATION>;
|
|
21
|
-
export declare function ConfirmationStep({ modalState, onNext, }: ModalStepComponentProps<FunCheckoutStep.CONFIRMATION>): React.JSX.Element;
|
|
21
|
+
export declare function ConfirmationStep({ modalState, onNext, setModalState, }: ModalStepComponentProps<FunCheckoutStep.CONFIRMATION>): React.JSX.Element;
|
|
22
22
|
export {};
|
|
@@ -2,6 +2,12 @@ import type { Address } from 'viem';
|
|
|
2
2
|
import type { ErrorNotification } from '~/components/FunNotification/FunNotification';
|
|
3
3
|
export interface CheckoutConfirmationError extends ErrorNotification {
|
|
4
4
|
durationMs?: number;
|
|
5
|
+
code: ConfirmationErrorCode;
|
|
6
|
+
}
|
|
7
|
+
export declare enum ConfirmationErrorCode {
|
|
8
|
+
QUOTE_EXPIRED = "QUOTE_EXPIRED",
|
|
9
|
+
GENERIC_ERROR = "GENERIC_ERROR",
|
|
10
|
+
RISK_ERROR = "RISK_ERROR"
|
|
5
11
|
}
|
|
6
12
|
interface UseCheckoutConfirmationOptions {
|
|
7
13
|
onError(error: CheckoutConfirmationError): void;
|
|
@@ -15,8 +15,12 @@ import { type SourceChangeNext, type SourceChangeState } from './SourceChange/So
|
|
|
15
15
|
import { type TransferTokenNext, type TransferTokenState } from './TransferToken';
|
|
16
16
|
export interface CheckoutModalCommonState {
|
|
17
17
|
checkoutId: string;
|
|
18
|
+
/** Handles soft hiding of the dialog (without removing it from the DOM) */
|
|
18
19
|
isSoftHidden: boolean;
|
|
20
|
+
/** Hides the close button in the Dialog Title element */
|
|
19
21
|
isCloseButtonHidden?: boolean;
|
|
22
|
+
/** Whether checkout should not be allowed to continue due to security reasons*/
|
|
23
|
+
isBlocked?: boolean;
|
|
20
24
|
targetChainId: string;
|
|
21
25
|
}
|
|
22
26
|
export interface ModalStepComponentProps<S extends FunCheckoutStep = FunCheckoutStep> {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React, { type ReactNode } from 'react';
|
|
2
|
-
import type { FunButtonProps } from '../components/FunButton/FunButton';
|
|
3
2
|
export declare function FunkitMoonpayProvider({ children, debug, }: {
|
|
4
3
|
children: ReactNode;
|
|
5
4
|
debug: boolean;
|
|
@@ -17,7 +16,6 @@ export interface UserIpInfoFromMoonpay {
|
|
|
17
16
|
isLowLimitEnabled: boolean;
|
|
18
17
|
state: string;
|
|
19
18
|
}
|
|
20
|
-
export declare const geoCheckInProgressProps: FunButtonProps;
|
|
21
19
|
export declare function useFunkitUserIp(): {
|
|
22
20
|
isLoadingGeoCheck: boolean;
|
|
23
21
|
isUserGeoblocked: boolean;
|
|
@@ -15,7 +15,7 @@ export declare enum LoginType {
|
|
|
15
15
|
Web3 = "web3",
|
|
16
16
|
Guest = "guest"
|
|
17
17
|
}
|
|
18
|
-
interface GeneralWalletContextProps {
|
|
18
|
+
export interface GeneralWalletContextProps {
|
|
19
19
|
walletAddress: Address | '';
|
|
20
20
|
isUserLoggedIn: boolean;
|
|
21
21
|
loginType: LoginType;
|
|
@@ -96,15 +96,15 @@ export declare const useFunkitDisconnect: () => {
|
|
|
96
96
|
error: null;
|
|
97
97
|
data: undefined;
|
|
98
98
|
status: "idle";
|
|
99
|
-
isPaused: boolean;
|
|
100
|
-
context: unknown;
|
|
101
99
|
isError: false;
|
|
102
100
|
isPending: false;
|
|
103
101
|
isSuccess: false;
|
|
104
102
|
failureCount: number;
|
|
105
103
|
failureReason: import("@wagmi/core").DisconnectErrorType | null;
|
|
104
|
+
isPaused: boolean;
|
|
106
105
|
variables: undefined;
|
|
107
106
|
isIdle: true;
|
|
107
|
+
context: unknown;
|
|
108
108
|
submittedAt: number;
|
|
109
109
|
connectors: readonly import("wagmi").Connector[];
|
|
110
110
|
} | {
|
|
@@ -114,15 +114,15 @@ export declare const useFunkitDisconnect: () => {
|
|
|
114
114
|
error: null;
|
|
115
115
|
data: undefined;
|
|
116
116
|
status: "pending";
|
|
117
|
-
isPaused: boolean;
|
|
118
|
-
context: unknown;
|
|
119
117
|
isError: false;
|
|
120
118
|
isPending: true;
|
|
121
119
|
isSuccess: false;
|
|
122
120
|
failureCount: number;
|
|
123
121
|
failureReason: import("@wagmi/core").DisconnectErrorType | null;
|
|
122
|
+
isPaused: boolean;
|
|
124
123
|
variables: import("wagmi/query").DisconnectVariables;
|
|
125
124
|
isIdle: false;
|
|
125
|
+
context: unknown;
|
|
126
126
|
submittedAt: number;
|
|
127
127
|
connectors: readonly import("wagmi").Connector[];
|
|
128
128
|
} | {
|
|
@@ -132,15 +132,15 @@ export declare const useFunkitDisconnect: () => {
|
|
|
132
132
|
error: import("@wagmi/core").DisconnectErrorType;
|
|
133
133
|
data: undefined;
|
|
134
134
|
status: "error";
|
|
135
|
-
isPaused: boolean;
|
|
136
|
-
context: unknown;
|
|
137
135
|
isError: true;
|
|
138
136
|
isPending: false;
|
|
139
137
|
isSuccess: false;
|
|
140
138
|
failureCount: number;
|
|
141
139
|
failureReason: import("@wagmi/core").DisconnectErrorType | null;
|
|
140
|
+
isPaused: boolean;
|
|
142
141
|
variables: import("wagmi/query").DisconnectVariables;
|
|
143
142
|
isIdle: false;
|
|
143
|
+
context: unknown;
|
|
144
144
|
submittedAt: number;
|
|
145
145
|
connectors: readonly import("wagmi").Connector[];
|
|
146
146
|
} | {
|
|
@@ -150,15 +150,15 @@ export declare const useFunkitDisconnect: () => {
|
|
|
150
150
|
error: null;
|
|
151
151
|
data: void;
|
|
152
152
|
status: "success";
|
|
153
|
-
isPaused: boolean;
|
|
154
|
-
context: unknown;
|
|
155
153
|
isError: false;
|
|
156
154
|
isPending: false;
|
|
157
155
|
isSuccess: true;
|
|
158
156
|
failureCount: number;
|
|
159
157
|
failureReason: import("@wagmi/core").DisconnectErrorType | null;
|
|
158
|
+
isPaused: boolean;
|
|
160
159
|
variables: import("wagmi/query").DisconnectVariables;
|
|
161
160
|
isIdle: false;
|
|
161
|
+
context: unknown;
|
|
162
162
|
submittedAt: number;
|
|
163
163
|
connectors: readonly import("wagmi").Connector[];
|
|
164
164
|
};
|
|
@@ -172,4 +172,3 @@ export declare const useFunkitSwitchChains: ({ onSettled, }: {
|
|
|
172
172
|
switchChainAsync: (params: SwitchChainVariables<Config, number>) => Promise<void>;
|
|
173
173
|
pendingChainId: number | null;
|
|
174
174
|
};
|
|
175
|
-
export {};
|
package/dist/utils/checkout.d.ts
CHANGED
|
@@ -51,7 +51,6 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
|
|
|
51
51
|
bypassInit: boolean;
|
|
52
52
|
apiKey?: string;
|
|
53
53
|
nonce?: bigint | undefined;
|
|
54
|
-
logger?: import("@funkit/api-base").Logger | undefined;
|
|
55
54
|
fee?: {
|
|
56
55
|
token?: string;
|
|
57
56
|
amount?: number;
|
|
@@ -59,6 +58,7 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
|
|
|
59
58
|
recipient: Address;
|
|
60
59
|
} | undefined;
|
|
61
60
|
skipDBAction?: boolean | undefined;
|
|
61
|
+
logger?: import("@funkit/api-base").Logger | undefined;
|
|
62
62
|
};
|
|
63
63
|
export type TokenInfo = {
|
|
64
64
|
symbol: string;
|
|
@@ -7,55 +7,67 @@ import {
|
|
|
7
7
|
} from "./chunk-NO7XMBB5.js";
|
|
8
8
|
import {
|
|
9
9
|
zerionWallet
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-AXWP3GD4.js";
|
|
11
|
+
import {
|
|
12
|
+
subWallet
|
|
13
|
+
} from "./chunk-AD2KIJB6.js";
|
|
11
14
|
import {
|
|
12
15
|
tahoWallet
|
|
13
16
|
} from "./chunk-6P2EMPZI.js";
|
|
14
17
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
18
|
+
talismanWallet
|
|
19
|
+
} from "./chunk-ABFSXBE6.js";
|
|
17
20
|
import {
|
|
18
21
|
tokenaryWallet
|
|
19
22
|
} from "./chunk-SLOIIJGP.js";
|
|
23
|
+
import {
|
|
24
|
+
tokenPocketWallet
|
|
25
|
+
} from "./chunk-IDKVN5CF.js";
|
|
20
26
|
import {
|
|
21
27
|
trustWallet
|
|
22
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-ISIBREBO.js";
|
|
23
29
|
import {
|
|
24
30
|
uniswapWallet
|
|
25
31
|
} from "./chunk-LH7BMNFZ.js";
|
|
26
|
-
import {
|
|
27
|
-
tokenPocketWallet
|
|
28
|
-
} from "./chunk-FRGSRLTS.js";
|
|
29
32
|
import {
|
|
30
33
|
zealWallet
|
|
31
34
|
} from "./chunk-JROWU5BP.js";
|
|
32
35
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
35
|
-
import {
|
|
36
|
-
roninWallet
|
|
37
|
-
} from "./chunk-25VW5TZP.js";
|
|
36
|
+
phantomWallet
|
|
37
|
+
} from "./chunk-ZSVTX6EK.js";
|
|
38
38
|
import {
|
|
39
39
|
ramperWallet
|
|
40
40
|
} from "./chunk-PIUNLQJG.js";
|
|
41
|
+
import {
|
|
42
|
+
roninWallet
|
|
43
|
+
} from "./chunk-63YLN6R5.js";
|
|
41
44
|
import {
|
|
42
45
|
rainbowWallet
|
|
43
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-2UCNRD7H.js";
|
|
44
47
|
import {
|
|
45
|
-
|
|
46
|
-
} from "./chunk-
|
|
48
|
+
rabbyWallet
|
|
49
|
+
} from "./chunk-BVX4XGNP.js";
|
|
50
|
+
import {
|
|
51
|
+
safeWallet
|
|
52
|
+
} from "./chunk-BQQQL6UD.js";
|
|
53
|
+
import {
|
|
54
|
+
safepalWallet
|
|
55
|
+
} from "./chunk-MSFKSQBY.js";
|
|
47
56
|
import {
|
|
48
57
|
safeheronWallet
|
|
49
58
|
} from "./chunk-R6RWZRFF.js";
|
|
50
59
|
import {
|
|
51
|
-
|
|
52
|
-
} from "./chunk-
|
|
60
|
+
ledgerWallet
|
|
61
|
+
} from "./chunk-BRBKM4PW.js";
|
|
53
62
|
import {
|
|
54
|
-
|
|
55
|
-
} from "./chunk-
|
|
63
|
+
metaMaskWallet
|
|
64
|
+
} from "./chunk-G73C6P5P.js";
|
|
56
65
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
66
|
+
mewWallet
|
|
67
|
+
} from "./chunk-V57WLZEE.js";
|
|
68
|
+
import {
|
|
69
|
+
okxWallet
|
|
70
|
+
} from "./chunk-4WEHDI4Y.js";
|
|
59
71
|
import {
|
|
60
72
|
oktoWallet
|
|
61
73
|
} from "./chunk-ADIXAKUL.js";
|
|
@@ -63,91 +75,79 @@ import {
|
|
|
63
75
|
oneInchWallet
|
|
64
76
|
} from "./chunk-OESTDX6I.js";
|
|
65
77
|
import {
|
|
66
|
-
|
|
67
|
-
} from "./chunk-
|
|
68
|
-
import {
|
|
69
|
-
metaMaskWallet
|
|
70
|
-
} from "./chunk-N2NIIUW6.js";
|
|
78
|
+
omniWallet
|
|
79
|
+
} from "./chunk-7CUY5G6R.js";
|
|
71
80
|
import {
|
|
72
|
-
|
|
73
|
-
} from "./chunk-
|
|
81
|
+
oneKeyWallet
|
|
82
|
+
} from "./chunk-4AD7VI2P.js";
|
|
74
83
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
84
|
+
foxWallet
|
|
85
|
+
} from "./chunk-LMZMXEXL.js";
|
|
77
86
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
87
|
+
frameWallet
|
|
88
|
+
} from "./chunk-ZMYVTWDF.js";
|
|
80
89
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
90
|
+
frontierWallet
|
|
91
|
+
} from "./chunk-3S2U24BJ.js";
|
|
83
92
|
import {
|
|
84
93
|
gateWallet
|
|
85
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-GSOYKKIS.js";
|
|
86
95
|
import {
|
|
87
96
|
imTokenWallet
|
|
88
97
|
} from "./chunk-COZ7MIQS.js";
|
|
89
98
|
import {
|
|
90
|
-
|
|
91
|
-
} from "./chunk-
|
|
92
|
-
import {
|
|
93
|
-
frameWallet
|
|
94
|
-
} from "./chunk-ZMYVTWDF.js";
|
|
95
|
-
import {
|
|
96
|
-
ledgerWallet
|
|
97
|
-
} from "./chunk-BRBKM4PW.js";
|
|
98
|
-
import {
|
|
99
|
-
mewWallet
|
|
100
|
-
} from "./chunk-V57WLZEE.js";
|
|
99
|
+
kresusWallet
|
|
100
|
+
} from "./chunk-MJXPRJZT.js";
|
|
101
101
|
import {
|
|
102
102
|
injectedWallet
|
|
103
103
|
} from "./chunk-VCVVV2K7.js";
|
|
104
104
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
105
|
+
bybitWallet
|
|
106
|
+
} from "./chunk-6ONTSPEY.js";
|
|
107
|
+
import {
|
|
108
|
+
clvWallet
|
|
109
|
+
} from "./chunk-KR6JBW5E.js";
|
|
110
|
+
import {
|
|
111
|
+
coin98Wallet
|
|
112
|
+
} from "./chunk-DTRYS3MO.js";
|
|
107
113
|
import {
|
|
108
114
|
coinbaseWallet
|
|
109
115
|
} from "./chunk-H4IRCEZN.js";
|
|
110
116
|
import {
|
|
111
117
|
coreWallet
|
|
112
|
-
} from "./chunk-
|
|
118
|
+
} from "./chunk-HBA36GW3.js";
|
|
113
119
|
import {
|
|
114
|
-
|
|
115
|
-
} from "./chunk-
|
|
120
|
+
desigWallet
|
|
121
|
+
} from "./chunk-CTU6JCOK.js";
|
|
116
122
|
import {
|
|
117
123
|
dawnWallet
|
|
118
124
|
} from "./chunk-LN7OD5EC.js";
|
|
119
|
-
import {
|
|
120
|
-
coin98Wallet
|
|
121
|
-
} from "./chunk-KFFJPS5R.js";
|
|
122
|
-
import {
|
|
123
|
-
desigWallet
|
|
124
|
-
} from "./chunk-CTU6JCOK.js";
|
|
125
125
|
import {
|
|
126
126
|
enkryptWallet
|
|
127
127
|
} from "./chunk-SJTXS4ZW.js";
|
|
128
|
-
import {
|
|
129
|
-
bifrostWallet
|
|
130
|
-
} from "./chunk-545L7Y4M.js";
|
|
131
128
|
import {
|
|
132
129
|
argentWallet
|
|
133
130
|
} from "./chunk-WSQ2YJO2.js";
|
|
134
131
|
import {
|
|
135
|
-
|
|
136
|
-
} from "./chunk-
|
|
132
|
+
bifrostWallet
|
|
133
|
+
} from "./chunk-W6N74MS3.js";
|
|
134
|
+
import {
|
|
135
|
+
bitgetWallet
|
|
136
|
+
} from "./chunk-A5APNTGL.js";
|
|
137
137
|
import {
|
|
138
138
|
bitskiWallet
|
|
139
139
|
} from "./chunk-P74YPRF6.js";
|
|
140
140
|
import {
|
|
141
|
-
|
|
142
|
-
} from "./chunk-
|
|
141
|
+
bitverseWallet
|
|
142
|
+
} from "./chunk-3HZRRP4Y.js";
|
|
143
143
|
import {
|
|
144
144
|
bloomWallet
|
|
145
145
|
} from "./chunk-S27IADFU.js";
|
|
146
|
+
import "./chunk-23WIEY36.js";
|
|
146
147
|
import {
|
|
147
|
-
|
|
148
|
-
} from "./chunk-
|
|
148
|
+
braveWallet
|
|
149
|
+
} from "./chunk-PB254NQ4.js";
|
|
149
150
|
import "./chunk-WRA2DVJ7.js";
|
|
150
|
-
import "./chunk-23WIEY36.js";
|
|
151
151
|
export {
|
|
152
152
|
argentWallet,
|
|
153
153
|
bifrostWallet,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/connect",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.5",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
"ua-parser-js": "^1.0.37",
|
|
92
92
|
"uuid": "^9.0.1",
|
|
93
93
|
"@funkit/api-base": "1.5.8",
|
|
94
|
+
"@funkit/wagmi-tools": "3.0.31",
|
|
94
95
|
"@funkit/chains": "0.1.2",
|
|
95
|
-
"@funkit/utils": "1.0.8",
|
|
96
96
|
"@funkit/core": "2.3.9",
|
|
97
|
-
"@funkit/
|
|
97
|
+
"@funkit/utils": "1.0.8"
|
|
98
98
|
},
|
|
99
99
|
"repository": {
|
|
100
100
|
"type": "git",
|