Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/transaction-pay-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Require EIP-7702 for direct mUSD vault deposits and ensure transaction ID collection always stops after the batch attempt ([#9240](https://github.com/MetaMask/core/pull/9240))
- Inherit `isGasFeeSponsored` from the parent transaction into same-chain Relay source-network fees and submission options ([#9216](https://github.com/MetaMask/core/pull/9216))
- Skip EIP-7702 upgrade check for direct mUSD vault deposits since the Money Account is always already upgraded on Monad ([#9250](https://github.com/MetaMask/core/pull/9250))

## [23.14.0]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,9 @@ describe('fiat-direct-musd', () => {
expect(callMock).toHaveBeenCalledWith(
'TransactionController:addTransactionBatch',
expect.objectContaining({
disableHook: true,
disableSequential: true,
disableUpgrade: true,
from: MONEY_ACCOUNT_ADDRESS_MOCK,
isGasFeeSponsored: true,
isInternal: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ export async function submitDirectMusdVaultDeposit({
await messenger.call('TransactionController:addTransactionBatch', {
disableHook: true,
disableSequential: true,
disableUpgrade: true,
from: moneyAccountAddress,
isGasFeeSponsored: true,
isInternal: true,
Expand Down
Loading