1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00
metamask-extension/app/scripts/lib/rpc-method-middleware/handlers/index.js
Erik Marks c3eb272af9
Use method middleware for watchAsset (#9943)
* Use method middleware for watchAsset
* Update validation error messages
* Make addSuggestedERC20Asset private
* Remove redundant check in _handleWatchAssetERC20
2020-12-02 08:49:49 -08:00

6 lines
152 B
JavaScript

import logWeb3Usage from './log-web3-usage'
import watchAsset from './watch-asset'
const handlers = [logWeb3Usage, watchAsset]
export default handlers