@funkit/connect 1.0.7 → 1.0.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 +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -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 +65 -65
- 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 +18 -17
- package/dist/components/Icons/MastercardIcon.d.ts +0 -2
- package/dist/wallets/walletConnectors/chunk-2LY3WMXK.js +0 -96
- package/dist/wallets/walletConnectors/chunk-2PC2XXUH.js +0 -94
- package/dist/wallets/walletConnectors/chunk-2XQJ2NQ4.js +0 -178
- package/dist/wallets/walletConnectors/chunk-75A2U7T7.js +0 -100
- package/dist/wallets/walletConnectors/chunk-AJKRYTH2.js +0 -92
- package/dist/wallets/walletConnectors/chunk-CVGDYGHA.js +0 -60
- package/dist/wallets/walletConnectors/chunk-DNOEX5NF.js +0 -73
- package/dist/wallets/walletConnectors/chunk-FDIIMYTB.js +0 -73
- package/dist/wallets/walletConnectors/chunk-HXYRONSJ.js +0 -94
- package/dist/wallets/walletConnectors/chunk-MCTPLICE.js +0 -102
- package/dist/wallets/walletConnectors/chunk-MU35GKP3.js +0 -71
- package/dist/wallets/walletConnectors/chunk-N3VZE65M.js +0 -98
- package/dist/wallets/walletConnectors/chunk-OAEJQOAV.js +0 -105
- package/dist/wallets/walletConnectors/chunk-OKZSWAPF.js +0 -60
- package/dist/wallets/walletConnectors/chunk-OR3PU2W4.js +0 -95
- package/dist/wallets/walletConnectors/chunk-OYKWP3N3.js +0 -60
- package/dist/wallets/walletConnectors/chunk-OYW4TIA3.js +0 -81
- package/dist/wallets/walletConnectors/chunk-PPFSHJTA.js +0 -95
- package/dist/wallets/walletConnectors/chunk-RYO26XSK.js +0 -100
- package/dist/wallets/walletConnectors/chunk-SL4VH23R.js +0 -71
- package/dist/wallets/walletConnectors/chunk-SPLW3CCH.js +0 -98
- package/dist/wallets/walletConnectors/chunk-SQGFKNNZ.js +0 -102
- package/dist/wallets/walletConnectors/chunk-VWZEDVW6.js +0 -27
- package/dist/wallets/walletConnectors/chunk-X255T3C4.js +0 -178
- package/dist/wallets/walletConnectors/chunk-XSSD5ZVD.js +0 -96
- package/dist/wallets/walletConnectors/chunk-YC7XNS7C.js +0 -98
- package/dist/wallets/walletConnectors/chunk-ZFXXHGAS.js +0 -105
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 1.0.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4e59a88: fix: default payment method
|
|
8
|
+
|
|
9
|
+
## 1.0.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 5bedbdc: chore: package bump
|
|
14
|
+
- Updated dependencies [5bedbdc]
|
|
15
|
+
- @funkit/core@1.0.4
|
|
16
|
+
- @funkit/wagmi-tools@1.0.5
|
|
17
|
+
|
|
3
18
|
## 1.0.7
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { ConnectButton } from './components/ConnectButton/ConnectButton';
|
|
2
2
|
export { useFunkitCheckout } from './components/FunkitProvider/FunkitCheckoutContext';
|
|
3
|
+
export type { FunkitConfig } from './components/FunkitProvider/FunkitConfigContext';
|
|
3
4
|
export { FunkitProvider } from './components/FunkitProvider/FunkitProvider';
|
|
4
5
|
export { useActiveTheme } from './components/FunkitProvider/FunkitThemeProvider';
|
|
5
6
|
export { WalletButton } from './components/WalletButton/WalletButton';
|
package/dist/index.js
CHANGED
|
@@ -5178,7 +5178,7 @@ function FunPaymentMethods({
|
|
|
5178
5178
|
const { isCheckoutCrFlow } = useCheckoutType(checkoutItem);
|
|
5179
5179
|
useEffect9(() => {
|
|
5180
5180
|
if (paymentFlow === 1 /* CHECKOUT */ && isCheckoutCrFlow) {
|
|
5181
|
-
setSelectedOption(null);
|
|
5181
|
+
setSelectedOption(paymentsConfig.defaultPaymentMethod || null);
|
|
5182
5182
|
}
|
|
5183
5183
|
}, [reDraftSymbol]);
|
|
5184
5184
|
const hasSufficientBalance = useMemo13(() => {
|
|
@@ -7956,7 +7956,9 @@ function CheckoutPrimaryInfoSnapshot({
|
|
|
7956
7956
|
keyTextColor: "modalText",
|
|
7957
7957
|
keyTextSize: "18",
|
|
7958
7958
|
keyTextWeight: "bold",
|
|
7959
|
-
valueText: isLoading ? "" : formatCurrencyAndStringify(
|
|
7959
|
+
valueText: isLoading ? "" : `${formatCurrencyAndStringify(
|
|
7960
|
+
(checkoutItem == null ? void 0 : checkoutItem.draftDollarValue) || 0
|
|
7961
|
+
)} USD`,
|
|
7960
7962
|
valueIcon: isLoading ? /* @__PURE__ */ React81.createElement(SpinnerIcon, {
|
|
7961
7963
|
height: 16,
|
|
7962
7964
|
width: 16
|
|
@@ -15363,7 +15365,7 @@ function setFunkitConnectVersion({ version }) {
|
|
|
15363
15365
|
localStorage.setItem(storageKey4, version);
|
|
15364
15366
|
}
|
|
15365
15367
|
function getCurrentSdkVersion() {
|
|
15366
|
-
return "1.0.
|
|
15368
|
+
return "1.0.9";
|
|
15367
15369
|
}
|
|
15368
15370
|
function useFingerprint() {
|
|
15369
15371
|
const fingerprint = useCallback28(() => {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bifrostWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-KGTZ6E7L.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
bifrostWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bitgetWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-2B3SPBRY.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
bitgetWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
frontierWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-HD5VYJNC.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
frontierWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
gateWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-VSZ7PAHS.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
gateWallet
|
|
10
10
|
};
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
oneInchWallet
|
|
4
|
+
} from "./chunk-LCPIZUR3.js";
|
|
2
5
|
import {
|
|
3
6
|
zealWallet
|
|
4
7
|
} from "./chunk-DPXMP5KS.js";
|
|
5
8
|
import {
|
|
6
|
-
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import {
|
|
9
|
-
uniswapWallet
|
|
10
|
-
} from "./chunk-XRSY4JVH.js";
|
|
9
|
+
talismanWallet
|
|
10
|
+
} from "./chunk-H273OTQA.js";
|
|
11
11
|
import {
|
|
12
|
-
|
|
13
|
-
} from "./chunk-
|
|
12
|
+
desigWallet
|
|
13
|
+
} from "./chunk-P4JLZ42R.js";
|
|
14
14
|
import {
|
|
15
15
|
tokenPocketWallet
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import {
|
|
18
|
-
talismanWallet
|
|
19
|
-
} from "./chunk-H273OTQA.js";
|
|
16
|
+
} from "./chunk-7KDOXASH.js";
|
|
20
17
|
import {
|
|
21
18
|
tokenaryWallet
|
|
22
19
|
} from "./chunk-ENZLEAG2.js";
|
|
23
20
|
import {
|
|
24
21
|
trustWallet
|
|
25
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-CRSPGVPF.js";
|
|
23
|
+
import {
|
|
24
|
+
uniswapWallet
|
|
25
|
+
} from "./chunk-XRSY4JVH.js";
|
|
26
26
|
import {
|
|
27
27
|
walletConnectWallet
|
|
28
28
|
} from "./chunk-ASPRR7T3.js";
|
|
@@ -30,125 +30,125 @@ import {
|
|
|
30
30
|
xdefiWallet
|
|
31
31
|
} from "./chunk-L734HTUS.js";
|
|
32
32
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
35
|
-
import {
|
|
36
|
-
rainbowWallet
|
|
37
|
-
} from "./chunk-O5NKWWEG.js";
|
|
38
|
-
import {
|
|
39
|
-
rabbyWallet
|
|
40
|
-
} from "./chunk-XPEBP6XV.js";
|
|
33
|
+
zerionWallet
|
|
34
|
+
} from "./chunk-XNNLZXHE.js";
|
|
41
35
|
import {
|
|
42
36
|
ramperWallet
|
|
43
37
|
} from "./chunk-ZOL6ZMTJ.js";
|
|
44
38
|
import {
|
|
45
|
-
|
|
46
|
-
} from "./chunk-
|
|
47
|
-
import {
|
|
48
|
-
safepalWallet
|
|
49
|
-
} from "./chunk-SYELB4QO.js";
|
|
39
|
+
safeWallet
|
|
40
|
+
} from "./chunk-D3DCQ72J.js";
|
|
50
41
|
import {
|
|
51
42
|
safeheronWallet
|
|
52
43
|
} from "./chunk-63NPZXAL.js";
|
|
53
44
|
import {
|
|
54
45
|
roninWallet
|
|
55
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-GW6EF4G2.js";
|
|
47
|
+
import {
|
|
48
|
+
subWallet
|
|
49
|
+
} from "./chunk-2GAW2UBU.js";
|
|
56
50
|
import {
|
|
57
51
|
tahoWallet
|
|
58
52
|
} from "./chunk-H76YCX2M.js";
|
|
53
|
+
import {
|
|
54
|
+
safepalWallet
|
|
55
|
+
} from "./chunk-RTW6PVQI.js";
|
|
56
|
+
import {
|
|
57
|
+
bitgetWallet
|
|
58
|
+
} from "./chunk-2B3SPBRY.js";
|
|
59
59
|
import {
|
|
60
60
|
mewWallet
|
|
61
61
|
} from "./chunk-PWYTDYBE.js";
|
|
62
|
-
import {
|
|
63
|
-
ledgerWallet
|
|
64
|
-
} from "./chunk-Y6VY6E3L.js";
|
|
65
62
|
import {
|
|
66
63
|
oktoWallet
|
|
67
64
|
} from "./chunk-WKHTUEF5.js";
|
|
68
|
-
import {
|
|
69
|
-
injectedWallet
|
|
70
|
-
} from "./chunk-KIHCNUU3.js";
|
|
71
65
|
import {
|
|
72
66
|
omniWallet
|
|
73
67
|
} from "./chunk-SVN7OEQR.js";
|
|
74
68
|
import {
|
|
75
69
|
okxWallet
|
|
76
|
-
} from "./chunk-
|
|
70
|
+
} from "./chunk-DV3SI63E.js";
|
|
77
71
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
72
|
+
oneKeyWallet
|
|
73
|
+
} from "./chunk-4WOV4ITL.js";
|
|
74
|
+
import {
|
|
75
|
+
rabbyWallet
|
|
76
|
+
} from "./chunk-XPEBP6XV.js";
|
|
80
77
|
import {
|
|
81
78
|
phantomWallet
|
|
82
79
|
} from "./chunk-KGBLSE7L.js";
|
|
83
80
|
import {
|
|
84
|
-
|
|
85
|
-
} from "./chunk-
|
|
86
|
-
import {
|
|
87
|
-
frameWallet
|
|
88
|
-
} from "./chunk-XXFJVY73.js";
|
|
81
|
+
rainbowWallet
|
|
82
|
+
} from "./chunk-RCWZ4KBR.js";
|
|
89
83
|
import {
|
|
90
84
|
frontierWallet
|
|
91
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-HD5VYJNC.js";
|
|
92
86
|
import {
|
|
93
87
|
imTokenWallet
|
|
94
88
|
} from "./chunk-5MVV7OVS.js";
|
|
89
|
+
import {
|
|
90
|
+
injectedWallet
|
|
91
|
+
} from "./chunk-KIHCNUU3.js";
|
|
95
92
|
import {
|
|
96
93
|
gateWallet
|
|
97
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-VSZ7PAHS.js";
|
|
98
95
|
import {
|
|
99
96
|
kresusWallet
|
|
100
97
|
} from "./chunk-X6T3CICZ.js";
|
|
101
98
|
import {
|
|
102
99
|
metaMaskWallet
|
|
103
|
-
} from "./chunk-
|
|
100
|
+
} from "./chunk-XRMAVTK7.js";
|
|
101
|
+
import {
|
|
102
|
+
ledgerWallet
|
|
103
|
+
} from "./chunk-Y6VY6E3L.js";
|
|
104
|
+
import {
|
|
105
|
+
clvWallet
|
|
106
|
+
} from "./chunk-T6JVHES7.js";
|
|
104
107
|
import {
|
|
105
108
|
coin98Wallet
|
|
106
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-Z2HIQYVN.js";
|
|
107
110
|
import {
|
|
108
111
|
coinbaseWallet
|
|
109
112
|
} from "./chunk-XBUTWYE4.js";
|
|
110
|
-
import {
|
|
111
|
-
bitskiWallet
|
|
112
|
-
} from "./chunk-C67TQJ6W.js";
|
|
113
113
|
import {
|
|
114
114
|
coreWallet
|
|
115
|
-
} from "./chunk-
|
|
116
|
-
import {
|
|
117
|
-
bloomWallet
|
|
118
|
-
} from "./chunk-NTGZF5BY.js";
|
|
115
|
+
} from "./chunk-IBWFKX7P.js";
|
|
119
116
|
import {
|
|
120
117
|
dawnWallet
|
|
121
118
|
} from "./chunk-4XQDKOGF.js";
|
|
122
119
|
import {
|
|
123
|
-
|
|
124
|
-
} from "./chunk-
|
|
120
|
+
foxWallet
|
|
121
|
+
} from "./chunk-OKWOB3DN.js";
|
|
122
|
+
import {
|
|
123
|
+
frameWallet
|
|
124
|
+
} from "./chunk-XXFJVY73.js";
|
|
125
125
|
import {
|
|
126
126
|
enkryptWallet
|
|
127
127
|
} from "./chunk-FLY7F4XA.js";
|
|
128
128
|
import {
|
|
129
129
|
bifrostWallet
|
|
130
|
-
} from "./chunk-
|
|
131
|
-
import {
|
|
132
|
-
bitgetWallet
|
|
133
|
-
} from "./chunk-ZNXQ4V6G.js";
|
|
130
|
+
} from "./chunk-KGTZ6E7L.js";
|
|
134
131
|
import {
|
|
135
|
-
|
|
136
|
-
} from "./chunk-
|
|
132
|
+
bitskiWallet
|
|
133
|
+
} from "./chunk-C67TQJ6W.js";
|
|
137
134
|
import {
|
|
138
135
|
argentWallet
|
|
139
136
|
} from "./chunk-NZ5G23JP.js";
|
|
140
|
-
import
|
|
137
|
+
import {
|
|
138
|
+
bitverseWallet
|
|
139
|
+
} from "./chunk-NL4I7WOT.js";
|
|
141
140
|
import {
|
|
142
141
|
braveWallet
|
|
143
142
|
} from "./chunk-ABYQAXUX.js";
|
|
144
143
|
import {
|
|
145
|
-
|
|
146
|
-
} from "./chunk-
|
|
144
|
+
bloomWallet
|
|
145
|
+
} from "./chunk-NTGZF5BY.js";
|
|
146
|
+
import "./chunk-ZOLACFTK.js";
|
|
147
147
|
import {
|
|
148
|
-
|
|
149
|
-
} from "./chunk-
|
|
150
|
-
import "./chunk-ZDU3JFGR.js";
|
|
148
|
+
bybitWallet
|
|
149
|
+
} from "./chunk-CUKVUCIP.js";
|
|
151
150
|
import "./chunk-QII6PY2D.js";
|
|
151
|
+
import "./chunk-ZDU3JFGR.js";
|
|
152
152
|
export {
|
|
153
153
|
argentWallet,
|
|
154
154
|
bifrostWallet,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
metaMaskWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-XRMAVTK7.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
metaMaskWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
okxWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-DV3SI63E.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
okxWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
rainbowWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-RCWZ4KBR.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
rainbowWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
tokenPocketWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-7KDOXASH.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
tokenPocketWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
trustWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-CRSPGVPF.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
trustWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
zerionWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-XNNLZXHE.js";
|
|
5
5
|
import "../chunk-ZOLACFTK.js";
|
|
6
|
-
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-QII6PY2D.js";
|
|
7
|
+
import "../chunk-ZDU3JFGR.js";
|
|
8
8
|
export {
|
|
9
9
|
zerionWallet
|
|
10
10
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/connect",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -25,6 +25,18 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "node build.js && pnpm typecheck",
|
|
30
|
+
"build:watch": "node build.js --watch",
|
|
31
|
+
"dev": "pnpm build:watch & pnpm typegen:watch",
|
|
32
|
+
"prepare": "MINIFY_CSS=true pnpm build",
|
|
33
|
+
"prebuild": "pnpm typegen",
|
|
34
|
+
"typecheck": "pnpm tsc --noEmit",
|
|
35
|
+
"typegen": "tsc --emitDeclarationOnly || true",
|
|
36
|
+
"typegen:watch": "tsc --emitDeclarationOnly --watch",
|
|
37
|
+
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\"",
|
|
38
|
+
"lint:fix": "eslint \"**/*.{ts,tsx,js,jsx}\" --fix"
|
|
39
|
+
},
|
|
28
40
|
"keywords": [
|
|
29
41
|
"ens",
|
|
30
42
|
"ethereum",
|
|
@@ -60,6 +72,8 @@
|
|
|
60
72
|
"@types/ua-parser-js": "^0.7.39"
|
|
61
73
|
},
|
|
62
74
|
"dependencies": {
|
|
75
|
+
"@funkit/wagmi-tools": "^1.0.5",
|
|
76
|
+
"@funkit/core": "^1.0.4",
|
|
63
77
|
"@vanilla-extract/css": "1.14.0",
|
|
64
78
|
"@vanilla-extract/dynamic": "2.1.0",
|
|
65
79
|
"@vanilla-extract/sprinkles": "1.6.1",
|
|
@@ -74,25 +88,12 @@
|
|
|
74
88
|
"@meshconnect/web-link-sdk": "^2.0.1",
|
|
75
89
|
"@wagmi/core": "^2.6.9",
|
|
76
90
|
"uuid": "^9.0.1",
|
|
77
|
-
"@types/uuid": "^9.0.8"
|
|
78
|
-
"@funkit/wagmi-tools": "1.0.4",
|
|
79
|
-
"@funkit/core": "1.0.3"
|
|
91
|
+
"@types/uuid": "^9.0.8"
|
|
80
92
|
},
|
|
81
93
|
"repository": {
|
|
82
94
|
"type": "git",
|
|
83
95
|
"url": "git+https://github.com/fun-xyz/funkit.git",
|
|
84
96
|
"directory": "packages/connect"
|
|
85
97
|
},
|
|
86
|
-
"homepage": "https://github.com/fun-xyz/funkit/tree/main/packages/connect"
|
|
87
|
-
|
|
88
|
-
"build": "node build.js && pnpm typecheck",
|
|
89
|
-
"build:watch": "node build.js --watch",
|
|
90
|
-
"dev": "pnpm build:watch & pnpm typegen:watch",
|
|
91
|
-
"prebuild": "pnpm typegen",
|
|
92
|
-
"typecheck": "pnpm tsc --noEmit",
|
|
93
|
-
"typegen": "tsc --emitDeclarationOnly || true",
|
|
94
|
-
"typegen:watch": "tsc --emitDeclarationOnly --watch",
|
|
95
|
-
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\"",
|
|
96
|
-
"lint:fix": "eslint \"**/*.{ts,tsx,js,jsx}\" --fix"
|
|
97
|
-
}
|
|
98
|
-
}
|
|
98
|
+
"homepage": "https://github.com/fun-xyz/funkit/tree/main/packages/connect"
|
|
99
|
+
}
|