2021-02-23 17:32:46 +01:00
|
|
|
import addEthereumChain from './add-ethereum-chain';
|
2021-05-10 21:14:21 +02:00
|
|
|
import switchEthereumChain from './switch-ethereum-chain';
|
2021-02-04 19:15:23 +01:00
|
|
|
import getProviderState from './get-provider-state';
|
|
|
|
import logWeb3ShimUsage from './log-web3-shim-usage';
|
|
|
|
import watchAsset from './watch-asset';
|
2020-09-18 20:55:05 +02:00
|
|
|
|
2021-02-12 16:25:58 +01:00
|
|
|
const handlers = [
|
2021-02-23 17:32:46 +01:00
|
|
|
addEthereumChain,
|
2021-05-10 21:14:21 +02:00
|
|
|
switchEthereumChain,
|
2021-02-12 16:25:58 +01:00
|
|
|
getProviderState,
|
|
|
|
logWeb3ShimUsage,
|
|
|
|
watchAsset,
|
|
|
|
];
|
2021-02-04 19:15:23 +01:00
|
|
|
export default handlers;
|