+
+
setWalletAddress(event.target.value)}
+ aria-invalid={Boolean(errors.walletAddress || errors.targets)}
+ aria-describedby={errors.walletAddress ? 'watchlist-wallet-error' : undefined}
+ placeholder="Paste a wallet address"
+ maxLength={MAX_ADDRESS_LENGTH}
+ disabled={isSubmitting}
+ />
+ {errors.walletAddress && (
+
+ {errors.walletAddress}
+
+ )}
+
+
+
+
+
setContractAddress(event.target.value)}
+ aria-invalid={Boolean(errors.contractAddress || errors.targets)}
+ aria-describedby={errors.contractAddress ? 'watchlist-contract-error' : undefined}
+ placeholder="Paste a contract address"
+ maxLength={MAX_ADDRESS_LENGTH}
+ disabled={isSubmitting}
+ />
+ {errors.contractAddress && (
+
+ {errors.contractAddress}
+
+ )}
+
+
+ {errors.targets && (
+