mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
3bf94164ac
* @metamask/inpage-provider@^8.0.0 * Replace public config store with JSON-RPC notifications * Encapsulate notification permissioning in permissions controller * Update prefix of certain internal RPC methods and notifications * Add accounts to getProviderState * Send accounts with isUnlocked notification (#10007) * Rename provider streams, notify provider of stream failures (#10006)
7 lines
235 B
JavaScript
7 lines
235 B
JavaScript
import getProviderState from './get-provider-state'
|
|
import logWeb3ShimUsage from './log-web3-shim-usage'
|
|
import watchAsset from './watch-asset'
|
|
|
|
const handlers = [getProviderState, logWeb3ShimUsage, watchAsset]
|
|
export default handlers
|