@funkit/connect 5.5.13-next.3 → 5.5.14
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 +76 -0
- package/dist/components/CopyAddress/CopyInputDisplayedAddress.css.d.ts +11 -0
- package/dist/components/CopyAddress/CopyInputDisplayedAddress.d.ts +0 -1
- package/dist/components/FunCheckoutHistory/FunCheckoutHistoryContent.d.ts +3 -1
- package/dist/components/Icons/CheckIcon.d.ts +2 -1
- package/dist/consts/customers.d.ts +0 -1
- package/dist/domains/asset.d.ts +2 -3
- package/dist/domains/clientMetadata.d.ts +7 -1
- package/dist/domains/fees.d.ts +0 -2
- package/dist/domains/quote.d.ts +3 -2
- package/dist/domains/relay.d.ts +5 -1
- package/dist/domains/wallet.d.ts +1 -1
- package/dist/hooks/queries/useWithdrawalQuote.d.ts +2 -3
- package/dist/hooks/useCheckoutDirectExecution.d.ts +17 -15
- package/dist/hooks/useCheckoutTimeEstimate.d.ts +3 -0
- package/dist/hooks/useCheckoutTransferInit.d.ts +3 -1
- package/dist/hooks/useRelayBypass.d.ts +1 -0
- package/dist/index.css +230 -88
- package/dist/index.js +8497 -8274
- package/dist/modals/CheckoutModal/ConfirmationStep/DirectExecutionBrokerageAndCardAlert.d.ts +2 -0
- package/dist/modals/CheckoutModal/ConfirmationStep/useCheckoutConfirmation.d.ts +1 -0
- package/dist/modals/CheckoutModal/InputAmount/InputAmountLoaded.d.ts +1 -1
- package/dist/modals/CheckoutModal/InputAmount/state.d.ts +1 -2
- package/dist/modals/CheckoutModal/MoonpaySetup.d.ts +2 -0
- package/dist/{components/Withdraw/WithdrawContent.d.ts → modals/WithdrwalModal/WithdrawalContent.d.ts} +1 -9
- package/dist/{components/Withdraw/WithdrawSuccess.d.ts → modals/WithdrwalModal/WithdrawalSuccess.d.ts} +3 -1
- package/dist/modals/WithdrwalModal/useWithdrawal.d.ts +24 -0
- package/dist/providers/FunkitCheckoutContext.d.ts +4 -1
- package/dist/utils/flags/config.d.ts +19 -12
- 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 +51 -51
- 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 +7 -7
- package/dist/hooks/useWithdrawal.d.ts +0 -15
|
@@ -20,5 +20,6 @@ interface UseCheckoutConfirmationResult {
|
|
|
20
20
|
handleCheckoutConfirmation(): Promise<void>;
|
|
21
21
|
isConfirming: boolean;
|
|
22
22
|
}
|
|
23
|
+
export declare function toCheckoutConfirmationError(error: unknown): CheckoutConfirmationError;
|
|
23
24
|
export declare function useCheckoutConfirmation({ onError, onSuccess, }: UseCheckoutConfirmationOptions): UseCheckoutConfirmationResult;
|
|
24
25
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import type { FunkitTextCustomizationsConfig } from '~/providers/FunkitConfigContext';
|
|
3
3
|
import type { AssetHoldingsItem } from '~/utils/assets';
|
|
4
4
|
import type { FunkitCheckoutConfig } from '../../../providers/FunkitCheckoutContext';
|
|
5
5
|
import { FunCheckoutStep, type ModalStepComponentProps } from '../stepTransition';
|
|
@@ -2,7 +2,6 @@ import { PaymentMethod } from '~/domains/paymentMethods';
|
|
|
2
2
|
import type { AssetHoldingsItem } from '~/utils/assets';
|
|
3
3
|
import type { FunkitCheckoutConfig } from '../../../providers/FunkitCheckoutContext';
|
|
4
4
|
export interface AmountInputInitOptions {
|
|
5
|
-
apiKey: string;
|
|
6
5
|
checkoutConfig: FunkitCheckoutConfig;
|
|
7
6
|
paymentMethod: PaymentMethod;
|
|
8
7
|
sourceHolding: AssetHoldingsItem | null;
|
|
@@ -79,6 +78,6 @@ export type AmountInputError = {
|
|
|
79
78
|
/** Input is empty */
|
|
80
79
|
type: 'noInput';
|
|
81
80
|
};
|
|
82
|
-
export declare function initializeState({
|
|
81
|
+
export declare function initializeState({ checkoutConfig, maxUsd, minUsd, paymentMethod, sourceHolding, unitPrice, defaultAmount, fiatCurrency, quickOptions, }: AmountInputInitOptions): AmountInputState;
|
|
83
82
|
export declare function reduceState(state: AmountInputState, action: AmountInputAction): AmountInputState;
|
|
84
83
|
export declare function getDerivedState(state: AmountInputState): AmountInputDerivedState;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { Address } from 'viem';
|
|
3
|
+
import type { PaymentMethodCardInfo } from '~/domains/paymentMethods';
|
|
3
4
|
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from './stepTransition';
|
|
4
5
|
export type MoonpaySetupState = CheckoutModalCommonState & {
|
|
5
6
|
paymentAddress: Address;
|
|
@@ -7,6 +8,7 @@ export type MoonpaySetupState = CheckoutModalCommonState & {
|
|
|
7
8
|
tokenChainId: string;
|
|
8
9
|
depositAmount: number;
|
|
9
10
|
isSendingToQr: boolean;
|
|
11
|
+
paymentMethodInfo: PaymentMethodCardInfo;
|
|
10
12
|
};
|
|
11
13
|
export type MoonpaySetupNext = {
|
|
12
14
|
depositAddress: Address;
|
|
@@ -1,15 +1,7 @@
|
|
|
1
|
-
import { type CheckoutQuoteResponse } from '@funkit/utils';
|
|
2
1
|
import React from 'react';
|
|
3
2
|
import { type Hex } from 'viem';
|
|
4
|
-
import type { Address } from 'viem';
|
|
5
3
|
import type { FunkitActiveWithdrawalItem, FunkitWithdrawalConfig } from '~/providers/FunkitCheckoutContext';
|
|
6
|
-
|
|
7
|
-
destinationAddress: Address;
|
|
8
|
-
amount: string;
|
|
9
|
-
token: string;
|
|
10
|
-
chainId: number;
|
|
11
|
-
quote: CheckoutQuoteResponse;
|
|
12
|
-
};
|
|
4
|
+
import { type WithdrawalFormData } from './useWithdrawal';
|
|
13
5
|
interface WithdrawContentProps {
|
|
14
6
|
onContinue: (withdrawal: WithdrawalFormData, txHash: Hex) => void;
|
|
15
7
|
config: FunkitWithdrawalConfig;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import type { Address } from 'viem';
|
|
2
3
|
interface WithdrawSuccessProps {
|
|
4
|
+
depositAddress: Address;
|
|
3
5
|
amount: number;
|
|
4
6
|
token: string;
|
|
5
7
|
tokenIconSrc: string;
|
|
@@ -9,5 +11,5 @@ interface WithdrawSuccessProps {
|
|
|
9
11
|
onNewWithdrawal: () => void;
|
|
10
12
|
onClose: () => void;
|
|
11
13
|
}
|
|
12
|
-
export declare const WithdrawSuccess: ({
|
|
14
|
+
export declare const WithdrawSuccess: ({ depositAddress, bottomBarId, onNewWithdrawal, onClose, }: WithdrawSuccessProps) => React.JSX.Element;
|
|
13
15
|
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { Address, Hex } from 'viem';
|
|
2
|
+
import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
|
|
3
|
+
import { type FunkitActiveWithdrawalItem } from '~/providers/FunkitCheckoutContext';
|
|
4
|
+
import type { WithdrawalClient } from '~/wallets/Wallet';
|
|
5
|
+
import { type CheckoutConfirmationError } from '../CheckoutModal/ConfirmationStep/useCheckoutConfirmation';
|
|
6
|
+
interface UseWithdrawalResult {
|
|
7
|
+
handleWithdrawal: (withdrawal: WithdrawalFormData) => Promise<void>;
|
|
8
|
+
isWithdrawing: boolean;
|
|
9
|
+
withdrawalError: CheckoutConfirmationError | null;
|
|
10
|
+
stepMessage: string | null;
|
|
11
|
+
}
|
|
12
|
+
export type WithdrawalFormData = {
|
|
13
|
+
destinationAddress: Address;
|
|
14
|
+
amount: string;
|
|
15
|
+
token: string;
|
|
16
|
+
chainId: number;
|
|
17
|
+
quote: FunkitCheckoutQuoteResult;
|
|
18
|
+
};
|
|
19
|
+
export declare function useWithdrawal({ withdrawalWallet, withdrawalItem, onSuccess, }: {
|
|
20
|
+
withdrawalWallet: WithdrawalClient;
|
|
21
|
+
withdrawalItem: FunkitActiveWithdrawalItem | null;
|
|
22
|
+
onSuccess: (withdrawal: WithdrawalFormData, txHash: Hex) => void;
|
|
23
|
+
}): UseWithdrawalResult;
|
|
24
|
+
export {};
|
|
@@ -132,6 +132,7 @@ export interface FunkitActiveCheckoutItem extends Omit<ApiCheckoutClientMetadata
|
|
|
132
132
|
};
|
|
133
133
|
/** Time of completion of the active checkout item. For frontend use only. **/
|
|
134
134
|
completedTimestampMs: number | null;
|
|
135
|
+
sourceAssetAmount: number | null;
|
|
135
136
|
}
|
|
136
137
|
export interface FunkitActiveWithdrawalItem {
|
|
137
138
|
/** Unique identifier for frontend use only. */
|
|
@@ -154,13 +155,15 @@ interface FunkitCheckoutContextInterface {
|
|
|
154
155
|
iconSrc: string | undefined;
|
|
155
156
|
}): void;
|
|
156
157
|
updateSelectedPaymentMethodInfo(newPaymentMethodInfo: PaymentMethodInfo): void;
|
|
157
|
-
|
|
158
|
+
updateCustomRecipient: (recipient: Address) => void;
|
|
159
|
+
confirmCheckout(shouldBatchOpBypassInit: boolean, quote: FunkitCheckoutQuoteResult, stepMessageSetter: (m: string) => void, withdrawalClient?: WithdrawalClient): Promise<Address>;
|
|
158
160
|
cancelCheckout(depositAddress: Address): Promise<boolean>;
|
|
159
161
|
/** @deprecated to be removed after quote migration is finished (historically named setCheckoutQuote) */
|
|
160
162
|
setCheckout: (checkout: FunkitActiveCheckoutItem) => void;
|
|
161
163
|
setCompletedTimestamp(timestampMs: number): void;
|
|
162
164
|
withdrawalItem: FunkitActiveWithdrawalItem | null;
|
|
163
165
|
initNewWithdrawal(initSettings: Partial<UseFunkitCheckoutPropsWithFullConfig>): string;
|
|
166
|
+
updateWithdrawalSourceAssetAmount(newSourceAmount: number): void;
|
|
164
167
|
}
|
|
165
168
|
export declare function FunkitCheckoutProvider({ children }: {
|
|
166
169
|
children: ReactNode;
|
|
@@ -207,38 +207,45 @@ export declare const flagConfig: {
|
|
|
207
207
|
help_tutorial_url: {
|
|
208
208
|
type: "string";
|
|
209
209
|
default_value: string;
|
|
210
|
-
overrides:
|
|
211
|
-
if_any: {
|
|
212
|
-
key: "apiKey";
|
|
213
|
-
type: "isAnyOf";
|
|
214
|
-
values: string[];
|
|
215
|
-
}[];
|
|
216
|
-
value: string;
|
|
217
|
-
}[];
|
|
210
|
+
overrides: never[];
|
|
218
211
|
};
|
|
219
212
|
enable_card: {
|
|
220
213
|
type: "boolean";
|
|
221
214
|
default_value: true;
|
|
222
|
-
overrides: {
|
|
215
|
+
overrides: ({
|
|
216
|
+
if_any: {
|
|
217
|
+
key: "userId";
|
|
218
|
+
type: "isAnyOf";
|
|
219
|
+
values: string[];
|
|
220
|
+
}[];
|
|
221
|
+
value: true;
|
|
222
|
+
} | {
|
|
223
223
|
if_any: {
|
|
224
224
|
key: "apiKey";
|
|
225
225
|
type: "isAnyOf";
|
|
226
226
|
values: string[];
|
|
227
227
|
}[];
|
|
228
228
|
value: false;
|
|
229
|
-
}[];
|
|
229
|
+
})[];
|
|
230
230
|
};
|
|
231
231
|
enable_brokerage: {
|
|
232
232
|
type: "boolean";
|
|
233
233
|
default_value: true;
|
|
234
|
-
overrides: {
|
|
234
|
+
overrides: ({
|
|
235
|
+
if_any: {
|
|
236
|
+
key: "userId";
|
|
237
|
+
type: "isAnyOf";
|
|
238
|
+
values: string[];
|
|
239
|
+
}[];
|
|
240
|
+
value: true;
|
|
241
|
+
} | {
|
|
235
242
|
if_any: {
|
|
236
243
|
key: "apiKey";
|
|
237
244
|
type: "isAnyOf";
|
|
238
245
|
values: string[];
|
|
239
246
|
}[];
|
|
240
247
|
value: false;
|
|
241
|
-
}[];
|
|
248
|
+
})[];
|
|
242
249
|
};
|
|
243
250
|
enable_meld_payment: {
|
|
244
251
|
type: "boolean";
|
|
@@ -7,147 +7,147 @@ import {
|
|
|
7
7
|
} from "./chunk-JROWU5BP.js";
|
|
8
8
|
import {
|
|
9
9
|
zerionWallet
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-AXWP3GD4.js";
|
|
11
11
|
import {
|
|
12
12
|
tahoWallet
|
|
13
13
|
} from "./chunk-6P2EMPZI.js";
|
|
14
14
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import {
|
|
18
|
-
tokenPocketWallet
|
|
19
|
-
} from "./chunk-FRGSRLTS.js";
|
|
15
|
+
safepalWallet
|
|
16
|
+
} from "./chunk-MSFKSQBY.js";
|
|
20
17
|
import {
|
|
21
18
|
talismanWallet
|
|
22
19
|
} from "./chunk-ABFSXBE6.js";
|
|
23
|
-
import {
|
|
24
|
-
trustWallet
|
|
25
|
-
} from "./chunk-IPOC2VJX.js";
|
|
26
20
|
import {
|
|
27
21
|
tokenaryWallet
|
|
28
22
|
} from "./chunk-SLOIIJGP.js";
|
|
23
|
+
import {
|
|
24
|
+
tokenPocketWallet
|
|
25
|
+
} from "./chunk-IDKVN5CF.js";
|
|
29
26
|
import {
|
|
30
27
|
uniswapWallet
|
|
31
28
|
} from "./chunk-LH7BMNFZ.js";
|
|
32
29
|
import {
|
|
33
30
|
walletConnectWallet
|
|
34
31
|
} from "./chunk-NP5QGWNL.js";
|
|
32
|
+
import {
|
|
33
|
+
trustWallet
|
|
34
|
+
} from "./chunk-ISIBREBO.js";
|
|
35
35
|
import {
|
|
36
36
|
phantomWallet
|
|
37
37
|
} from "./chunk-ZSVTX6EK.js";
|
|
38
38
|
import {
|
|
39
|
-
|
|
40
|
-
} from "./chunk-
|
|
39
|
+
oneKeyWallet
|
|
40
|
+
} from "./chunk-4AD7VI2P.js";
|
|
41
|
+
import {
|
|
42
|
+
rainbowWallet
|
|
43
|
+
} from "./chunk-2UCNRD7H.js";
|
|
41
44
|
import {
|
|
42
45
|
ramperWallet
|
|
43
46
|
} from "./chunk-PIUNLQJG.js";
|
|
44
|
-
import {
|
|
45
|
-
roninWallet
|
|
46
|
-
} from "./chunk-25VW5TZP.js";
|
|
47
47
|
import {
|
|
48
48
|
safeWallet
|
|
49
49
|
} from "./chunk-BQQQL6UD.js";
|
|
50
50
|
import {
|
|
51
|
-
|
|
52
|
-
} from "./chunk-
|
|
53
|
-
import {
|
|
54
|
-
safepalWallet
|
|
55
|
-
} from "./chunk-6LPM6LUQ.js";
|
|
51
|
+
roninWallet
|
|
52
|
+
} from "./chunk-63YLN6R5.js";
|
|
56
53
|
import {
|
|
57
54
|
safeheronWallet
|
|
58
55
|
} from "./chunk-R6RWZRFF.js";
|
|
59
56
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
57
|
+
subWallet
|
|
58
|
+
} from "./chunk-AD2KIJB6.js";
|
|
62
59
|
import {
|
|
63
60
|
metaMaskWallet
|
|
64
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-G73C6P5P.js";
|
|
62
|
+
import {
|
|
63
|
+
ledgerWallet
|
|
64
|
+
} from "./chunk-BRBKM4PW.js";
|
|
65
65
|
import {
|
|
66
66
|
mewWallet
|
|
67
67
|
} from "./chunk-V57WLZEE.js";
|
|
68
|
+
import {
|
|
69
|
+
oktoWallet
|
|
70
|
+
} from "./chunk-ADIXAKUL.js";
|
|
68
71
|
import {
|
|
69
72
|
okxWallet
|
|
70
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-4WEHDI4Y.js";
|
|
71
74
|
import {
|
|
72
75
|
omniWallet
|
|
73
76
|
} from "./chunk-7CUY5G6R.js";
|
|
74
|
-
import {
|
|
75
|
-
oktoWallet
|
|
76
|
-
} from "./chunk-ADIXAKUL.js";
|
|
77
|
-
import {
|
|
78
|
-
oneKeyWallet
|
|
79
|
-
} from "./chunk-4AD7VI2P.js";
|
|
80
77
|
import {
|
|
81
78
|
oneInchWallet
|
|
82
79
|
} from "./chunk-OESTDX6I.js";
|
|
80
|
+
import {
|
|
81
|
+
rabbyWallet
|
|
82
|
+
} from "./chunk-BVX4XGNP.js";
|
|
83
83
|
import {
|
|
84
84
|
foxWallet
|
|
85
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-LMZMXEXL.js";
|
|
86
86
|
import {
|
|
87
87
|
frameWallet
|
|
88
88
|
} from "./chunk-ZMYVTWDF.js";
|
|
89
89
|
import {
|
|
90
90
|
frontierWallet
|
|
91
|
-
} from "./chunk-
|
|
91
|
+
} from "./chunk-3S2U24BJ.js";
|
|
92
92
|
import {
|
|
93
93
|
gateWallet
|
|
94
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-GSOYKKIS.js";
|
|
95
95
|
import {
|
|
96
96
|
imTokenWallet
|
|
97
97
|
} from "./chunk-COZ7MIQS.js";
|
|
98
|
-
import {
|
|
99
|
-
kresusWallet
|
|
100
|
-
} from "./chunk-MJXPRJZT.js";
|
|
101
98
|
import {
|
|
102
99
|
injectedWallet
|
|
103
100
|
} from "./chunk-VCVVV2K7.js";
|
|
104
101
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
102
|
+
kresusWallet
|
|
103
|
+
} from "./chunk-MJXPRJZT.js";
|
|
107
104
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
105
|
+
bybitWallet
|
|
106
|
+
} from "./chunk-6ONTSPEY.js";
|
|
110
107
|
import {
|
|
111
108
|
coin98Wallet
|
|
112
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-DTRYS3MO.js";
|
|
110
|
+
import {
|
|
111
|
+
clvWallet
|
|
112
|
+
} from "./chunk-KR6JBW5E.js";
|
|
113
113
|
import {
|
|
114
114
|
coinbaseWallet
|
|
115
115
|
} from "./chunk-H4IRCEZN.js";
|
|
116
116
|
import {
|
|
117
117
|
coreWallet
|
|
118
|
-
} from "./chunk-
|
|
119
|
-
import {
|
|
120
|
-
dawnWallet
|
|
121
|
-
} from "./chunk-LN7OD5EC.js";
|
|
118
|
+
} from "./chunk-HBA36GW3.js";
|
|
122
119
|
import {
|
|
123
120
|
desigWallet
|
|
124
121
|
} from "./chunk-CTU6JCOK.js";
|
|
122
|
+
import {
|
|
123
|
+
dawnWallet
|
|
124
|
+
} from "./chunk-LN7OD5EC.js";
|
|
125
125
|
import {
|
|
126
126
|
enkryptWallet
|
|
127
127
|
} from "./chunk-SJTXS4ZW.js";
|
|
128
128
|
import {
|
|
129
129
|
argentWallet
|
|
130
130
|
} from "./chunk-WSQ2YJO2.js";
|
|
131
|
+
import {
|
|
132
|
+
bitgetWallet
|
|
133
|
+
} from "./chunk-A5APNTGL.js";
|
|
131
134
|
import {
|
|
132
135
|
bifrostWallet
|
|
133
|
-
} from "./chunk-
|
|
136
|
+
} from "./chunk-W6N74MS3.js";
|
|
134
137
|
import {
|
|
135
138
|
bitskiWallet
|
|
136
139
|
} 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
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.5.
|
|
3
|
+
"version": "5.5.14",
|
|
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.
|
|
92
|
-
"@funkit/core": "2.3.
|
|
93
|
-
"@funkit/chains": "0.3.
|
|
94
|
-
"@funkit/fun-relay": "0.1.9
|
|
95
|
-
"@funkit/utils": "1.1.
|
|
96
|
-
"@funkit/wagmi-tools": "3.0.
|
|
91
|
+
"@funkit/api-base": "1.9.6",
|
|
92
|
+
"@funkit/core": "2.3.28",
|
|
93
|
+
"@funkit/chains": "0.3.3",
|
|
94
|
+
"@funkit/fun-relay": "0.1.9",
|
|
95
|
+
"@funkit/utils": "1.1.5",
|
|
96
|
+
"@funkit/wagmi-tools": "3.0.50"
|
|
97
97
|
},
|
|
98
98
|
"repository": {
|
|
99
99
|
"type": "git",
|