Aller au contenu principal
Version: Pre-Release

Tips & Tricks

Additional Tips

Welcome to the Additional Tips section! Whether you're a seasoned farmer or just starting out with the Subspace Network, these tips and tricks are designed to enhance your experience and efficiency. Here, we delve into practical advice and lesser-known techniques to help you fine-tune your farming setup and navigate common challenges with ease. From configuring your environment to managing background processes, these insights are tailored to ensure your Farmer operates smoothly and effectively. Let's dive in and explore how you can get the most out of your Subspace Network Farmer.

Telemetry & Block Explorer

Explore the Subspace Network in depth with our variety of telemetry tools and block explorers. Whether you're monitoring network activity or exploring blockchain data, these resources provide comprehensive insights into the network's performance and transactions.

  • Telemetry Server: Get real-time insights into network activity and performance metrics. Ideal for monitoring the overall health and status of the Subspace Network.

  • Official Block Explorer: Our primary tool for viewing blocks, transactions, and network activity on the Subspace Network. This explorer offers an intuitive interface and detailed information.

  • Subscan Block Explorer: An alternative block explorer providing detailed views of blocks, transactions, and network events. Subscan is known for its user-friendly interface and additional data analytics features.

  • Polkadot.js Block Explorer: For users familiar with the Polkadot ecosystem, this explorer offers a seamless experience for exploring the Subspace Network using the Polkadot.js interface.

Specify Version

The settings.toml file contains critical configurations for Pulsar, including the network your node connects to. Specify your network environment by setting the chain variable under the [node] section:

# settings.toml
[node]
chain = 'gemini-3g' //In this Example we have set to Gemini-3g
# ... additional configuration settings ...

Set the chain value to your target network identifier.

  • Local Development: Set to dev
  • Gemini Testnet: Set to gemini-3g

Moving the Farming Process to the Background

Learn More about Tmux

If you want to learn more about Tmux and its options check out their Repo here

  • Create a new tmux session using a socket file named farming
$ tmux -S farming
  • Move process to background by detaching
Ctrl+b d OR ⌘+b d (Mac)
  • To re-attach
$ tmux -S farming attach
  • Alternatively, you can use the following single command to both create (if not exists already) and attach to a session:
$ tmux new-session -A -D -s farming
  • To delete farming session
$ tmux kill-session -t farming