@aptos-labs/wallet-adapter-core 5.4.0 → 5.4.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 +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/utils/helpers.d.ts +1 -1
- package/dist/utils/types.d.ts +2 -1
- package/dist/utils/types.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +2 -2
- package/src/WalletCore.ts +31 -28
- package/src/sdkWallets.ts +1 -1
- package/src/utils/helpers.ts +9 -9
- package/src/utils/types.ts +8 -6
- package/src/utils/walletSelector.ts +9 -9
- package/src/version.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -294,7 +294,7 @@ function _ts_generator(thisArg, body) {
|
|
|
294
294
|
};
|
|
295
295
|
}
|
|
296
296
|
}
|
|
297
|
-
var WALLET_ADAPTER_CORE_VERSION = "5.4.
|
|
297
|
+
var WALLET_ADAPTER_CORE_VERSION = "5.4.2";
|
|
298
298
|
// src/WalletCore.ts
|
|
299
299
|
import EventEmitter from "eventemitter3";
|
|
300
300
|
import { AccountAddress, Aptos as Aptos2, Network as Network3, NetworkToChainId } from "@aptos-labs/ts-sdk";
|
|
@@ -1712,7 +1712,8 @@ var WalletCore = /*#__PURE__*/ function(EventEmitter) {
|
|
|
1712
1712
|
aptos.transaction.build.simple({
|
|
1713
1713
|
sender: _this._account.address,
|
|
1714
1714
|
data: transactionOrPayload.data,
|
|
1715
|
-
options: transactionOrPayload.options
|
|
1715
|
+
options: transactionOrPayload.options,
|
|
1716
|
+
withFeePayer: transactionOrPayload.withFeePayer
|
|
1716
1717
|
})
|
|
1717
1718
|
];
|
|
1718
1719
|
case 6:
|