@aptos-labs/wallet-adapter-core 7.2.0 → 7.3.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/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 +2 -2
- 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.
|
|
1
|
+
export declare const WALLET_ADAPTER_CORE_VERSION = "7.3.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aptos-labs/wallet-adapter-core",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"description": "Aptos Wallet Adapter Core",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@aptos-connect/wallet-adapter-plugin": "2.5.1",
|
|
44
|
-
"@aptos-labs/wallet-standard": "^0.5.
|
|
44
|
+
"@aptos-labs/wallet-standard": "^0.5.2",
|
|
45
45
|
"buffer": "^6.0.3",
|
|
46
46
|
"eventemitter3": "^4.0.7",
|
|
47
47
|
"tweetnacl": "^1.0.3"
|
package/src/WalletCore.ts
CHANGED
|
@@ -871,7 +871,7 @@ export class WalletCore extends EventEmitter<WalletCoreEvents> {
|
|
|
871
871
|
};
|
|
872
872
|
} // dapp sends a transaction data input (i.e InputTransactionData), which is supported by the wallet standard at signTransaction version 1.1.0
|
|
873
873
|
else if (
|
|
874
|
-
this._wallet.features["aptos:signTransaction"]?.version === "1.1"
|
|
874
|
+
this._wallet.features["aptos:signTransaction"]?.version === "1.1.0"
|
|
875
875
|
) {
|
|
876
876
|
// convert input to standard expected input
|
|
877
877
|
const signTransactionV1_1StandardInput: AptosSignTransactionInputV1_1 =
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const WALLET_ADAPTER_CORE_VERSION = "7.
|
|
1
|
+
export const WALLET_ADAPTER_CORE_VERSION = "7.3.0";
|