@funkit/connect 6.12.0 → 6.12.3
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 +12 -0
- package/dist/index.js +43 -38
- package/dist/providers/FunkitMoonpayProvider.d.ts +5 -1
- package/dist/utils/flags/config.d.ts +2 -18
- 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 +60 -60
- 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 +4 -4
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2300,10 +2300,10 @@ var flagConfig = {
|
|
|
2300
2300
|
values: [
|
|
2301
2301
|
DEV_API_KEY2,
|
|
2302
2302
|
POLYMARKET_API_KEY2,
|
|
2303
|
-
OSTIUM_API_KEY2
|
|
2304
|
-
|
|
2305
|
-
HYPERDASH_API_KEY,
|
|
2306
|
-
BASED_API_KEY
|
|
2303
|
+
OSTIUM_API_KEY2
|
|
2304
|
+
// HYPERBEAT_API_KEY,
|
|
2305
|
+
// HYPERDASH_API_KEY,
|
|
2306
|
+
// BASED_API_KEY,
|
|
2307
2307
|
]
|
|
2308
2308
|
}
|
|
2309
2309
|
],
|
|
@@ -2613,28 +2613,6 @@ var flagConfig = {
|
|
|
2613
2613
|
],
|
|
2614
2614
|
value: true
|
|
2615
2615
|
},
|
|
2616
|
-
{
|
|
2617
|
-
if_all: [
|
|
2618
|
-
{
|
|
2619
|
-
key: "userId",
|
|
2620
|
-
type: "pctRollout",
|
|
2621
|
-
pct: 50
|
|
2622
|
-
},
|
|
2623
|
-
{
|
|
2624
|
-
key: "apiKey",
|
|
2625
|
-
type: "isAnyOf",
|
|
2626
|
-
values: [POLYMARKET_API_KEY2]
|
|
2627
|
-
}
|
|
2628
|
-
],
|
|
2629
|
-
if_any: [
|
|
2630
|
-
{
|
|
2631
|
-
key: "userId",
|
|
2632
|
-
type: "pctRollout",
|
|
2633
|
-
pct: 0
|
|
2634
|
-
}
|
|
2635
|
-
],
|
|
2636
|
-
value: true
|
|
2637
|
-
},
|
|
2638
2616
|
{
|
|
2639
2617
|
if_any: [
|
|
2640
2618
|
{
|
|
@@ -2646,7 +2624,8 @@ var flagConfig = {
|
|
|
2646
2624
|
HYPERBEAT_API_KEY2,
|
|
2647
2625
|
HYPERDASH_API_KEY,
|
|
2648
2626
|
BASED_API_KEY,
|
|
2649
|
-
OSTIUM_API_KEY2
|
|
2627
|
+
OSTIUM_API_KEY2,
|
|
2628
|
+
POLYMARKET_API_KEY2
|
|
2650
2629
|
]
|
|
2651
2630
|
}
|
|
2652
2631
|
],
|
|
@@ -2957,6 +2936,26 @@ var isCountryBlocked = (blockedList, userIpInfo) => {
|
|
|
2957
2936
|
});
|
|
2958
2937
|
return isBlocked;
|
|
2959
2938
|
};
|
|
2939
|
+
async function getIpViaMoonpay(moonpayApiKey) {
|
|
2940
|
+
const url = `https://api.moonpay.com/v3/ip_address?apiKey=${moonpayApiKey}`;
|
|
2941
|
+
const response = await fetch(url);
|
|
2942
|
+
if (!response.ok) {
|
|
2943
|
+
throw Error(response.statusText);
|
|
2944
|
+
}
|
|
2945
|
+
const data = await response.json();
|
|
2946
|
+
logger.info("getUserIpViaMoonpay:done");
|
|
2947
|
+
return data;
|
|
2948
|
+
}
|
|
2949
|
+
async function getIpViaIpApi() {
|
|
2950
|
+
const url = "https://ipapi.co/json";
|
|
2951
|
+
const response = await fetch(url);
|
|
2952
|
+
if (!response.ok) {
|
|
2953
|
+
throw Error(response.statusText);
|
|
2954
|
+
}
|
|
2955
|
+
const data = await response.json();
|
|
2956
|
+
logger.info("getUserIpViaIpApi:done");
|
|
2957
|
+
return data;
|
|
2958
|
+
}
|
|
2960
2959
|
function useFunkitUserIp() {
|
|
2961
2960
|
const { moonpayApiKey } = useContext7(FunkitMoonpayContext);
|
|
2962
2961
|
const { getFlag, isLoading: isLoadingFlags } = useFlags();
|
|
@@ -2967,17 +2966,23 @@ function useFunkitUserIp() {
|
|
|
2967
2966
|
queryKey: ["getUserIpInfo"],
|
|
2968
2967
|
queryFn: async () => {
|
|
2969
2968
|
try {
|
|
2970
|
-
const
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
}
|
|
2975
|
-
const data = await response.json();
|
|
2976
|
-
logger.info("getUserIpViaMoonpay:done");
|
|
2977
|
-
return data;
|
|
2969
|
+
const moonpayIpData = await getIpViaMoonpay(moonpayApiKey);
|
|
2970
|
+
return {
|
|
2971
|
+
alpha2: moonpayIpData.alpha2,
|
|
2972
|
+
state: moonpayIpData.state
|
|
2973
|
+
};
|
|
2978
2974
|
} catch (error) {
|
|
2979
2975
|
logger.error("getUserIpViaMoonpay:error", error);
|
|
2980
|
-
|
|
2976
|
+
try {
|
|
2977
|
+
const ipApiData = await getIpViaIpApi();
|
|
2978
|
+
return {
|
|
2979
|
+
alpha2: ipApiData.country_code,
|
|
2980
|
+
state: ipApiData.region_code
|
|
2981
|
+
};
|
|
2982
|
+
} catch (ipApiError) {
|
|
2983
|
+
logger.error("getUserIpViaIpApi:error", ipApiError);
|
|
2984
|
+
throw ipApiError;
|
|
2985
|
+
}
|
|
2981
2986
|
}
|
|
2982
2987
|
},
|
|
2983
2988
|
enabled: !!moonpayApiKey,
|
|
@@ -23718,7 +23723,7 @@ function TransferToken({
|
|
|
23718
23723
|
size: "12"
|
|
23719
23724
|
}
|
|
23720
23725
|
)
|
|
23721
|
-
), isLoadingDepositAddress ? /* @__PURE__ */ React163.createElement(FunSkeletonBlock, { height: "66", width: "full" }) : /* @__PURE__ */ React163.createElement(CopyInputDisplayedAddress, { address: depositAddress })),
|
|
23726
|
+
), isLoadingDepositAddress ? /* @__PURE__ */ React163.createElement(FunSkeletonBlock, { height: "66", width: "full" }) : /* @__PURE__ */ React163.createElement(CopyInputDisplayedAddress, { address: depositAddress })), blockchain === "bitcoin" && /* @__PURE__ */ React163.createElement(
|
|
23722
23727
|
InfoBanner,
|
|
23723
23728
|
{
|
|
23724
23729
|
message: "Bitcoin deposits might take up to 30 minutes to complete.",
|
|
@@ -31297,7 +31302,7 @@ function setFunkitConnectVersion({ version }) {
|
|
|
31297
31302
|
localStorage.setItem(storageKey5, version);
|
|
31298
31303
|
}
|
|
31299
31304
|
function getCurrentSdkVersion() {
|
|
31300
|
-
return "6.12.
|
|
31305
|
+
return "6.12.3";
|
|
31301
31306
|
}
|
|
31302
31307
|
function useFingerprint() {
|
|
31303
31308
|
const fingerprint = useCallback50(() => {
|
|
@@ -6,6 +6,7 @@ export declare function FunkitMoonpayProvider({ children, debug, }: {
|
|
|
6
6
|
export interface UserIpInfoFromMoonpay {
|
|
7
7
|
/** https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 */
|
|
8
8
|
alpha2: 'AU' | 'CA' | 'US' | string;
|
|
9
|
+
state: string;
|
|
9
10
|
alpha3: string;
|
|
10
11
|
country: string;
|
|
11
12
|
ipAddress: string;
|
|
@@ -15,10 +16,13 @@ export interface UserIpInfoFromMoonpay {
|
|
|
15
16
|
isSellAllowed: boolean;
|
|
16
17
|
isBalanceLedgerWithdrawAllowed: boolean;
|
|
17
18
|
isLowLimitEnabled: boolean;
|
|
19
|
+
}
|
|
20
|
+
export interface FunkitUserIpInfo {
|
|
21
|
+
alpha2: string;
|
|
18
22
|
state: string;
|
|
19
23
|
}
|
|
20
24
|
export declare function useFunkitUserIp(): {
|
|
21
25
|
isLoadingGeoCheck: boolean;
|
|
22
26
|
isUserGeoblocked: boolean;
|
|
23
|
-
userIpInfo:
|
|
27
|
+
userIpInfo: FunkitUserIpInfo | undefined;
|
|
24
28
|
};
|
|
@@ -64,7 +64,7 @@ export declare const flagConfig: {
|
|
|
64
64
|
readonly if_any: [{
|
|
65
65
|
readonly key: "apiKey";
|
|
66
66
|
readonly type: "isAnyOf";
|
|
67
|
-
readonly values: ["Z9SZaOwpmE40KX61mUKWm5hrpGh7WHVkaTvQJpQk", "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN"
|
|
67
|
+
readonly values: ["Z9SZaOwpmE40KX61mUKWm5hrpGh7WHVkaTvQJpQk", "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN"];
|
|
68
68
|
}];
|
|
69
69
|
readonly value: true;
|
|
70
70
|
}];
|
|
@@ -206,27 +206,11 @@ export declare const flagConfig: {
|
|
|
206
206
|
readonly values: ["0x6ec0c2f25d323e7779925Cc20c3740101f990d9F", "0xbeFE12aA8cBa36DD79F50eE5E23828adB62f2FD6", "0x2A8Bd916E85d98d8175258De99fc0ddbcC102eF6", "0xda6b07Eb94f699F511a943e9bFC12B64B7fe3486", "0x0D6e43CA32545B3dc2FE6f93AafBD7e640F548d4", "0x236c60C57a8B9ca563Fb0dA5199FDdCB686d91E8", "0x4a1457fa2845bAfE8D3909cA3C5ac6107be312Dd", "0xfCB8B2d294eD7373B3B590dd7C0CBC430d41a9a0", "0x9CB7F86F360459cC96C74a0F81aF2C4cC7a54bd2", "0xbC805309dde14dFC14f91f7D4Cb9972Ecc915D39", "0xbD31535c457298E0b77AC8EA25DfE3A9BE165cBf", "0xA7B7D4caC72EeE278Af02121E4b2b782A89AD6f9"];
|
|
207
207
|
}];
|
|
208
208
|
readonly value: true;
|
|
209
|
-
}, {
|
|
210
|
-
readonly if_all: [{
|
|
211
|
-
readonly key: "userId";
|
|
212
|
-
readonly type: "pctRollout";
|
|
213
|
-
readonly pct: 50;
|
|
214
|
-
}, {
|
|
215
|
-
readonly key: "apiKey";
|
|
216
|
-
readonly type: "isAnyOf";
|
|
217
|
-
readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6"];
|
|
218
|
-
}];
|
|
219
|
-
readonly if_any: [{
|
|
220
|
-
readonly key: "userId";
|
|
221
|
-
readonly type: "pctRollout";
|
|
222
|
-
readonly pct: 0;
|
|
223
|
-
}];
|
|
224
|
-
readonly value: true;
|
|
225
209
|
}, {
|
|
226
210
|
readonly if_any: [{
|
|
227
211
|
readonly key: "apiKey";
|
|
228
212
|
readonly type: "isAnyOf";
|
|
229
|
-
readonly values: ["HKHvPSPDezaxsTohFgDuG4WpKW6hB4SFYyztm9vc", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN"];
|
|
213
|
+
readonly values: ["HKHvPSPDezaxsTohFgDuG4WpKW6hB4SFYyztm9vc", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6"];
|
|
230
214
|
}];
|
|
231
215
|
readonly value: true;
|
|
232
216
|
}, {
|
|
@@ -1,153 +1,153 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import {
|
|
6
|
-
walletConnectWallet
|
|
7
|
-
} from "./chunk-NP5QGWNL.js";
|
|
3
|
+
xdefiWallet
|
|
4
|
+
} from "./chunk-BOU4WKRZ.js";
|
|
8
5
|
import {
|
|
9
6
|
zerionWallet
|
|
10
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-Q3H3TRBS.js";
|
|
8
|
+
import {
|
|
9
|
+
zealWallet
|
|
10
|
+
} from "./chunk-RNBEDQHF.js";
|
|
11
11
|
import {
|
|
12
12
|
tahoWallet
|
|
13
13
|
} from "./chunk-ZZZRUXZE.js";
|
|
14
|
-
import {
|
|
15
|
-
safepalWallet
|
|
16
|
-
} from "./chunk-NT2HYJKW.js";
|
|
17
14
|
import {
|
|
18
15
|
subWallet
|
|
19
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-ZSI5N4VV.js";
|
|
20
17
|
import {
|
|
21
|
-
|
|
22
|
-
} from "./chunk-
|
|
18
|
+
talismanWallet
|
|
19
|
+
} from "./chunk-DRO6WYMM.js";
|
|
23
20
|
import {
|
|
24
21
|
tokenPocketWallet
|
|
25
|
-
} from "./chunk-
|
|
26
|
-
import {
|
|
27
|
-
xdefiWallet
|
|
28
|
-
} from "./chunk-BOU4WKRZ.js";
|
|
22
|
+
} from "./chunk-J3LI3FYZ.js";
|
|
29
23
|
import {
|
|
30
24
|
trustWallet
|
|
31
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-RKPCWHXL.js";
|
|
26
|
+
import {
|
|
27
|
+
tokenaryWallet
|
|
28
|
+
} from "./chunk-D6AOOO5F.js";
|
|
32
29
|
import {
|
|
33
30
|
uniswapWallet
|
|
34
31
|
} from "./chunk-LH7BMNFZ.js";
|
|
35
32
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
33
|
+
walletConnectWallet
|
|
34
|
+
} from "./chunk-NP5QGWNL.js";
|
|
38
35
|
import {
|
|
39
36
|
phantomWallet
|
|
40
37
|
} from "./chunk-362NXNTM.js";
|
|
38
|
+
import {
|
|
39
|
+
rabbyWallet
|
|
40
|
+
} from "./chunk-BBOM42DL.js";
|
|
41
41
|
import {
|
|
42
42
|
rainbowWallet
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-3CICVJUN.js";
|
|
44
44
|
import {
|
|
45
45
|
ramperWallet
|
|
46
46
|
} from "./chunk-BYXPFMI7.js";
|
|
47
47
|
import {
|
|
48
48
|
roninWallet
|
|
49
|
-
} from "./chunk-
|
|
50
|
-
import {
|
|
51
|
-
safeheronWallet
|
|
52
|
-
} from "./chunk-RZIO5TFF.js";
|
|
49
|
+
} from "./chunk-QLVVUKYB.js";
|
|
53
50
|
import {
|
|
54
51
|
safeWallet
|
|
55
52
|
} from "./chunk-BQQQL6UD.js";
|
|
56
53
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
54
|
+
safeheronWallet
|
|
55
|
+
} from "./chunk-RZIO5TFF.js";
|
|
59
56
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
57
|
+
safepalWallet
|
|
58
|
+
} from "./chunk-EC6CHBSZ.js";
|
|
62
59
|
import {
|
|
63
60
|
ledgerWallet
|
|
64
61
|
} from "./chunk-BRBKM4PW.js";
|
|
62
|
+
import {
|
|
63
|
+
metaMaskWallet
|
|
64
|
+
} from "./chunk-UYGJO62F.js";
|
|
65
65
|
import {
|
|
66
66
|
mewWallet
|
|
67
67
|
} from "./chunk-OL5ZO7E4.js";
|
|
68
|
-
import {
|
|
69
|
-
omniWallet
|
|
70
|
-
} from "./chunk-7CUY5G6R.js";
|
|
71
68
|
import {
|
|
72
69
|
oktoWallet
|
|
73
70
|
} from "./chunk-ADIXAKUL.js";
|
|
74
71
|
import {
|
|
75
72
|
okxWallet
|
|
76
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-AFXHGWBH.js";
|
|
77
74
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
75
|
+
omniWallet
|
|
76
|
+
} from "./chunk-7CUY5G6R.js";
|
|
80
77
|
import {
|
|
81
78
|
oneInchWallet
|
|
82
79
|
} from "./chunk-OESTDX6I.js";
|
|
83
80
|
import {
|
|
84
|
-
|
|
85
|
-
} from "./chunk-
|
|
81
|
+
oneKeyWallet
|
|
82
|
+
} from "./chunk-SHBUZ7U7.js";
|
|
83
|
+
import {
|
|
84
|
+
foxWallet
|
|
85
|
+
} from "./chunk-CNPKISHN.js";
|
|
86
86
|
import {
|
|
87
87
|
frameWallet
|
|
88
88
|
} from "./chunk-IFON7E6U.js";
|
|
89
89
|
import {
|
|
90
90
|
frontierWallet
|
|
91
|
-
} from "./chunk-
|
|
91
|
+
} from "./chunk-VWCLFMWJ.js";
|
|
92
|
+
import {
|
|
93
|
+
gateWallet
|
|
94
|
+
} from "./chunk-CJGUM55H.js";
|
|
92
95
|
import {
|
|
93
96
|
imTokenWallet
|
|
94
97
|
} from "./chunk-COZ7MIQS.js";
|
|
95
|
-
import {
|
|
96
|
-
gateWallet
|
|
97
|
-
} from "./chunk-FKJJQNKX.js";
|
|
98
98
|
import {
|
|
99
99
|
injectedWallet
|
|
100
100
|
} from "./chunk-XWUJE7MW.js";
|
|
101
101
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
102
|
+
kresusWallet
|
|
103
|
+
} from "./chunk-MJXPRJZT.js";
|
|
104
104
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
105
|
+
bybitWallet
|
|
106
|
+
} from "./chunk-LNEC5RNX.js";
|
|
107
107
|
import {
|
|
108
108
|
clvWallet
|
|
109
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-2GJQ4XZQ.js";
|
|
110
|
+
import {
|
|
111
|
+
coin98Wallet
|
|
112
|
+
} from "./chunk-KIDC67XJ.js";
|
|
110
113
|
import {
|
|
111
114
|
coinbaseWallet
|
|
112
115
|
} from "./chunk-H4IRCEZN.js";
|
|
113
|
-
import {
|
|
114
|
-
bybitWallet
|
|
115
|
-
} from "./chunk-2STUC6QL.js";
|
|
116
|
-
import {
|
|
117
|
-
coreWallet
|
|
118
|
-
} from "./chunk-VR4TBQ6S.js";
|
|
119
|
-
import {
|
|
120
|
-
foxWallet
|
|
121
|
-
} from "./chunk-7QONTUXT.js";
|
|
122
116
|
import {
|
|
123
117
|
dawnWallet
|
|
124
118
|
} from "./chunk-HWPKCIBE.js";
|
|
119
|
+
import {
|
|
120
|
+
coreWallet
|
|
121
|
+
} from "./chunk-JCHN6A47.js";
|
|
125
122
|
import {
|
|
126
123
|
desigWallet
|
|
127
124
|
} from "./chunk-OPAZMNA7.js";
|
|
125
|
+
import {
|
|
126
|
+
enkryptWallet
|
|
127
|
+
} from "./chunk-OLOIXTYS.js";
|
|
128
128
|
import {
|
|
129
129
|
argentWallet
|
|
130
130
|
} from "./chunk-WSQ2YJO2.js";
|
|
131
131
|
import {
|
|
132
132
|
bifrostWallet
|
|
133
|
-
} from "./chunk-
|
|
133
|
+
} from "./chunk-UIASLGLV.js";
|
|
134
134
|
import {
|
|
135
135
|
bitgetWallet
|
|
136
|
-
} from "./chunk-
|
|
136
|
+
} from "./chunk-5W7VDOCL.js";
|
|
137
137
|
import {
|
|
138
138
|
bitskiWallet
|
|
139
139
|
} from "./chunk-HS3C7OQV.js";
|
|
140
140
|
import {
|
|
141
141
|
bitverseWallet
|
|
142
142
|
} from "./chunk-3HZRRP4Y.js";
|
|
143
|
-
import {
|
|
144
|
-
bloomWallet
|
|
145
|
-
} from "./chunk-S27IADFU.js";
|
|
146
|
-
import "./chunk-23WIEY36.js";
|
|
147
143
|
import {
|
|
148
144
|
braveWallet
|
|
149
145
|
} from "./chunk-BPZ2XJO2.js";
|
|
150
146
|
import "./chunk-DNSG5Q7V.js";
|
|
147
|
+
import {
|
|
148
|
+
bloomWallet
|
|
149
|
+
} from "./chunk-S27IADFU.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": "6.12.
|
|
3
|
+
"version": "6.12.3",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
"ua-parser-js": "^1.0.37",
|
|
93
93
|
"use-debounce": "^10.0.5",
|
|
94
94
|
"uuid": "^9.0.1",
|
|
95
|
+
"@funkit/fun-relay": "2.0.2",
|
|
95
96
|
"@funkit/api-base": "1.12.1",
|
|
96
97
|
"@funkit/chains": "0.4.0",
|
|
98
|
+
"@funkit/wagmi-tools": "3.0.69",
|
|
97
99
|
"@funkit/utils": "1.1.9",
|
|
98
|
-
"@funkit/
|
|
99
|
-
"@funkit/core": "2.3.46",
|
|
100
|
-
"@funkit/wagmi-tools": "3.0.68"
|
|
100
|
+
"@funkit/core": "2.3.46"
|
|
101
101
|
},
|
|
102
102
|
"repository": {
|
|
103
103
|
"type": "git",
|