--- title: snrd description: The Sonr blockchain daemon (server) command --- The main command for running and interacting with the Sonr blockchain node. ## Usage ```shell snrd [command] ``` ## Available Commands | Command | Description | |---------|-------------| | `auth` | User authentication with Passkeys | | `comet` | CometBFT subcommands | | `config` | Utilities for managing application configuration | | `debug` | Tool for helping with debugging your application | | `export` | Export state to JSON | | `genesis` | Application's genesis-related subcommands | | `gov` | Governance utilities | | `help` | Help about any command | | `index-eth-tx` | Index historical eth txs | | `init` | Initialize private validator, p2p, genesis, and application configuration files | | `keys` | Manage your application's keys | | `prune` | Prune app history states by keeping the recent heights and deleting old heights | | `query` | Querying subcommands | | `rollback` | Rollback Cosmos SDK and CometBFT state by one height | | `snapshots` | Manage local snapshots | | `start` | Run the full node | | `status` | Query remote node for status | | `tx` | Transactions subcommands | | `version` | Print the application binary version information | | `wallet` | Wallet operations | ## Flags ## Examples ### Start a node ```shell snrd start ``` ### Query node status ```shell snrd status ``` ### Initialize a new node ```shell snrd init my-node --chain-id sonrtest_1-1 ``` ### Get help for any command ```shell snrd [command] --help ``` ## See Also - [snrd auth](./snrd_auth) - User authentication with Passkeys - [snrd genesis](./snrd_genesis) - Genesis-related subcommands - [snrd init](./snrd_init) - Initialize node configuration - [snrd keys](./snrd_keys) - Manage application keys - [snrd query](./snrd_query) - Query blockchain state - [snrd tx](./snrd_tx) - Submit transactions