========================================================== XCFUND // TERMINAL CHEATSHEET ========================================================== You do not need to be technical. A terminal is just a text box where you type a command and press enter. 1. OPEN A TERMINAL ---------------------------------------------------------- macOS Open Spotlight (Cmd + Space), type "Terminal", press enter. Windows Open the Start menu, type "PowerShell", press enter. 2. GET THE TOOL READY (one time) ---------------------------------------------------------- Install the requirements: pip install -r automation/requirements.txt Paste in your license key (from your Whop purchase): export XCFUND_LICENSE_TOKEN="XC-KEY-yourkey" (On Windows PowerShell: $env:XCFUND_LICENSE_TOKEN="XC-KEY-yourkey") 3. THE COMMANDS ---------------------------------------------------------- Every command starts the same way: python3 run.py check Check one name right now. python3 run.py check acme once --limit N Run a batch, then stop. python3 run.py once --limit 100 bot Run continuously. Stop with Ctrl + C. python3 run.py bot analyze On-chain data for an address or ENS name. python3 run.py analyze vitalik.eth learn A hands-on guided tour, inside the tool. python3 run.py learn 4. READING THE OUTPUT ---------------------------------------------------------- open the name is free registered the name is taken [hit] an available name (also sent to your feed) 5. HANDY TERMINAL BASICS ---------------------------------------------------------- Ctrl + C stop whatever is running Up arrow bring back your last command cd folder move into a folder ls (dir) list what is in the current folder clear (cls) clean up the screen ---------------------------------------------------------- Stuck? Contact: t.me/xcpaid ==========================================================