@funkit/connect 6.14.11 → 6.14.13
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 +44 -0
- package/dist/components/FunPayments/FunPaymentMethods.d.ts +11 -2
- package/dist/components/FunSelectBrokerage/FunBrokerageItem.css.d.ts +1 -0
- package/dist/components/FunSelectBrokerage/FunBrokerageItem.d.ts +8 -0
- package/dist/components/FunSelectBrokerage/FunSelectBrokerage.d.ts +9 -0
- package/dist/consts/bluvo.d.ts +37 -0
- package/dist/consts/customers.d.ts +1 -0
- package/dist/domains/asset.d.ts +2 -2
- package/dist/domains/fees.d.ts +5 -6
- package/dist/domains/paymentMethods.d.ts +10 -2
- package/dist/domains/quote.d.ts +2 -1
- package/dist/domains/wallet.d.ts +6 -2
- package/dist/hooks/track/CheckoutModalEvent.d.ts +30 -0
- package/dist/hooks/track/WithdrawModalEvent.d.ts +4 -1
- package/dist/hooks/track/useTrack.d.ts +1 -27
- package/dist/hooks/useBluvo.d.ts +225 -0
- package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
- package/dist/hooks/usePaymentSources.d.ts +1 -0
- package/dist/hooks/useTokenTransfer.d.ts +11 -0
- package/dist/index.css +32 -24
- package/dist/index.js +6899 -4955
- package/dist/modals/CheckoutModal/Brokerage/SelectBrokerage.d.ts +14 -0
- package/dist/modals/CheckoutModal/ConnectExchange.d.ts +12 -0
- package/dist/modals/CheckoutModal/FunCheckoutStep.d.ts +4 -1
- package/dist/modals/CheckoutModal/InputAmount/state.d.ts +3 -3
- package/dist/modals/CheckoutModal/InputAmount/utils.d.ts +2 -2
- package/dist/modals/CheckoutModal/MeshVerification.d.ts +48 -0
- package/dist/modals/CheckoutModal/SelectAsset.d.ts +4 -0
- package/dist/modals/CheckoutModal/TransferToken/CheckoutNotifications.track.d.ts +1 -1
- package/dist/modals/CheckoutModal/stepTransition.d.ts +11 -0
- package/dist/modals/CheckoutModal/stepTransition.track.d.ts +1 -1
- package/dist/providers/FunkitBrokerageProvider.d.ts +16 -0
- package/dist/providers/FunkitCheckoutContext.track.d.ts +4 -3
- package/dist/providers/FunkitConfigContext.d.ts +1 -0
- package/dist/providers/FunkitQuoteContext.track.d.ts +4 -2
- package/dist/utils/bluvo.d.ts +31 -0
- package/dist/utils/checkout.d.ts +2 -2
- package/dist/utils/flags/config.d.ts +62 -14
- 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 +47 -47
- 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 +9 -7
|
@@ -1,28 +1,25 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
walletConnectWallet
|
|
4
|
+
} from "./chunk-NP5QGWNL.js";
|
|
2
5
|
import {
|
|
3
6
|
xdefiWallet
|
|
4
7
|
} from "./chunk-BOU4WKRZ.js";
|
|
5
|
-
import {
|
|
6
|
-
zealWallet
|
|
7
|
-
} from "./chunk-RNBEDQHF.js";
|
|
8
8
|
import {
|
|
9
9
|
zerionWallet
|
|
10
|
-
} from "./chunk-
|
|
11
|
-
import {
|
|
12
|
-
subWallet
|
|
13
|
-
} from "./chunk-ZSI5N4VV.js";
|
|
10
|
+
} from "./chunk-SULRQO27.js";
|
|
14
11
|
import {
|
|
15
12
|
tahoWallet
|
|
16
13
|
} from "./chunk-ZZZRUXZE.js";
|
|
14
|
+
import {
|
|
15
|
+
subWallet
|
|
16
|
+
} from "./chunk-JWFF4AAL.js";
|
|
17
17
|
import {
|
|
18
18
|
talismanWallet
|
|
19
19
|
} from "./chunk-DRO6WYMM.js";
|
|
20
20
|
import {
|
|
21
21
|
tokenPocketWallet
|
|
22
|
-
} from "./chunk-
|
|
23
|
-
import {
|
|
24
|
-
trustWallet
|
|
25
|
-
} from "./chunk-RKPCWHXL.js";
|
|
22
|
+
} from "./chunk-2L43XSW3.js";
|
|
26
23
|
import {
|
|
27
24
|
tokenaryWallet
|
|
28
25
|
} from "./chunk-D6AOOO5F.js";
|
|
@@ -30,23 +27,26 @@ import {
|
|
|
30
27
|
uniswapWallet
|
|
31
28
|
} from "./chunk-LH7BMNFZ.js";
|
|
32
29
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
30
|
+
trustWallet
|
|
31
|
+
} from "./chunk-VYBAYMP3.js";
|
|
32
|
+
import {
|
|
33
|
+
zealWallet
|
|
34
|
+
} from "./chunk-RNBEDQHF.js";
|
|
35
35
|
import {
|
|
36
36
|
phantomWallet
|
|
37
37
|
} from "./chunk-362NXNTM.js";
|
|
38
|
+
import {
|
|
39
|
+
rainbowWallet
|
|
40
|
+
} from "./chunk-2KUBG3S6.js";
|
|
38
41
|
import {
|
|
39
42
|
rabbyWallet
|
|
40
43
|
} from "./chunk-BBOM42DL.js";
|
|
41
44
|
import {
|
|
42
|
-
|
|
43
|
-
} from "./chunk-
|
|
45
|
+
roninWallet
|
|
46
|
+
} from "./chunk-NWIQNBJU.js";
|
|
44
47
|
import {
|
|
45
48
|
ramperWallet
|
|
46
49
|
} from "./chunk-BYXPFMI7.js";
|
|
47
|
-
import {
|
|
48
|
-
roninWallet
|
|
49
|
-
} from "./chunk-QLVVUKYB.js";
|
|
50
50
|
import {
|
|
51
51
|
safeWallet
|
|
52
52
|
} from "./chunk-BQQQL6UD.js";
|
|
@@ -55,25 +55,25 @@ import {
|
|
|
55
55
|
} from "./chunk-RZIO5TFF.js";
|
|
56
56
|
import {
|
|
57
57
|
safepalWallet
|
|
58
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-NT2HYJKW.js";
|
|
59
59
|
import {
|
|
60
60
|
ledgerWallet
|
|
61
61
|
} from "./chunk-BRBKM4PW.js";
|
|
62
62
|
import {
|
|
63
63
|
metaMaskWallet
|
|
64
|
-
} from "./chunk-
|
|
64
|
+
} from "./chunk-2HYNUNAS.js";
|
|
65
65
|
import {
|
|
66
66
|
mewWallet
|
|
67
67
|
} from "./chunk-OL5ZO7E4.js";
|
|
68
|
-
import {
|
|
69
|
-
oktoWallet
|
|
70
|
-
} from "./chunk-ADIXAKUL.js";
|
|
71
68
|
import {
|
|
72
69
|
okxWallet
|
|
73
|
-
} from "./chunk-
|
|
70
|
+
} from "./chunk-TDIEHTMB.js";
|
|
74
71
|
import {
|
|
75
72
|
omniWallet
|
|
76
73
|
} from "./chunk-7CUY5G6R.js";
|
|
74
|
+
import {
|
|
75
|
+
oktoWallet
|
|
76
|
+
} from "./chunk-ADIXAKUL.js";
|
|
77
77
|
import {
|
|
78
78
|
oneInchWallet
|
|
79
79
|
} from "./chunk-OESTDX6I.js";
|
|
@@ -82,16 +82,16 @@ import {
|
|
|
82
82
|
} from "./chunk-SHBUZ7U7.js";
|
|
83
83
|
import {
|
|
84
84
|
foxWallet
|
|
85
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-7QONTUXT.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-TCAGNB4B.js";
|
|
92
92
|
import {
|
|
93
93
|
gateWallet
|
|
94
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-FKJJQNKX.js";
|
|
95
95
|
import {
|
|
96
96
|
imTokenWallet
|
|
97
97
|
} from "./chunk-COZ7MIQS.js";
|
|
@@ -101,53 +101,53 @@ import {
|
|
|
101
101
|
import {
|
|
102
102
|
kresusWallet
|
|
103
103
|
} from "./chunk-MJXPRJZT.js";
|
|
104
|
-
import {
|
|
105
|
-
bybitWallet
|
|
106
|
-
} from "./chunk-LNEC5RNX.js";
|
|
107
104
|
import {
|
|
108
105
|
clvWallet
|
|
109
|
-
} from "./chunk-
|
|
110
|
-
import {
|
|
111
|
-
coinbaseWallet
|
|
112
|
-
} from "./chunk-H4IRCEZN.js";
|
|
106
|
+
} from "./chunk-M3NZ6R2E.js";
|
|
113
107
|
import {
|
|
114
108
|
coin98Wallet
|
|
115
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-OBOVHCEI.js";
|
|
110
|
+
import {
|
|
111
|
+
bloomWallet
|
|
112
|
+
} from "./chunk-S27IADFU.js";
|
|
116
113
|
import {
|
|
117
114
|
coreWallet
|
|
118
|
-
} from "./chunk-
|
|
115
|
+
} from "./chunk-VR4TBQ6S.js";
|
|
119
116
|
import {
|
|
120
117
|
dawnWallet
|
|
121
118
|
} from "./chunk-HWPKCIBE.js";
|
|
119
|
+
import {
|
|
120
|
+
enkryptWallet
|
|
121
|
+
} from "./chunk-OLOIXTYS.js";
|
|
122
122
|
import {
|
|
123
123
|
desigWallet
|
|
124
124
|
} from "./chunk-OPAZMNA7.js";
|
|
125
125
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
126
|
+
coinbaseWallet
|
|
127
|
+
} from "./chunk-H4IRCEZN.js";
|
|
128
128
|
import {
|
|
129
129
|
argentWallet
|
|
130
130
|
} from "./chunk-WSQ2YJO2.js";
|
|
131
|
+
import {
|
|
132
|
+
bifrostWallet
|
|
133
|
+
} from "./chunk-A5N6B5UW.js";
|
|
131
134
|
import {
|
|
132
135
|
bitskiWallet
|
|
133
136
|
} from "./chunk-HS3C7OQV.js";
|
|
134
137
|
import {
|
|
135
|
-
|
|
136
|
-
} from "./chunk-
|
|
138
|
+
bitverseWallet
|
|
139
|
+
} from "./chunk-3HZRRP4Y.js";
|
|
137
140
|
import {
|
|
138
141
|
bitgetWallet
|
|
139
|
-
} from "./chunk-
|
|
142
|
+
} from "./chunk-TDAVGY5F.js";
|
|
140
143
|
import {
|
|
141
|
-
|
|
142
|
-
} from "./chunk-
|
|
144
|
+
bybitWallet
|
|
145
|
+
} from "./chunk-2STUC6QL.js";
|
|
146
|
+
import "./chunk-23WIEY36.js";
|
|
143
147
|
import {
|
|
144
148
|
braveWallet
|
|
145
149
|
} from "./chunk-BPZ2XJO2.js";
|
|
146
150
|
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.14.
|
|
3
|
+
"version": "6.14.13",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -73,6 +73,8 @@
|
|
|
73
73
|
"vitest": "^3.0.9"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
+
"@bluvo/react": "2.0.7",
|
|
77
|
+
"@bluvo/sdk-ts": "2.0.7",
|
|
76
78
|
"@datadog/browser-logs": "5.22.0",
|
|
77
79
|
"@moonpay/moonpay-react": "^1.6.1",
|
|
78
80
|
"@number-flow/react": "^0.5.5",
|
|
@@ -93,12 +95,12 @@
|
|
|
93
95
|
"ua-parser-js": "^1.0.37",
|
|
94
96
|
"use-debounce": "^10.0.5",
|
|
95
97
|
"uuid": "^9.0.1",
|
|
96
|
-
"@funkit/api-base": "1.12.
|
|
97
|
-
"@funkit/
|
|
98
|
-
"@funkit/
|
|
99
|
-
"@funkit/
|
|
100
|
-
"@funkit/
|
|
101
|
-
"@funkit/
|
|
98
|
+
"@funkit/api-base": "1.12.11",
|
|
99
|
+
"@funkit/utils": "1.1.14",
|
|
100
|
+
"@funkit/fun-relay": "2.1.3",
|
|
101
|
+
"@funkit/wagmi-tools": "3.0.79",
|
|
102
|
+
"@funkit/core": "2.3.56",
|
|
103
|
+
"@funkit/chains": "0.4.2"
|
|
102
104
|
},
|
|
103
105
|
"repository": {
|
|
104
106
|
"type": "git",
|