Skip to content
Open
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-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add support for `transactionHistoryLimit` feature flag to configure the maximum number of transactions stored in state ([#7648](https://github.com/MetaMask/core/pull/7648))
- Defaults to 40 if not provided.
- Add optional `callTraceErrors` to `simulationData` ([#7641](https://github.com/MetaMask/core/pull/7641))
- Add `merklYieldClaim` transaction type ([#7723](https://github.com/MetaMask/core/pull/7723))

### Changed

Expand Down
5 changes: 5 additions & 0 deletions packages/transaction-controller/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -770,6 +770,11 @@ export enum TransactionType {
*/
lendingWithdraw = 'lendingWithdraw',

/**
* A transaction that claims yield from a Merkl Yield contract.
*/
merklYieldClaim = 'merklYieldClaim',
Copy link
Member

Choose a reason for hiding this comment

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

Temporary hold while we discuss use case.

Copy link
Contributor

@Matt561 Matt561 Jan 26, 2026

Choose a reason for hiding this comment

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

@PatrykLucka @matthewwalsh0 - Would a more generic "yieldClaim" tx type make more sense here? My understanding here is that we'd like the custom tx type to easily display yield claims in the activity list + potentially having custom confirmation screens down the road. @PatrykLucka Please correct me if I'm wrong! 😄


/**
* A transaction that converts tokens to mUSD.
*/
Expand Down