Mining Telestai

Telestai Mining Tools

Welcome to the Telestai mining documentation. Below you'll find information on various ways to mine Telestai, including mining software, pool mining, using a stratum proxy, and solo mining directly to your core wallet.

Mining Software and Pools

Join the decentralized revolution by mining Telestai and securing the network while earning rewards. We provide several mining software options and mining pools for different needs. Choose the one that best suits you!

Mining Software

MinerDownload Link
SRB MinerDownload SRB Miner (opens in a new tab)
WildRig MinerDownload WildRig Miner (opens in a new tab)
Native Meraki MinerDownload Meraki Miner (opens in a new tab)

Mining Pools

PoolJoin Link
CoinMinerzJoin CoinMinerz (opens in a new tab)
EvepoolJoin Evepool (opens in a new tab)
MulticoinJoin Multicoin (opens in a new tab)
CrimsonFusionJoin CrimsonFusion (opens in a new tab)
Mining4PeopleJoin Mining4People (opens in a new tab)
RPlantJoin RPlant (opens in a new tab)

Check out the individual pool pages for setup instructions and miner configurations.


Stratum Proxy Mining

Telestai supports stratum proxy mining, allowing you to mine directly to your wallet using mining software that supports the stratum protocol. This method is great for users who want more control over their mining operations.

Prerequisites

  • Python 3.8+ installed.
  • Telemeraki Miner or another supported miner.
  • A configured Telestai Core Wallet.

Setting Up Stratum Proxy

  1. Download the Stratum Proxy:

  2. Install Dependencies:

    python3 -m pip install -r requirements.txt
  3. Run the Stratum Proxy (Example for Mainnet):

    python3 telestai-stratum-proxy.py --rpcuser my_username --rpcpassword my_password --rpcip 127.0.0.1 --rpcport 8766 -j
  4. Connect Your Miner:

    • Example for T-Rex Miner:
    t-rex -a kawpow -o stratum+tcp://127.0.0.1:54321 -u YOUR_WALLET_ADDRESS -p x

Refer to the Stratum Proxy repository for more details on options and configurations.


Solo Mining Direct to Core

For users who prefer to mine directly to their Telestai core wallet, here is a quick setup guide for both Windows and Linux.

Prerequisites

  1. Telestai Core Wallet installed and synced.
  2. Telemeraki Miner downloaded.

Configuration File Setup

Windows

  1. Locate the Telestai Data Directory:

    • Navigate to: C:\Users\<username>\AppData\Roaming\Telestai.
  2. Create/Edit telestai.conf: Add the following lines:

    listen=1
    server=1
    daemon=1
    rpcuser=user
    rpcpassword=admin
    miningaddress=TtipN9cJNiXbcf9fJo4nMWG5A1ag5FSZm3
    rpcport=8766
    rpcallowip=127.0.0.1
    rpcbind=127.0.0.1
    addnode=45.79.159.32
  3. Restart your wallet after saving the configuration.

Linux

  1. Locate the Telestai Data Directory:

    • Navigate to: ~/.telestai.
  2. Create/Edit telestai.conf:

    nano ~/.telestai/telestai.conf

    Add the same configuration lines as above.

  3. Restart your wallet after saving the file.

Starting the Miner

Windows

  1. Open Command Prompt:
    cd path\to\telemerakiminer
    telemerakiminer.exe -U -P http://user:[email protected]:8766/

Linux

  1. Open Terminal:
    cd path/to/telemerakiminer
    ./telemerakiminer -U -P http://user:[email protected]:8766/

Important Notes

  • Keep your rpcuser and rpcpassword secure.
  • Ensure your wallet is running and fully synced before starting your miner.
  • Always replace the example mining address with your own.

For additional assistance, visit the Telestai Community on Discord (opens in a new tab).