github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/docs/gno-tooling/cli/gnoland.md (about) 1 --- 2 id: gno-tooling-gnoland 3 --- 4 5 # gnoland 6 7 ## Run a Gnoland Node 8 9 Start a node on the Gnoland blockchain with the following command. 10 11 ```bash 12 gnoland 13 ``` 14 15 ### **Sub Commands** 16 | Command | Description | 17 | --------- | ----------------- | 18 | `start` | Run the full node | 19 20 21 ### **Options** 22 23 | Name | Type | Description | 24 |----------------------------| ------- | --------------------------------------------------------------------------------------- | 25 | `chainid` | String | The id of the chain (default: `dev`). | 26 | `genesis-balances-file` | String | The initial GNOT distribution file (default: `./gnoland/genesis/genesis_balances.txt`). | 27 | `genesis-remote` | String | Replacement '%%REMOTE%%' in genesis (default: `"localhost:26657"`). | 28 | `genesis-txs-file` | String | Initial txs to be executed (default: `"./gnoland/genesis/genesis_txs.jsonl"`). | 29 | `data-dir` | String | directory for config and data (default: `gnoland-data`). | 30 | `skip-failing-genesis-txs` | Boolean | Skips transactions that fail from the `genesis-txs-file` | 31 | `skip-start` | Boolean | Quits after initialization without starting the node. |