belel-protocol / clone-monitor /mirror_check.sh
TTOPM's picture
Upload 4 files
b46a892 verified
raw
history blame
726 Bytes
#!/bin/bash
echo "[πŸ›°] Initiating external mirror check..."
TIMESTAMP=$(date)
echo "Timestamp: $TIMESTAMP" >> clone-monitor/WITNESS_LOGS/mirror_results.log
# Check for mentions on Hugging Face
echo "[πŸ”] Searching Hugging Face..." >> clone-monitor/WITNESS_LOGS/mirror_results.log
curl -s "https://huggingface.co/search/full-text?q=be-core-bridge" >> clone-monitor/WITNESS_LOGS/mirror_results.log
# Check IPFS mirrors (CID detection coming soon)
echo "[πŸ“‘] Checking IPFS..." >> clone-monitor/WITNESS_LOGS/mirror_results.log
curl -s "https://ipfs-search.com/#/search/be-core-bridge" >> clone-monitor/WITNESS_LOGS/mirror_results.log
echo "[βœ…] Mirror check complete." >> clone-monitor/WITNESS_LOGS/mirror_results.log