@aptos-labs/wallet-adapter-core 7.9.1 → 7.9.2
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/WalletCore.ts +1 -1
- package/src/version.ts +1 -1
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const WALLET_ADAPTER_CORE_VERSION = "7.9.
|
|
1
|
+
export declare const WALLET_ADAPTER_CORE_VERSION = "7.9.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/WalletCore.ts
CHANGED
|
@@ -554,7 +554,7 @@ export class WalletCore extends EventEmitter<WalletCoreEvents> {
|
|
|
554
554
|
} else if (uninstalledWallet.name.includes("Metamask")) {
|
|
555
555
|
// Metamask expects the raw URL as a path parameter
|
|
556
556
|
// Format: https://link.metamask.io/dapp/aptos-labs.github.io
|
|
557
|
-
parameter = window.location.
|
|
557
|
+
parameter = window.location.href;
|
|
558
558
|
} else {
|
|
559
559
|
parameter = encodeURIComponent(window.location.href);
|
|
560
560
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const WALLET_ADAPTER_CORE_VERSION = "7.9.
|
|
1
|
+
export const WALLET_ADAPTER_CORE_VERSION = "7.9.2";
|