You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
404 B
14 lines
404 B
import addEthereumChain from './add-ethereum-chain';
|
|
import switchEthereumChain from './switch-ethereum-chain';
|
|
import getProviderState from './get-provider-state';
|
|
import logWeb3ShimUsage from './log-web3-shim-usage';
|
|
import watchAsset from './watch-asset';
|
|
|
|
const handlers = [
|
|
addEthereumChain,
|
|
switchEthereumChain,
|
|
getProviderState,
|
|
logWeb3ShimUsage,
|
|
watchAsset,
|
|
];
|
|
export default handlers;
|
|
|