diff --git a/packages/phishing-controller/CHANGELOG.md b/packages/phishing-controller/CHANGELOG.md index b3575e5b3ae..58c900fa454 100644 --- a/packages/phishing-controller/CHANGELOG.md +++ b/packages/phishing-controller/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Export `TokenScanCacheData` and `TokenScanResultType` to allow consumers to have a type to reference if grabbing values directly from the controller's state ([#7208](https://github.com/MetaMask/core/pull/7208)) + ## [16.0.0] ### Added diff --git a/packages/phishing-controller/src/index.ts b/packages/phishing-controller/src/index.ts index 234b3b1ab77..1e52e713a2e 100644 --- a/packages/phishing-controller/src/index.ts +++ b/packages/phishing-controller/src/index.ts @@ -8,6 +8,7 @@ export type { } from './PhishingDetector'; export { PhishingDetector } from './PhishingDetector'; export type { PhishingDetectionScanResult, AddressScanResult } from './types'; +export type { TokenScanCacheData, TokenScanResultType } from './types'; export { PhishingDetectorResultType, RecommendedAction,