@aptos-labs/wallet-adapter-core 7.1.1 → 7.1.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/WalletCore.d.ts.map +1 -1
- 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 +4 -3
- 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.
|
|
1
|
+
export declare const WALLET_ADAPTER_CORE_VERSION = "7.1.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/WalletCore.ts
CHANGED
|
@@ -729,9 +729,10 @@ export class WalletCore extends EventEmitter<WalletCoreEvents> {
|
|
|
729
729
|
this.recordEvent("sign_and_submit_transaction");
|
|
730
730
|
|
|
731
731
|
// We'll submit ourselves if a custom transaction submitter has been provided.
|
|
732
|
-
const shouldUseTxnSubmitter =
|
|
733
|
-
this._dappConfig?.transactionSubmitter
|
|
734
|
-
transactionInput.transactionSubmitter
|
|
732
|
+
const shouldUseTxnSubmitter = !!(
|
|
733
|
+
this._dappConfig?.transactionSubmitter ||
|
|
734
|
+
transactionInput.transactionSubmitter
|
|
735
|
+
);
|
|
735
736
|
|
|
736
737
|
if (
|
|
737
738
|
this._wallet.features["aptos:signAndSubmitTransaction"] &&
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const WALLET_ADAPTER_CORE_VERSION = "7.1.
|
|
1
|
+
export const WALLET_ADAPTER_CORE_VERSION = "7.1.2";
|