复制 <CodeGroup>
```bash Basic
evmd start
```
```bash "With JSON-RPC"
evmd start \
--json-rpc.enable \
--json-rpc.api eth,net,web3,txpool
```
```bash "Full Configuration"
evmd start \
--json-rpc.enable \
--json-rpc.address 0.0.0.0:8545 \
--json-rpc.ws-address 0.0.0.0:8546 \
--json-rpc.api eth,net,web3,txpool,debug \
--json-rpc.enable-indexer \
--json-rpc.gas-cap 50000000
```
</CodeGroup>
### Node Initialization
<CodeGroup>
```bash "Basic Init"
evmd init my-node --chain-id Ontomir-evm-1
```
```bash "Custom Settings"
evmd init my-validator \
--chain-id Ontomir-evm-1 \
--default-denom atest \
--initial-height 1
```
```bash "Overwrite Existing"
evmd init my-node \
--chain-id Ontomir-evm-1 \
--overwrite
```
</CodeGroup>
### Node Status
```bash
evmd status
```
### Transaction Indexing
<CodeGroup>
```bash "Index Forward"
evmd index-eth-tx forward
```
```bash "Index Backward"
evmd index-eth-tx backward
```
</CodeGroup>