@aptos-labs/wallet-adapter-core 4.19.0 → 4.20.0
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/AIP62StandardWallets/sdkWallets.d.ts.map +1 -1
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -3
- package/dist/index.mjs.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +2 -2
- package/src/AIP62StandardWallets/sdkWallets.ts +10 -2
- package/src/version.ts +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdkWallets.d.ts","sourceRoot":"","sources":["../../src/AIP62StandardWallets/sdkWallets.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sdkWallets.d.ts","sourceRoot":"","sources":["../../src/AIP62StandardWallets/sdkWallets.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAEvD,wBAAgB,aAAa,CAAC,UAAU,CAAC,EAAE,UAAU,yBA8CpD"}
|
package/dist/index.js
CHANGED
|
@@ -65,7 +65,7 @@ __export(src_exports, {
|
|
|
65
65
|
module.exports = __toCommonJS(src_exports);
|
|
66
66
|
|
|
67
67
|
// src/version.ts
|
|
68
|
-
var WALLET_ADAPTER_CORE_VERSION = "4.
|
|
68
|
+
var WALLET_ADAPTER_CORE_VERSION = "4.20.0";
|
|
69
69
|
|
|
70
70
|
// src/WalletCore.ts
|
|
71
71
|
var import_aptos4 = require("aptos");
|
|
@@ -82,7 +82,12 @@ function getSDKWallets(dappConfig) {
|
|
|
82
82
|
const sdkWallets = [];
|
|
83
83
|
if (typeof window !== "undefined") {
|
|
84
84
|
sdkWallets.push(
|
|
85
|
-
new import_wallet_adapter_plugin.
|
|
85
|
+
new import_wallet_adapter_plugin.AptosConnectGoogleWallet({
|
|
86
|
+
network: dappConfig == null ? void 0 : dappConfig.network,
|
|
87
|
+
dappId: dappConfig == null ? void 0 : dappConfig.aptosConnectDappId,
|
|
88
|
+
...dappConfig == null ? void 0 : dappConfig.aptosConnect
|
|
89
|
+
}),
|
|
90
|
+
new import_wallet_adapter_plugin.AptosConnectAppleWallet({
|
|
86
91
|
network: dappConfig == null ? void 0 : dappConfig.network,
|
|
87
92
|
dappId: dappConfig == null ? void 0 : dappConfig.aptosConnectDappId,
|
|
88
93
|
...dappConfig == null ? void 0 : dappConfig.aptosConnect
|