File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919- Upgrade ` @metamask/base-controller ` from ` ^7.0.1 ` to ` ^8.3.0 ` ([ #529 ] ( https://github.com/MetaMask/smart-transactions-controller/pull/529 ) )
2020- Upgrade ` @metamask/polling-controller ` from ` ^12.0.0 ` to ` ^14.0.0 ` ([ #529 ] ( https://github.com/MetaMask/smart-transactions-controller/pull/529 ) )
2121
22+ ### Removed
23+
24+ - ** BREAKING:** Remove default export
25+ - Use ` import { SmartTransactionsController } from '@metamask/smart-transactions-controller' ` instead.
26+
2227## [ 18.1.0]
2328
2429### Added
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ export type SmartTransactionsControllerPollingInput = {
220220 chainIds : Hex [ ] ;
221221} ;
222222
223- export default class SmartTransactionsController extends StaticIntervalPollingController < SmartTransactionsControllerPollingInput > ( ) <
223+ export class SmartTransactionsController extends StaticIntervalPollingController < SmartTransactionsControllerPollingInput > ( ) <
224224 typeof controllerName ,
225225 SmartTransactionsControllerState ,
226226 SmartTransactionsControllerMessenger
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- export { default } from './SmartTransactionsController' ;
1+ export { SmartTransactionsController } from './SmartTransactionsController' ;
22export type {
33 SmartTransactionsControllerMessenger ,
44 SmartTransactionsControllerState ,
You can’t perform that action at this time.
0 commit comments