btc-wallet 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +3 -2
- package/dist/index.js.map +2 -2
- package/esm/index.js +3 -2
- package/esm/index.js.map +2 -2
- package/package.json +1 -1
package/esm/index.js
CHANGED
@@ -2131,6 +2131,7 @@ function BtcWalletSelectorContextProvider({
|
|
2131
2131
|
autoConnect = false
|
2132
2132
|
}) {
|
2133
2133
|
const [isProcessing, setIsProcessing] = useState8(false);
|
2134
|
+
const connectors = [new UnisatConnector(), new XverseConnector()];
|
2134
2135
|
const walletSelectorContextValue = useMemo6(() => {
|
2135
2136
|
const simpleFn = {};
|
2136
2137
|
return {
|
@@ -2170,7 +2171,7 @@ function BtcWalletSelectorContextProvider({
|
|
2170
2171
|
}
|
2171
2172
|
},
|
2172
2173
|
autoConnect: false,
|
2173
|
-
connectors
|
2174
|
+
connectors,
|
2174
2175
|
children: [
|
2175
2176
|
children,
|
2176
2177
|
isProcessing && /* @__PURE__ */ jsx12(
|
@@ -3054,7 +3055,7 @@ function executeBurrowSupply(_0) {
|
|
3054
3055
|
|
3055
3056
|
// src/index.ts
|
3056
3057
|
var getVersion = () => {
|
3057
|
-
return "0.2.
|
3058
|
+
return "0.2.8";
|
3058
3059
|
};
|
3059
3060
|
if (typeof window !== "undefined") {
|
3060
3061
|
window.__PARTICLE_BTC_CONNECT_VERSION = getVersion();
|