diff --git a/backend/app/models/subscription.py b/backend/app/models/subscription.py
index e7f4571..80b3706 100644
--- a/backend/app/models/subscription.py
+++ b/backend/app/models/subscription.py
@@ -93,7 +93,7 @@ TIER_CONFIG = {
"portfolio_limit": -1, # Unlimited portfolio
"listing_limit": -1, # Unlimited listings
"sniper_limit": 50, # Sniper alerts
- "check_frequency": "realtime", # Every 10 minutes
+ "check_frequency": "5min", # Every 5 minutes (was 10min)
"history_days": -1, # Unlimited
"features": {
"email_alerts": True,
diff --git a/backend/scripts/sync_all_zones.py b/backend/scripts/sync_all_zones.py
index 1ae9165..986b700 100644
--- a/backend/scripts/sync_all_zones.py
+++ b/backend/scripts/sync_all_zones.py
@@ -44,11 +44,7 @@ LOG_FILE = Path("/home/user/logs/zone_sync.log")
COMPRESS_DOMAIN_LISTS = True
# CZDS TLDs we have access to
-# NOTE: .org and .xyz are temporarily disabled - too large for 2GB RAM server
-# .org = 10M+ domains (~500MB RAM), .xyz = 8M+ domains (~400MB RAM)
-# Enable when server has more RAM or we implement streaming to SQLite
-CZDS_TLDS = ["app", "dev", "info", "online"] # Small/medium TLDs only
-CZDS_TLDS_DISABLED = ["org", "xyz"] # Too large for current server
+CZDS_TLDS = ["app", "dev", "info", "online", "org", "xyz"]
# Switch.ch AXFR config
SWITCH_CONFIG = {
diff --git a/frontend/src/app/pricing/page.tsx b/frontend/src/app/pricing/page.tsx
index 7bd372b..1a6bab2 100644
--- a/frontend/src/app/pricing/page.tsx
+++ b/frontend/src/app/pricing/page.tsx
@@ -65,7 +65,7 @@ const tiers = [
description: 'Full firepower. No limits.',
features: [
{ text: 'Market Feed', highlight: true, available: true, sublabel: 'Priority' },
- { text: 'Alert Speed', highlight: true, available: true, sublabel: '10 min' },
+ { text: 'Alert Speed', highlight: true, available: true, sublabel: '5 min' },
{ text: 'Unlimited Watchlist', highlight: true, available: true },
{ text: 'Unlimited Portfolio', highlight: true, available: true },
{ text: 'Unlimited Listings', highlight: true, available: true, sublabel: 'Featured' },
@@ -83,7 +83,7 @@ const tiers = [
const comparisonFeatures = [
{ name: 'Market Feed', scout: 'Raw', trader: 'Curated', tycoon: 'Priority + Early' },
- { name: 'Alert Speed', scout: 'Daily', trader: 'Hourly', tycoon: 'Every 10 min' },
+ { name: 'Alert Speed', scout: 'Daily', trader: 'Hourly', tycoon: 'Every 5 min' },
{ name: 'Watchlist', scout: '10 Domains', trader: '100 Domains', tycoon: 'Unlimited' },
{ name: 'Portfolio', scout: '3 Domains', trader: '50 Domains', tycoon: 'Unlimited' },
{ name: 'Listings', scout: '1 (Try it)', trader: '10 (0% Fee)', tycoon: 'Unlimited + Featured' },
@@ -98,7 +98,7 @@ const comparisonFeatures = [
const faqs = [
{
q: 'How fast will I know when a domain drops?',
- a: 'Depends on your plan. Scout: daily. Trader: hourly. Tycoon: every 10 minutes. When it drops, you\'ll know.',
+ a: 'Depends on your plan. Scout: daily. Trader: hourly. Tycoon: every 5 minutes. When it drops, you\'ll know.',
},
{
q: 'What\'s domain valuation?',
diff --git a/frontend/src/app/terminal/yield/page.tsx b/frontend/src/app/terminal/yield/page.tsx
index 54490e5..3001ec4 100644
--- a/frontend/src/app/terminal/yield/page.tsx
+++ b/frontend/src/app/terminal/yield/page.tsx
@@ -466,21 +466,6 @@ export default function YieldPage() {
- {/* FEATURE IN DEVELOPMENT BANNER */}
-
-
-
-
-
- Feature in Development Coming Soon
-
-
- We're building an automated yield system for your parked domains. Soon you'll be able to monetize idle domains with intelligent traffic routing. Stay tuned for updates!
-