Self Chain Docs
WebsiteTwitter
  • Learn
    • About Self Chain
    • Keyless wallet
      • MPC-TSS
      • Secure Signing
      • Account Abstraction
  • Getting Started
    • Glossary
    • Frequently Asked Questions
    • Set up a wallet
      • Adding Self Chain to Keplr Wallet
      • Setting up Keplr with Ledger Wallet
      • Adding Self Chain to Leap Cosmos Wallet
    • How To Stake SLF
    • Self Chain Mainnet
    • How to IBC Transfer
  • Developer Guide
    • Self Chain Networks
    • Frontend dApps
    • Faucet
  • SLF Tokenomics
    • Token Allocation and Utility
      • Bonded Tokens Vs Circulating Supply
      • Address Transparency
    • FRONT Migration
      • How to Bridge FRONT from BNB Chain (BEP20) to Ethereum (ERC20)
      • How to Migrate FRONT to SLF using Binance Convert
    • FRONT Migration FAQs
    • Central Exchanges FRONT to SLF Migration
  • Staking and Delegation
    • Delegating $SLF
    • Redelegating $SLF
    • Undelegating $SLF
    • How to delegate $SLF with Frontier Wallet
    • How to Delegate $SLF with Ledger
    • How to Participate in SLF Binance Simple Earn Product
  • Nodes & Validators
    • Node Setup Guide
    • Node Configuration FAQs
    • Run a Validator Node
    • Validator FAQs
    • Releases
    • Run a Validator Node with NodeOps
    • Setting up Cosmovisor
    • Log Console Troubleshooting
    • Run Selfchain testnet node
  • Governance
    • Draft a Proposal
      • Text Proposal
      • Community Spend Proposal
      • Paramter Change Proposal
      • Software Upgrade Proposal
      • Cancel Software Upgrade
    • Submitting a Proposal
    • Depositing funds
    • Voting on a Proposal
    • FAQs
  • Official Links
  • Branding and Logos
Powered by GitBook
On this page
  • General Node Setup
  • What are Self Chain network IDs?
  • Where to download the latest release of Self Chain software?
  • Where to find/download the Genesis file?
  • What should be the value of minimum-gas-prices in app.toml?
  • Where can I get a complete example of standard settings for app.toml, config.toml, and client.toml node configuration files?
  • Are the EVM APIs enabled by default?
  • What ports are used by the EVM API servers?
  • How to check if a node is synced?
  • How do I view my node ID?
  • How do I view my node IP?
  1. Nodes & Validators

Node Configuration FAQs

PreviousNode Setup GuideNextRun a Validator Node

Last updated 11 months ago

General Node Setup

What are Self Chain network IDs?

  • devnet: self-dev-1

  • testnet: self-test-1

  • mainnet: self-1

Where to download the latest release of Self Chain software?

The latest releases of Self Chain are located .

Where to find/download the Genesis file?

The latest genesis file for the Self Chain devnet is located .

The latest genesis file for the Self Chain mainnet is located .

What should be the value of minimum-gas-prices in app.toml?

The value of minimum-gas-prices is 0.005uslf

Where can I get a complete example of standard settings for app.toml, config.toml, and client.toml node configuration files?

Are the EVM APIs enabled by default?

No, by default, the REST API is disabled. To enable the REST API, edit the app.toml file, and set enable to true in the [api] section.

# Enable defines if the API server should be enabled.
enable = true

What ports are used by the EVM API servers?

By default, gRPC is enabled on port 9090. The app.toml file is where changes can be made in the gRPC section. To disable the gRPC endpoint, set enable to false. To change the port, use the address parameter.

# Address defines the gRPC server address to bind to.
address = "0.0.0.0:9090"

How to check if a node is synced?

You can view the log by using the command tail -f selfchain.out

Or check the node status with selfchaind status

If the current block height of your node is the same as the latest block height of Self Chain, your node is synced.

How do I view my node ID?

Use selfchaind tendermint show-node-id command, you will see your node ID on the response.

How do I view my node IP?

Your node IP should be the same as the MAC IP of your running machine.

here
here
here
9KB
app.toml
app.toml
705B
client.toml
client.toml
18KB
config.toml
config.toml