Skip to content

Commit

Permalink
fix: remove etherscan activity for bsc
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed Dec 18, 2024
1 parent eec3ed6 commit 9c80f90
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/extension/src/providers/ethereum/networks/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import icon from './icons/bsc.svg';
import { CoingeckoPlatform, NetworkNames } from '@enkryptcom/types';
import { EvmNetwork, EvmNetworkOptions } from '../types/evm-network';
import assetsInfoHandler from '@/providers/ethereum/libs/assets-handlers/assetinfo-mew';
import { EtherscanActivity } from '../libs/activity-handlers';
import wrapActivityHandler from '@/libs/activity-state/wrap-activity-handler';
import shNFTHandler from '@/libs/nft-handlers/simplehash';

const bscOptions: EvmNetworkOptions = {
Expand All @@ -23,7 +21,7 @@ const bscOptions: EvmNetworkOptions = {
basePath: "m/44'/714'",
NFTHandler: shNFTHandler,
assetsInfoHandler,
activityHandler: wrapActivityHandler(EtherscanActivity),
activityHandler: () => Promise.resolve([]),
};

const bsc = new EvmNetwork(bscOptions);
Expand Down

0 comments on commit 9c80f90

Please sign in to comment.