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
5 changes: 5 additions & 0 deletions packages/bridge-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- **BREAKING:** Add `quickBuy` and `dappSwap` FeatureIds for external swap quote consumers ([#8598](https://github.com/MetaMask/core/pull/8598))
- **BREAKING:** Add `market_closed` and `quote_expired` QuoteWarning ([#8598](https://github.com/MetaMask/core/pull/8598))

### Changed

- Bump `@metamask/transaction-controller` from `^64.3.0` to `^64.4.0` ([#8585](https://github.com/MetaMask/core/pull/8585))
Expand Down
2 changes: 2 additions & 0 deletions packages/bridge-controller/src/utils/metrics/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ export type QuoteWarning =
| 'insufficient_gas_balance'
| 'insufficient_gas_for_selected_quote'
| 'insufficient_balance'
| 'market_closed'
| 'price_impact'
| 'quote_expired'
| 'tx_alert';

/**
Expand Down
2 changes: 2 additions & 0 deletions packages/bridge-controller/src/utils/validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export enum FeeType {

export enum FeatureId {
PERPS = 'perps',
QUICK_BUY = 'quickBuy',
DAPP_SWAP = 'dappSwap',
}

export enum ActionTypes {
Expand Down
Loading