Skip to content

fix: MMPay fiat payment fixes #8987

Open
OGPoyraz wants to merge 24 commits into
mainfrom
ogp/fiat-money-account-deposit-fix
Open

fix: MMPay fiat payment fixes #8987
OGPoyraz wants to merge 24 commits into
mainfrom
ogp/fiat-money-account-deposit-fix

Conversation

@OGPoyraz
Copy link
Copy Markdown
Member

@OGPoyraz OGPoyraz commented Jun 3, 2026

Explanation

Fiat payments for moneyAccountDeposit transactions fail with multiple sequential errors after the on-ramp order settles:

  1. isMaxAmount: true in the fiat re-quote — after Transak settles, submitRelayAfterFiatCompletion re-quotes with isMaxAmount: true, isPostQuote: false. This calls processTransactions, which throws "Max amount quotes do not support included transactions" because moneyAccountDeposit has nested txs (approve + deposit) that require delegation.

  2. validateRelaySlippage compares wrong amounts — it compares currencyOut.amount from two relay quotes made with different source amounts (theoretical $5 quoting phase vs actual ~$4.95 post-Transak settlement). This produces ~25% apparent "slippage" that is not real slippage — it is just a smaller input producing a smaller output.

  3. Nested calldata has zero amounts — the fiat path in handleDone only sets amountFiat and never calls updateTokenAmount(), so requiredAssets.amount stays 0x0 and the nested approve + deposit calldata encodes zero amounts.

  4. Wrong wallet address in fiat flowfiat-quotes.ts and fiat-submit.ts used transaction.txParams.from as the wallet address. For moneyAccountDeposit, txParams.from is the money account address on the target chain (Monad), not the user's EOA. This caused Ramps/Transak to receive the wrong deposit address, resolveSourceAmountRaw to look for on-chain ETH at the wrong address, and all relay quotes to use the wrong from/user address — resulting in TRANSFER_FROM_FAILED reverts.

  5. Fiat total calculation using wrong amountcalculateTotals derived the payment amount from token amounts or targetAmount, which is incorrect for fiat flows where the user enters a specific fiat amount.

Changes

fiat-quotes.ts — uses accountOverride when available for walletAddress, matching the existing pattern in quotes.ts. This ensures Ramps/Transak receives the user's actual EOA address, not the money account address.

fiat-submit.ts — two wallet address fixes plus three-phase relay flow:

  • submitFiatQuotes: uses accountOverride ?? txParams.from for order polling wallet address
  • submitRelayAfterFiatCompletion: uses baseRequest.from (already accountOverride-aware from the quote) for on-chain amount lookup
  • Phase 1: Discovery relay quote (isPostQuote: true, EXACT_INPUT) with the settled source amount to learn currencyOut.minimumAmount
  • Phase 2: Calls getAmountData via messenger to delegate calldata re-encoding to the client, then patches nested tx data + requiredAssets[0].amount
  • Phase 3: Real relay quote (isPostQuote: false, EXACT_OUTPUT) with delegation

relay-submit.ts — reverts the isExecute balance skip (no longer needed with correct wallet address). The balance check now correctly validates the user's EOA balance.

validateRelaySlippagevalidateRelayRateDrift — compares USD exchange rate ratios (output_usd / input_usd) between original and discovery quotes instead of absolute amounts, normalising for different source amounts.

TransactionPayController — adds optional getAmountData callback on the constructor, exposed via messenger as TransactionPayController:getAmountData. Keeps ABI knowledge on the client side.

totals.ts — adds fiatPaymentAmount parameter to calculateTotals. When a fiat strategy quote is present, uses the user-entered fiat payment amount directly instead of deriving it from token amounts or relay targetAmount. Falls back to '0' if fiat amount is unavailable.

quotes.ts — passes fiatPayment.amountFiat from the transaction pay state into calculateTotals as fiatPaymentAmount.

relay-quotes.ts (recipient routing fix) — adds skipProcessTransactions to QuoteRequest type. Defaults to isPostQuote when not set. The simple fiat path (fiat-submit-simple.ts) sets skipProcessTransactions: false to force processTransactions to run and extract the transfer(to, amount) recipient from calldata — fixing Predict/Perps deposits where Relay sent swapped tokens to the user's EOA instead of the target contract.

relay-quotes.ts (7702 batch gas estimation) — for post-quote flows, includes the original transaction in batch gas estimation alongside relay params. Previously, a single relay step was estimated alone, got is7702: false, and the batch fell back to separate type-0x2 transactions — breaking zero-balance fiat-funded accounts that need all native tokens for the swap.

relay-quotes.ts (native gas subtraction) — extends the phase-2 gas subtraction to trigger when the source token is the native gas token (e.g. POL on Polygon), not only when isSourceGasFeeToken is true. For zero-balance accounts where the source IS the native token, gas must be reserved from the source amount to avoid insufficient funds for gas * price + value.

relay-submit.ts (gas price alignment) — the prepended original transaction in post-quote batch submissions now carries the relay step's maxFeePerGas and maxPriorityFeePerGas. This ensures the top-level 7702 batch uses the same gas price as the relay quote, matching the gas cost computed during the phase-2 gas subtraction.

eip7702.ts (transaction-controller)generateEIP7702BatchTransaction now sums native values from all nested calls and sets the result as the top-level transaction value. Previously the top-level value was always 0x0, causing 7702 batches with native value transfers (e.g. POL swap) to revert because the delegation contract had no native tokens to forward.

Feature Flags (LaunchDarkly)

This PR reads optional properties from two feature flags. No new LaunchDarkly flags need to be created — these are properties on existing flag objects.

confirmations_pay_fiat

Property Type Default Description
feeReserveMultiplier number 1 Multiplier applied to the original relay fee when reserving source tokens for the discovery quote. Increase (e.g. 1.5) if EXACT_OUTPUT quotes consistently exceed the settled balance after settlement.
maxRateDriftPercent number 10 Maximum allowed relay exchange rate drift (%) between the original fee quote and the post-settlement discovery quote. Increase if legitimate market moves cause false rejections.

confirmations_pay_post_quote

Property Type Default Description
gasBuffer number 1.1 Multiplier applied to the estimated gas cost when reserving native tokens for gas in post-quote flows. Accounts for minor gas limit variance between quote-time and submission-time batch estimation. Increase if zero-balance fiat deposits fail with insufficient funds.

No action required for launch — all properties default to safe values when absent. They exist as remote safety valves to tune post-settlement behavior without a code release.

References

Checklist

  • I've updated the test suite for new or updated code as appropriate
  • I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate
  • I've communicated my changes to consumers by updating changelogs for packages I've changed
  • I've introduced breaking changes in this PR and have prepared draft pull requests for clients and consumer packages to resolve them

Note

High Risk
Touches fiat on-ramp settlement, relay quoting/submit, EIP-7702 batch value and gas paths, and money-account deposit calldata—errors can block deposits or mis-route funds.

Overview
Fixes fiat MM Pay flows (especially moneyAccountDeposit) after on-ramp settlement by splitting post-settlement relay into simple vs nested-calldata paths and tightening wallet, quoting, gas, and batch behavior.

Fiat submit & client hook: After the ramp order completes, deposits with two or more nested calls use a new three-phase flow (discovery EXACT_INPUT with fee reserve → TransactionPayController:getAmountData to re-encode approve/deposit calldata and update requiredAssets → final EXACT_OUTPUT relay). Simpler deposits use a single EXACT_INPUT post-quote relay (skipProcessTransactions: false) for lower cost. Wallet resolution now prefers accountOverride over txParams.from; on-chain source amount uses baseRequest.from. Slippage checks move to validateRelayRateDrift (USD rate ratio) with tunable feeReserveMultiplier / maxRateDriftPercent flags. Totals use fiatPayment.amountFiat when a fiat strategy quote is present.

Relay quoting & submit: Post-quote gas estimation includes the original transaction in the batch (7702-friendly for zero-balance fiat users); native-source post-quote flows can reserve gas from the swap amount via getPostQuoteGasBuffer. skipProcessTransactions can override the default tied to isPostQuote. Prepended original txs in post-quote batches inherit relay gas price fields.

Transaction controller: EIP-7702 batch construction now sets top-level value to the sum of nested call values when non-zero.

API: Optional getAmountData callback on TransactionPayController (exported types + messenger action).

Reviewed by Cursor Bugbot for commit eb1521d. Bugbot is set up for automated code reviews on this repo. Configure here.

@OGPoyraz OGPoyraz requested a review from a team as a code owner June 3, 2026 12:24
@OGPoyraz OGPoyraz marked this pull request as draft June 3, 2026 12:24
@OGPoyraz OGPoyraz temporarily deployed to default-branch June 3, 2026 12:24 — with GitHub Actions Inactive
@OGPoyraz OGPoyraz changed the title Ogp/fiat money account deposit fix fix: Fiat flow on MoneyAccountDeposit Jun 3, 2026
Comment thread packages/transaction-pay-controller/src/strategy/fiat/fiat-submit.ts Outdated
@OGPoyraz OGPoyraz force-pushed the ogp/fiat-money-account-deposit-fix branch from 3f77b67 to 0560a35 Compare June 3, 2026 12:31
@OGPoyraz OGPoyraz marked this pull request as ready for review June 3, 2026 13:04
@OGPoyraz OGPoyraz requested a review from a team as a code owner June 3, 2026 13:04
@OGPoyraz OGPoyraz temporarily deployed to default-branch June 3, 2026 13:04 — with GitHub Actions Inactive
Comment thread packages/transaction-pay-controller/src/strategy/fiat/fiat-submit.ts Outdated
@OGPoyraz OGPoyraz force-pushed the ogp/fiat-money-account-deposit-fix branch from b3b05dd to 8ca96e8 Compare June 3, 2026 13:25
Comment thread packages/transaction-pay-controller/src/strategy/fiat/fiat-submit.ts Outdated
Comment thread packages/transaction-pay-controller/src/strategy/relay/relay-submit.test.ts Outdated
Comment thread packages/transaction-pay-controller/src/utils/totals.ts
Comment thread packages/transaction-pay-controller/src/utils/totals.ts
@OGPoyraz OGPoyraz changed the title fix: Fiat flow on MoneyAccountDeposit fix: MMPay fiat payment fixes Jun 3, 2026
### Added

- Add optional `getAmountData` callback to `TransactionPayControllerOptions` for client-side nested calldata re-encoding ([#8987](https://github.com/MetaMask/core/pull/8987))
- Add `TransactionPayController:getAmountData` messenger action ([#8987](https://github.com/MetaMask/core/pull/8987))
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we combine / nest some or all of these?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done


export type GetAmountDataRequest = {
/** Raw token amount (atomic units) to encode into calldata. */
amount: string;
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor, I think getPaymentOverrideData provides the human / formatted amount. Not sure which is easier for the client to handle.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

buildMoneyAccountDepositBatch in client was expecting raw amount hence I passed as is.
For reference: https://github.com/MetaMask/metamask-mobile/pull/31009/files#diff-c2390f54bc74c73163ad5949d6accb3524100bf2dd425db4dd82c1ed73d7076f

refundTo,
sourceAmounts,
tokens,
fiatPayment,
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor, alphabetical.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

? targetAmount.fiat
: amountFiat,
)
.plus(paymentAmountFiat)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For clarity and consistency, could we call this sourceAmountX and rename the function to getSourceAmount?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

const amountFiat = transactionData?.fiatPayment?.amountFiat;
const walletAddress = transaction.txParams.from as Hex;
const walletAddress =
transactionData?.accountOverride ?? (transaction.txParams.from as Hex);
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As discussed, this can always use request.from as it's the same calculation?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

const amountFiat = transactionData?.fiatPayment?.amountFiat;
const walletAddress = transaction.txParams.from as Hex;
const walletAddress =
transactionData?.accountOverride ?? (transaction.txParams.from as Hex);
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On line 95, below, it looks like we were already added the relay fee to the fiat amount?

So was it just the UI that wasn't reflecting that?

Copy link
Copy Markdown
Member Author

@OGPoyraz OGPoyraz Jun 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes but this is just a quote, real order flow (headless buy) starts when we click "Add funds" in UI where we need the amount again (in useFiatConfirm).

You may ask "why we are not passing the fiat quote amount while starting headless buy", but somehow I never see what amount we requested originally in the quote, either less or more amount saved in fiat quote entity, not sure why. Hence I subtract the fiat provider fee from totals.total in client
https://github.com/MetaMask/metamask-mobile/pull/31009/files#diff-aafbaf61a37d99028f87dea7fbe81be4508bc20412d534db932c1a1cd83e59b6

(tx) => {
for (const { nestedTransactionIndex, data } of updates) {
if (tx.nestedTransactions?.[nestedTransactionIndex]) {
tx.nestedTransactions[nestedTransactionIndex].data = data;
Copy link
Copy Markdown
Member

@matthewwalsh0 matthewwalsh0 Jun 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we not to update data also? In which case should we look at updateAtomicData in the transaction controller? Or have the new callback return the full data also?

Or are we just updating enough so the Relay quote can generate the delegation and include in the quote?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just updating enough parts so only nestedTransactions as other parts will be unnecessary for final quote happening in the Phase3 below.

const relayRequest: QuoteRequest = {
...baseRequest,
isMaxAmount: false,
isPostQuote: false,
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this not need to be conditional?

If we're doing a Perps or Predict deposit for example, we won't need transaction data, so we will want to use EXACT_INPUT instead of EXACT_OUTPUT so we can ensure nothing left over and cheaper Relay fees.

We won't even need the first discovery quote in that case so can avoid an entire additional request?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very valid point, I will make sure perps predict cases to use EXACT_OUTPUT, thanks.


// Phase 3: Real relay quote with delegation (standard crypto-like flow).
const relayRequest: QuoteRequest = {
...baseRequest,
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we're doing an EXACT_OUTPUT for money account deposit, what do we do with any remaining funds on the selected account after the fiat quote?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no clean way to avoid it, unfortunately it will leave some dust.

If we do the EXACT_INPUT for everything then the vault deposit calldata amount won't match what Relay delivers, causing reverts

targetAmountMinimum: settledTargetRaw,
};

const relayQuotes = await getRelayQuotes({
Copy link
Copy Markdown
Member

@matthewwalsh0 matthewwalsh0 Jun 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suppose we do a Ramps quote that gets $100 into the EOA.

And we get an EXACT_INPUT quote that tell us we can get $95.

And then we get our final EXACT_OUPUT quote targeting $95... Except the fees are higher in general on EXACT_OUTPUT, plus we now have our additional transaction data included. So what if it says the required source amount is $101?

Do we need to leave a buffer for additional cost so intentionally ask for less in the second quote? But that means we always have funds left over.

Or do we retry with repeating lower amounts until it's less than our balance? Meaning we have to repeatedly re-encode the amount.

Or do we just throw if we can't afford it? But that's not the user's fault so no way for them to remedy.

Essentially we have to consider the slippage twice, from original to discovery, and discovery to final.

Copy link
Copy Markdown
Member Author

@OGPoyraz OGPoyraz Jun 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Understood, so depends on the spread between EXACT_INPUT and EXACT_OUTPUT fees + the delegation gas overhead. I didn't foresee this point as I always did my tests on already delegated account.

There is no easy solution for that. But we can try adding potential buffer here for the non-delegated cases, which we can assume discovery phase determine partially (for fees) that. But not sure how can we determine the cost of delegation, maybe we can apply some dedicated amount for that. Would it make sense?

OGPoyraz added a commit that referenced this pull request Jun 4, 2026
- Consolidate duplicate changelog entries for #8987
- Alphabetize destructured properties in updateQuotes
- Rename getPaymentAmount to getSourceAmount for clarity
- Simplify walletAddress in fiat-quotes to use transaction.txParams.from
Comment thread packages/transaction-pay-controller/src/strategy/fiat/fiat-submit.ts Outdated
OGPoyraz added 9 commits June 4, 2026 17:27
Add optional getAmountData callback that re-encodes nested transaction
calldata for a given token amount. Used by transaction types with
non-standard nested data (e.g. vault approve + deposit) that require
client-side context (vault config, RPC providers) to encode.
After fiat order settlement, use a three-phase relay flow:
1. Discovery quote (EXACT_INPUT) to find settled target token output
2. Re-encode nested calldata via getAmountData callback
3. Real relay quote with delegation (EXACT_OUTPUT) for execution

Also removes validateRelaySlippage which incorrectly compared outputs
from relay quotes made with different source amounts, and removes
isMaxAmount:true which caused delegation errors with nested transactions.
- Fix unnecessary type assertion on requiredAssets hex amount
- Add JSDoc @param tags to validateRelayRateDrift
- Update fiat-submit tests for three-phase relay flow
- Add getAmountData controller tests
- Add rate drift, stale calldata, and discovery quote error tests
- 100% test coverage maintained
A better post-settlement rate benefits the user and should not block
fiat completion. Remove .abs() so only positive drift (rate worsened)
is rejected.
- Remove unused args parameter
- Replace non-null assertions with optional chaining
OGPoyraz added 9 commits June 4, 2026 17:30
The execute flow uses Relay's relayer to handle the source-side
transaction, so the user's EOA does not need to hold the source
tokens at submit time. This was causing fiat moneyAccountDeposit
to fail with 'Insufficient source token balance' after Transak
settlement.
The fiat quoting and submission flows used transaction.txParams.from as
the wallet address. For moneyAccountDeposit, txParams.from is the money
account address on the target chain, not the user's EOA. This caused:

- Ramps/Transak to receive the wrong deposit address
- resolveSourceAmountRaw to look for on-chain ETH at the wrong address
- Relay quotes to use the wrong from/user address
- Balance validation to check the wrong account

Use accountOverride (the user's selected EVM account) when available,
matching the pattern already used in quotes.ts.

Also revert the isExecute balance skip (no longer needed with correct
address) and remove hasFiatStrategy from totals calculation.
Reverts the test changes from the isExecute balance skip commit since
the source code was also reverted. Restores the original test that
validates source balance for execute flows.
The test validated the removed hasFiatStrategy path in calculateTotals.
With fiat strategy now using amountFiat consistently, this test case
is no longer applicable.
Pass fiatPayment.amountFiat from quote context into calculateTotals so
the fiat flow uses the user-entered fiat amount for the total instead
of deriving it from token amounts or targetAmount.
- Consolidate duplicate changelog entries for #8987
- Alphabetize destructured properties in updateQuotes
- Rename getPaymentAmount to getSourceAmount for clarity
- Simplify walletAddress in fiat-quotes to use transaction.txParams.from
Transactions without nested calldata (e.g. Perps, Predict deposits) now
use a single EXACT_INPUT relay quote after fiat settlement instead of the
three-phase discovery + re-encoding + delegation flow.

This reduces relay calls from 3 to 1, uses cheaper EXACT_INPUT fees,
and avoids leftover dust on the source chain.

The three-phase flow is preserved for moneyAccountDeposit and other
transactions with nested calldata that requires re-encoding.
@OGPoyraz OGPoyraz force-pushed the ogp/fiat-money-account-deposit-fix branch from 5ce7386 to d9d35fd Compare June 4, 2026 15:31
…iat submit

- Add fee-as-buffer strategy to prevent EXACT_OUTPUT cost overruns after
  fiat settlement by reserving the original relay fee from the discovery
  source amount and adding the discovery fee back to the final target.

- Simple deposits (Perps, Predict) skip the three-phase discovery flow
  and use a single EXACT_INPUT relay quote for cheaper fees and no dust.

- Split fiat-submit.ts into focused modules:
  - fiat-submit.ts: orchestration (polling, validation, routing)
  - fiat-submit-simple.ts: single EXACT_INPUT relay path
  - fiat-submit-with-calldata.ts: three-phase flow with fee buffer
  - utils.ts: shared validateRelayRateDrift, extractProviderCode

- Add configurable feeReserveMultiplier and maxRateDriftPercent via
  confirmations_pay_fiat feature flag with safe defaults (1 and 10%).
@OGPoyraz
Copy link
Copy Markdown
Member Author

OGPoyraz commented Jun 4, 2026

@metamaskbot publish-preview

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Jun 4, 2026

Preview builds have been published. Learn how to use preview builds in other projects.

Expand for full list of packages and versions.
@metamask-previews/account-tree-controller@7.5.1-preview-a65eb72
@metamask-previews/accounts-controller@39.0.0-preview-a65eb72
@metamask-previews/address-book-controller@7.1.2-preview-a65eb72
@metamask-previews/ai-controllers@0.7.0-preview-a65eb72
@metamask-previews/analytics-controller@1.1.0-preview-a65eb72
@metamask-previews/analytics-data-regulation-controller@0.0.0-preview-a65eb72
@metamask-previews/announcement-controller@8.1.0-preview-a65eb72
@metamask-previews/app-metadata-controller@2.0.1-preview-a65eb72
@metamask-previews/approval-controller@9.0.1-preview-a65eb72
@metamask-previews/assets-controller@8.3.2-preview-a65eb72
@metamask-previews/assets-controllers@108.5.0-preview-a65eb72
@metamask-previews/authenticated-user-storage@2.0.0-preview-a65eb72
@metamask-previews/base-controller@9.1.0-preview-a65eb72
@metamask-previews/base-data-service@0.1.3-preview-a65eb72
@metamask-previews/bridge-controller@73.2.1-preview-a65eb72
@metamask-previews/bridge-status-controller@72.0.2-preview-a65eb72
@metamask-previews/build-utils@3.0.4-preview-a65eb72
@metamask-previews/chain-agnostic-permission@1.6.1-preview-a65eb72
@metamask-previews/chomp-api-service@3.1.0-preview-a65eb72
@metamask-previews/claims-controller@0.5.2-preview-a65eb72
@metamask-previews/client-controller@1.0.1-preview-a65eb72
@metamask-previews/compliance-controller@2.1.0-preview-a65eb72
@metamask-previews/composable-controller@12.0.1-preview-a65eb72
@metamask-previews/config-registry-controller@0.4.0-preview-a65eb72
@metamask-previews/connectivity-controller@0.2.0-preview-a65eb72
@metamask-previews/controller-utils@12.1.0-preview-a65eb72
@metamask-previews/core-backend@6.3.2-preview-a65eb72
@metamask-previews/delegation-controller@3.0.1-preview-a65eb72
@metamask-previews/earn-controller@12.2.0-preview-a65eb72
@metamask-previews/eip-5792-middleware@3.0.4-preview-a65eb72
@metamask-previews/eip-7702-internal-rpc-middleware@0.1.1-preview-a65eb72
@metamask-previews/eip1193-permission-middleware@2.0.1-preview-a65eb72
@metamask-previews/ens-controller@19.1.3-preview-a65eb72
@metamask-previews/eth-block-tracker@15.0.1-preview-a65eb72
@metamask-previews/eth-json-rpc-middleware@23.1.3-preview-a65eb72
@metamask-previews/eth-json-rpc-provider@6.0.1-preview-a65eb72
@metamask-previews/foundryup@1.0.1-preview-a65eb72
@metamask-previews/gas-fee-controller@26.2.2-preview-a65eb72
@metamask-previews/gator-permissions-controller@4.2.0-preview-a65eb72
@metamask-previews/geolocation-controller@0.1.3-preview-a65eb72
@metamask-previews/json-rpc-engine@10.5.0-preview-a65eb72
@metamask-previews/json-rpc-middleware-stream@8.0.8-preview-a65eb72
@metamask-previews/keyring-controller@26.0.0-preview-a65eb72
@metamask-previews/logging-controller@8.0.2-preview-a65eb72
@metamask-previews/message-manager@14.1.2-preview-a65eb72
@metamask-previews/messenger@1.2.0-preview-a65eb72
@metamask-previews/messenger-cli@0.2.0-preview-a65eb72
@metamask-previews/money-account-balance-service@1.0.2-preview-a65eb72
@metamask-previews/money-account-controller@0.3.2-preview-a65eb72
@metamask-previews/money-account-upgrade-controller@2.0.3-preview-a65eb72
@metamask-previews/multichain-account-service@10.0.2-preview-a65eb72
@metamask-previews/multichain-api-middleware@3.1.3-preview-a65eb72
@metamask-previews/multichain-network-controller@3.1.3-preview-a65eb72
@metamask-previews/multichain-transactions-controller@7.1.1-preview-a65eb72
@metamask-previews/name-controller@9.1.2-preview-a65eb72
@metamask-previews/network-controller@32.0.0-preview-a65eb72
@metamask-previews/network-enablement-controller@5.3.0-preview-a65eb72
@metamask-previews/notification-services-controller@24.1.2-preview-a65eb72
@metamask-previews/passkey-controller@2.0.1-preview-a65eb72
@metamask-previews/permission-controller@13.1.1-preview-a65eb72
@metamask-previews/permission-log-controller@5.1.0-preview-a65eb72
@metamask-previews/perps-controller@7.0.0-preview-a65eb72
@metamask-previews/phishing-controller@17.2.0-preview-a65eb72
@metamask-previews/polling-controller@16.0.6-preview-a65eb72
@metamask-previews/preferences-controller@23.1.0-preview-a65eb72
@metamask-previews/profile-metrics-controller@3.1.6-preview-a65eb72
@metamask-previews/profile-sync-controller@28.1.1-preview-a65eb72
@metamask-previews/ramps-controller@14.1.1-preview-a65eb72
@metamask-previews/rate-limit-controller@7.0.1-preview-a65eb72
@metamask-previews/react-data-query@0.2.1-preview-a65eb72
@metamask-previews/remote-feature-flag-controller@4.2.2-preview-a65eb72
@metamask-previews/sample-controllers@5.0.1-preview-a65eb72
@metamask-previews/seedless-onboarding-controller@10.0.0-preview-a65eb72
@metamask-previews/selected-network-controller@26.1.3-preview-a65eb72
@metamask-previews/shield-controller@5.1.2-preview-a65eb72
@metamask-previews/signature-controller@39.2.4-preview-a65eb72
@metamask-previews/snap-account-service@0.3.0-preview-a65eb72
@metamask-previews/social-controllers@2.2.1-preview-a65eb72
@metamask-previews/storage-service@1.0.1-preview-a65eb72
@metamask-previews/subscription-controller@6.1.3-preview-a65eb72
@metamask-previews/transaction-controller@66.0.1-preview-a65eb72
@metamask-previews/transaction-pay-controller@23.1.0-preview-a65eb72
@metamask-previews/user-operation-controller@41.2.3-preview-a65eb72
@metamask-previews/wallet@2.0.0-preview-a65eb72

Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit eb1521d. Configure here.

messenger,
requests: [discoveryRequest],
transaction,
});
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Discovery double-subtracts native source

High Severity

The calldata discovery relay request sets isPostQuote: true only to force EXACT_INPUT, but that flag also runs post-quote gas subtraction when the source is the native gas token. That stacks on top of the fiat fee reserve already removed from sourceTokenAmount, so discovery uses an artificially small input. Downstream calculateAdjustedTarget, getAmountData, and validateRelayRateDrift can then be wrong or fail for native-funded moneyAccountDeposit flows.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit eb1521d. Configure here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants