@ethereansos/interfaces-core 0.4.113 → 0.4.116

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js CHANGED
@@ -48923,12 +48923,13 @@ var Web3ContextInitializer = function Web3ContextInitializer(_ref) {
48923
48923
  intervalId && clearInterval(intervalId);
48924
48924
  tryUpdateBlock(wallet === null || wallet === void 0 ? void 0 : wallet.ethereum, block, setBlock, true);
48925
48925
  tryUpdateBlock(dualProvider, dualBlock, setDualBlock, true);
48926
- wallet && wallet.ethereum && setIntervalId(setInterval(function () {
48927
- return tryUpdateBlock(wallet.ethereum, block, setBlock);
48928
- }, realBlockIntervalTimeout));
48929
- dualProvider && setIntervalId(setInterval(function () {
48930
- return tryUpdateBlock(dualProvider, dualBlock, setDualBlock);
48931
- }, realBlockIntervalTimeout));
48926
+
48927
+ if (wallet && wallet.ethereum || dualProvider) {
48928
+ setIntervalId(setInterval(function () {
48929
+ wallet && wallet.ethereum && tryUpdateBlock(wallet.ethereum, block, setBlock);
48930
+ dualProvider && tryUpdateBlock(dualProvider, dualBlock, setDualBlock);
48931
+ }, realBlockIntervalTimeout));
48932
+ }
48932
48933
  }, [wallet, dualProvider, realBlockIntervalTimeout, intervalId]);
48933
48934
  React.useEffect(resetBlockInterval, [realBlockInterval, realBlockIntervalTimeout, wallet && wallet.ethereum, dualProvider]);
48934
48935
  React.useEffect(function () {