@funkit/connect 6.14.9-next.0 → 6.14.9
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 -5
- package/dist/index.js +3 -3
- 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 +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,27 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
-
## 6.14.9
|
|
3
|
+
## 6.14.9
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 4d52e42: fix: add fallback bridge bank account to prevent SEPA error
|
|
8
8
|
- 157aa94: feat(connect): added tracking for navigaton and modal open/close events in checkout modal
|
|
9
|
+
- 04438fa: fix no divider bug
|
|
9
10
|
- 0a14ab9: feat(connect): implement feature flag for hiding non wallet options
|
|
10
11
|
- d8e25ba: feat(connect): tracking for checkout completion in wallet balance flow + quote tracking
|
|
11
12
|
- 8891f56: feat(connect): add user metadata tracking to statsig
|
|
12
13
|
- 27c1bdb: feat(connect): tracking for QR Code flow completion events (success::token_transfer)
|
|
13
14
|
- 613a8eb: chore(connect): statsig initial setup
|
|
15
|
+
- Updated dependencies [5d8c791]
|
|
14
16
|
- Updated dependencies [4d52e42]
|
|
15
17
|
- Updated dependencies [613a8eb]
|
|
16
|
-
|
|
17
|
-
- @funkit/
|
|
18
|
-
- @funkit/
|
|
19
|
-
- @funkit/
|
|
18
|
+
- Updated dependencies [f92238c]
|
|
19
|
+
- @funkit/fun-relay@2.1.1
|
|
20
|
+
- @funkit/api-base@1.12.8
|
|
21
|
+
- @funkit/utils@1.1.13
|
|
22
|
+
- @funkit/chains@0.4.2
|
|
23
|
+
- @funkit/core@2.3.53
|
|
24
|
+
- @funkit/wagmi-tools@3.0.76
|
|
20
25
|
|
|
21
26
|
## 6.14.8
|
|
22
27
|
|
package/dist/index.js
CHANGED
|
@@ -1528,7 +1528,7 @@ function setFunkitConnectVersion({ version }) {
|
|
|
1528
1528
|
localStorage.setItem(storageKey, version);
|
|
1529
1529
|
}
|
|
1530
1530
|
function getCurrentSdkVersion() {
|
|
1531
|
-
return "6.14.9
|
|
1531
|
+
return "6.14.9";
|
|
1532
1532
|
}
|
|
1533
1533
|
function useFingerprint() {
|
|
1534
1534
|
const fingerprint = useCallback2(() => {
|
|
@@ -27588,7 +27588,7 @@ var PaymentRouteSummary = ({
|
|
|
27588
27588
|
isWithdrawal
|
|
27589
27589
|
}
|
|
27590
27590
|
);
|
|
27591
|
-
const destinationComponent = customDestinationConfig && /* @__PURE__ */ React195.createElement(
|
|
27591
|
+
const destinationComponent = (!isSameDestination || customDestinationConfig) && /* @__PURE__ */ React195.createElement(
|
|
27592
27592
|
PaymentDestination,
|
|
27593
27593
|
{
|
|
27594
27594
|
destinationConfig: customDestinationConfig,
|
|
@@ -27598,7 +27598,7 @@ var PaymentRouteSummary = ({
|
|
|
27598
27598
|
}
|
|
27599
27599
|
);
|
|
27600
27600
|
const [firstComponent, secondComponent] = isWithdrawal ? [destinationComponent, sourceComponent] : [sourceComponent, destinationComponent];
|
|
27601
|
-
return /* @__PURE__ */ React195.createElement(React195.Fragment, null, firstComponent, firstComponent && secondComponent &&
|
|
27601
|
+
return /* @__PURE__ */ React195.createElement(React195.Fragment, null, firstComponent, firstComponent && secondComponent && /* @__PURE__ */ React195.createElement(FunDivider, { marginTop: "12", marginBottom: "12" }), secondComponent);
|
|
27602
27602
|
};
|
|
27603
27603
|
var PaymentRouteSummarySkeletonLoader = () => /* @__PURE__ */ React195.createElement(
|
|
27604
27604
|
Box,
|
|
@@ -1,73 +1,76 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
} from "./chunk-
|
|
3
|
+
zealWallet
|
|
4
|
+
} from "./chunk-RNBEDQHF.js";
|
|
5
5
|
import {
|
|
6
6
|
xdefiWallet
|
|
7
7
|
} from "./chunk-BOU4WKRZ.js";
|
|
8
8
|
import {
|
|
9
9
|
zerionWallet
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-SULRQO27.js";
|
|
11
11
|
import {
|
|
12
12
|
subWallet
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-JWFF4AAL.js";
|
|
14
14
|
import {
|
|
15
15
|
tahoWallet
|
|
16
16
|
} from "./chunk-ZZZRUXZE.js";
|
|
17
|
-
import {
|
|
18
|
-
trustWallet
|
|
19
|
-
} from "./chunk-RKPCWHXL.js";
|
|
20
17
|
import {
|
|
21
18
|
talismanWallet
|
|
22
19
|
} from "./chunk-DRO6WYMM.js";
|
|
20
|
+
import {
|
|
21
|
+
tokenPocketWallet
|
|
22
|
+
} from "./chunk-2L43XSW3.js";
|
|
23
|
+
import {
|
|
24
|
+
trustWallet
|
|
25
|
+
} from "./chunk-VYBAYMP3.js";
|
|
23
26
|
import {
|
|
24
27
|
uniswapWallet
|
|
25
28
|
} from "./chunk-LH7BMNFZ.js";
|
|
26
29
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
30
|
+
tokenaryWallet
|
|
31
|
+
} from "./chunk-D6AOOO5F.js";
|
|
29
32
|
import {
|
|
30
33
|
walletConnectWallet
|
|
31
34
|
} from "./chunk-NP5QGWNL.js";
|
|
32
|
-
import {
|
|
33
|
-
zealWallet
|
|
34
|
-
} from "./chunk-RNBEDQHF.js";
|
|
35
|
-
import {
|
|
36
|
-
rabbyWallet
|
|
37
|
-
} from "./chunk-BBOM42DL.js";
|
|
38
|
-
import {
|
|
39
|
-
rainbowWallet
|
|
40
|
-
} from "./chunk-3CICVJUN.js";
|
|
41
|
-
import {
|
|
42
|
-
roninWallet
|
|
43
|
-
} from "./chunk-QLVVUKYB.js";
|
|
44
35
|
import {
|
|
45
36
|
phantomWallet
|
|
46
37
|
} from "./chunk-362NXNTM.js";
|
|
38
|
+
import {
|
|
39
|
+
oneKeyWallet
|
|
40
|
+
} from "./chunk-SHBUZ7U7.js";
|
|
47
41
|
import {
|
|
48
42
|
ramperWallet
|
|
49
43
|
} from "./chunk-BYXPFMI7.js";
|
|
44
|
+
import {
|
|
45
|
+
roninWallet
|
|
46
|
+
} from "./chunk-NWIQNBJU.js";
|
|
47
|
+
import {
|
|
48
|
+
rainbowWallet
|
|
49
|
+
} from "./chunk-2KUBG3S6.js";
|
|
50
50
|
import {
|
|
51
51
|
safeWallet
|
|
52
52
|
} from "./chunk-BQQQL6UD.js";
|
|
53
53
|
import {
|
|
54
54
|
safepalWallet
|
|
55
|
-
} from "./chunk-
|
|
55
|
+
} from "./chunk-NT2HYJKW.js";
|
|
56
56
|
import {
|
|
57
57
|
safeheronWallet
|
|
58
58
|
} from "./chunk-RZIO5TFF.js";
|
|
59
59
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
60
|
+
mewWallet
|
|
61
|
+
} from "./chunk-OL5ZO7E4.js";
|
|
62
62
|
import {
|
|
63
63
|
metaMaskWallet
|
|
64
|
-
} from "./chunk-
|
|
64
|
+
} from "./chunk-2HYNUNAS.js";
|
|
65
|
+
import {
|
|
66
|
+
ledgerWallet
|
|
67
|
+
} from "./chunk-BRBKM4PW.js";
|
|
65
68
|
import {
|
|
66
69
|
okxWallet
|
|
67
|
-
} from "./chunk-
|
|
70
|
+
} from "./chunk-TDIEHTMB.js";
|
|
68
71
|
import {
|
|
69
|
-
|
|
70
|
-
} from "./chunk-
|
|
72
|
+
oktoWallet
|
|
73
|
+
} from "./chunk-ADIXAKUL.js";
|
|
71
74
|
import {
|
|
72
75
|
oneInchWallet
|
|
73
76
|
} from "./chunk-OESTDX6I.js";
|
|
@@ -75,79 +78,76 @@ import {
|
|
|
75
78
|
omniWallet
|
|
76
79
|
} from "./chunk-7CUY5G6R.js";
|
|
77
80
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
80
|
-
import {
|
|
81
|
-
oneKeyWallet
|
|
82
|
-
} from "./chunk-SHBUZ7U7.js";
|
|
83
|
-
import {
|
|
84
|
-
foxWallet
|
|
85
|
-
} from "./chunk-CNPKISHN.js";
|
|
81
|
+
rabbyWallet
|
|
82
|
+
} from "./chunk-BBOM42DL.js";
|
|
86
83
|
import {
|
|
87
84
|
frameWallet
|
|
88
85
|
} from "./chunk-IFON7E6U.js";
|
|
86
|
+
import {
|
|
87
|
+
frontierWallet
|
|
88
|
+
} from "./chunk-TCAGNB4B.js";
|
|
89
|
+
import {
|
|
90
|
+
enkryptWallet
|
|
91
|
+
} from "./chunk-OLOIXTYS.js";
|
|
89
92
|
import {
|
|
90
93
|
gateWallet
|
|
91
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-FKJJQNKX.js";
|
|
92
95
|
import {
|
|
93
96
|
imTokenWallet
|
|
94
97
|
} from "./chunk-COZ7MIQS.js";
|
|
95
|
-
import {
|
|
96
|
-
frontierWallet
|
|
97
|
-
} from "./chunk-VWCLFMWJ.js";
|
|
98
98
|
import {
|
|
99
99
|
kresusWallet
|
|
100
100
|
} from "./chunk-MJXPRJZT.js";
|
|
101
101
|
import {
|
|
102
102
|
injectedWallet
|
|
103
103
|
} from "./chunk-XWUJE7MW.js";
|
|
104
|
-
import {
|
|
105
|
-
bybitWallet
|
|
106
|
-
} from "./chunk-LNEC5RNX.js";
|
|
107
|
-
import {
|
|
108
|
-
coinbaseWallet
|
|
109
|
-
} from "./chunk-H4IRCEZN.js";
|
|
110
104
|
import {
|
|
111
105
|
clvWallet
|
|
112
|
-
} from "./chunk-
|
|
106
|
+
} from "./chunk-M3NZ6R2E.js";
|
|
107
|
+
import {
|
|
108
|
+
bybitWallet
|
|
109
|
+
} from "./chunk-2STUC6QL.js";
|
|
113
110
|
import {
|
|
114
111
|
coin98Wallet
|
|
115
|
-
} from "./chunk-
|
|
112
|
+
} from "./chunk-OBOVHCEI.js";
|
|
113
|
+
import {
|
|
114
|
+
coreWallet
|
|
115
|
+
} from "./chunk-VR4TBQ6S.js";
|
|
116
116
|
import {
|
|
117
117
|
dawnWallet
|
|
118
118
|
} from "./chunk-HWPKCIBE.js";
|
|
119
119
|
import {
|
|
120
|
-
|
|
121
|
-
} from "./chunk-
|
|
120
|
+
coinbaseWallet
|
|
121
|
+
} from "./chunk-H4IRCEZN.js";
|
|
122
122
|
import {
|
|
123
123
|
desigWallet
|
|
124
124
|
} from "./chunk-OPAZMNA7.js";
|
|
125
125
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
126
|
+
foxWallet
|
|
127
|
+
} from "./chunk-7QONTUXT.js";
|
|
128
|
+
import {
|
|
129
|
+
bitgetWallet
|
|
130
|
+
} from "./chunk-TDAVGY5F.js";
|
|
128
131
|
import {
|
|
129
132
|
argentWallet
|
|
130
133
|
} from "./chunk-WSQ2YJO2.js";
|
|
131
134
|
import {
|
|
132
135
|
bifrostWallet
|
|
133
|
-
} from "./chunk-
|
|
134
|
-
import {
|
|
135
|
-
bitgetWallet
|
|
136
|
-
} from "./chunk-5W7VDOCL.js";
|
|
136
|
+
} from "./chunk-A5N6B5UW.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
|
-
braveWallet
|
|
145
|
-
} from "./chunk-BPZ2XJO2.js";
|
|
146
|
-
import "./chunk-DNSG5Q7V.js";
|
|
147
143
|
import {
|
|
148
144
|
bloomWallet
|
|
149
145
|
} from "./chunk-S27IADFU.js";
|
|
150
146
|
import "./chunk-23WIEY36.js";
|
|
147
|
+
import {
|
|
148
|
+
braveWallet
|
|
149
|
+
} from "./chunk-BPZ2XJO2.js";
|
|
150
|
+
import "./chunk-DNSG5Q7V.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.9
|
|
3
|
+
"version": "6.14.9",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -93,12 +93,12 @@
|
|
|
93
93
|
"ua-parser-js": "^1.0.37",
|
|
94
94
|
"use-debounce": "^10.0.5",
|
|
95
95
|
"uuid": "^9.0.1",
|
|
96
|
-
"@funkit/api-base": "1.12.8
|
|
97
|
-
"@funkit/chains": "0.4.
|
|
98
|
-
"@funkit/
|
|
99
|
-
"@funkit/utils": "1.
|
|
100
|
-
"@funkit/
|
|
101
|
-
"@funkit/wagmi-tools": "3.0.76
|
|
96
|
+
"@funkit/api-base": "1.12.8",
|
|
97
|
+
"@funkit/chains": "0.4.2",
|
|
98
|
+
"@funkit/core": "2.3.53",
|
|
99
|
+
"@funkit/utils": "1.1.13",
|
|
100
|
+
"@funkit/fun-relay": "2.1.1",
|
|
101
|
+
"@funkit/wagmi-tools": "3.0.76"
|
|
102
102
|
},
|
|
103
103
|
"repository": {
|
|
104
104
|
"type": "git",
|