btc-wallet 0.5.69-beta → 0.5.70-beta
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/dist/index.js +5 -5
- package/dist/index.js.map +2 -2
- package/esm/index.js +5 -5
- package/esm/index.js.map +2 -2
- package/package.json +1 -1
package/esm/index.js
CHANGED
@@ -2704,12 +2704,12 @@ function BtcWalletSelectorContextProvider({
|
|
2704
2704
|
}) {
|
2705
2705
|
const [isProcessing, setIsProcessing] = useState8(false);
|
2706
2706
|
const connectors = [
|
2707
|
-
new UnisatConnector(),
|
2708
|
-
new XverseConnector(),
|
2709
2707
|
new OKXConnector(),
|
2710
2708
|
new BitgetConnector(),
|
2711
|
-
new
|
2712
|
-
new
|
2709
|
+
new BybitConnector(),
|
2710
|
+
new XverseConnector(),
|
2711
|
+
new UnisatConnector(),
|
2712
|
+
new MagicEdenConnector()
|
2713
2713
|
];
|
2714
2714
|
const walletSelectorContextValue = useMemo6(() => {
|
2715
2715
|
const simpleFn = {};
|
@@ -5218,7 +5218,7 @@ function getGroup(state) {
|
|
5218
5218
|
|
5219
5219
|
// src/index.ts
|
5220
5220
|
var getVersion = () => {
|
5221
|
-
return "0.5.
|
5221
|
+
return "0.5.70-beta";
|
5222
5222
|
};
|
5223
5223
|
if (typeof window !== "undefined") {
|
5224
5224
|
window.__BTC_WALLET_VERSION = getVersion();
|