- Mainnet
- Testnet
- Local Network
Injective Mainnet has a chain-id of
Option 2. State Sync (CometBFT P2P)State sync bootstraps a node by downloading a state machine snapshot from peers via the CometBFT P2P layer, rather than replaying all historical blocks. It requires two trusted RPC servers. See the RPC Providers page on the Chain Portal for available endpoints. Configure it in To obtain the trust height and hash:Option 3. Block Sync (full replay)The default behavior. The node downloads and replays every block from peers. Slowest method but requires no external snapshots. Not practical for mainnet unless syncing from a recent snapshot height.Sync method comparison:
Install
Each Injective core release includes Running the Verify the checksum:Configure seeds for peer discovery (see Peer discovery in the Sync Options section) and set Configuring the node using
Two configuration files are automatically generated inside Configure
Edit the config at Starting and restarting the systemd service:The service should be stopped before and started after snapshot data has been loaded into the correct directory.
SupportFor any further questions, you can always connect with the Injective Team via Discord, Telegram, or email
injective-1.Sync Options
Snapshot restore, state sync, and block sync
Node Software
Install injectived, configure, and run
Hardware
Minimum and recommended specifications
Sync Options
Choose how to bootstrap your node with chain data. For most operators, snapshot restore is the fastest path to a running node.Option 1. Snapshot Restore (recommended)Download a pre-built snapshot and extract it into your data directory. This is the fastest and most reliable way to sync a new node.Injective provides official pruned snapshots (goleveldb, ~2-3 GB) and the community maintains additional options. See the Snapshots page on the Chain Portal for download links, usage instructions, and community providers.Validators: You must back up and restore
priv_validator_state.json during snapshot recovery. See the Validator Troubleshooting Guide for the full procedure.config.toml under [statesync]:Peer discovery
Your node needs peers to sync with the network. Add seeds or persistent peers to the[p2p] section of ~/.injectived/config/config.toml. Community providers maintain up-to-date seed and peer lists:- Polkachu Injective Seeds
- Decentrio Injective Infrastructure (seeds, peers, address book)
Node Software
Install injectived
Each Injective core release includes injectived, peggo (the Peggy bridge orchestrator), and libwasmvm in a single zip. Validators must run peggo alongside their node. Non-validator node operators only need injectived.Initialize a New Injective Node
Before running an Injective node, initialize the chain and genesis file:init command will create injectived default configuration files at ~/.injectived.Prepare Configuration to Join Mainnet
Download the mainnet genesis file. Injective provides this alongside the official snapshots:timeout_commit to 300ms in ~/.injectived/config/config.toml.Configuring the node using app.toml and config.toml
Two configuration files are automatically generated inside ~/.injectived/config:config.toml: configures the consensus layer (CometBFT). Learn more in the consensus layer documentation.app.toml: configures the application and execution layer of the node, including state pruning strategies, telemetry, gRPC and REST server configurations, state sync, and more.
Configure systemd service for injectived (optional)
Edit the config at /etc/systemd/system/injectived.service:Hardware
Node operators should deploy bare metal servers to achieve optimal performance. Validator nodes must meet the recommended hardware specifications, particularly the CPU requirements, to ensure high uptime.SupportFor any further questions, you can always connect with the Injective Team via Discord, Telegram, or email
