diff --git a/web/cashtab/src/components/Common/EnhancedInputs.js b/web/cashtab/src/components/Common/EnhancedInputs.js
--- a/web/cashtab/src/components/Common/EnhancedInputs.js
+++ b/web/cashtab/src/components/Common/EnhancedInputs.js
@@ -7,7 +7,6 @@
 } from 'components/Common/CustomIcons';
 import styled, { css } from 'styled-components';
 import ScanQRCode from './ScanQRCode';
-import useBCH from 'hooks/useBCH';
 import { currency } from 'components/Common/Ticker.js';
 
 const { TextArea } = Input;
@@ -408,23 +407,3 @@
         </Select>
     );
 };
-
-export const AddressValidators = () => {
-    const { BCH } = useBCH();
-
-    return {
-        safelyDetectAddressFormat: value => {
-            try {
-                return BCH.Address.detectAddressFormat(value);
-            } catch (error) {
-                return null;
-            }
-        },
-        isSLPAddress: value =>
-            AddressValidators.safelyDetectAddressFormat(value) === 'slpaddr',
-        isBCHAddress: value =>
-            AddressValidators.safelyDetectAddressFormat(value) === 'cashaddr',
-        isLegacyAddress: value =>
-            AddressValidators.safelyDetectAddressFormat(value) === 'legacy',
-    }();
-};