mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 17:31:03 +00:00
a53b47e11a
* Started work on state db * Updated for a new hash type * Pruning and tests * Generalize on the block hash/key type * Integrate with the client backend * Merge w master * CLI options * Updated for light client refactoring * Used IntoIterator * Fixed invalid input hadling
99 lines
2.6 KiB
YAML
99 lines
2.6 KiB
YAML
name: polkadot
|
|
author: "Parity Team <admin@parity.io>"
|
|
about: Polkadot Node Rust Implementation
|
|
args:
|
|
- log:
|
|
short: l
|
|
long: log
|
|
value_name: LOG_PATTERN
|
|
help: Sets a custom logging filter
|
|
takes_value: true
|
|
- base-path:
|
|
long: base-path
|
|
short: d
|
|
value_name: PATH
|
|
help: Specify custom base path
|
|
takes_value: true
|
|
- keystore-path:
|
|
long: keystore-path
|
|
value_name: PATH
|
|
help: Specify custom keystore path
|
|
takes_value: true
|
|
- key:
|
|
long: key
|
|
value_name: STRING
|
|
help: Specify additional key seed
|
|
takes_value: true
|
|
- node-key:
|
|
long: node-key
|
|
value_name: KEY
|
|
help: Specify node secret key (64-character hex string)
|
|
takes_value: true
|
|
- collator:
|
|
long: collator
|
|
help: Enable collator mode
|
|
takes_value: false
|
|
- validator:
|
|
long: validator
|
|
help: Enable validator mode
|
|
takes_value: false
|
|
- light:
|
|
long: light
|
|
help: Run in light client mode
|
|
takes_value: false
|
|
- dev:
|
|
long: dev
|
|
help: Run in development mode; implies --chain=dev --validator --key Alice
|
|
takes_value: false
|
|
- build-genesis:
|
|
long: build-genesis
|
|
help: Build a genesis.json file, outputing to stdout
|
|
takes_value: false
|
|
- port:
|
|
long: port
|
|
value_name: PORT
|
|
help: Specify p2p protocol TCP port
|
|
takes_value: true
|
|
- rpc-port:
|
|
long: rpc-port
|
|
value_name: PORT
|
|
help: Specify HTTP RPC server TCP port
|
|
takes_value: true
|
|
- ws-port:
|
|
long: ws-port
|
|
value_name: PORT
|
|
help: Specify WebSockets RPC server TCP port
|
|
takes_value: true
|
|
- bootnodes:
|
|
long: bootnodes
|
|
value_name: URL
|
|
help: Specify a list of bootnodes
|
|
takes_value: true
|
|
multiple: true
|
|
- chain:
|
|
long: chain
|
|
value_name: CHAIN_SPEC
|
|
help: Specify the chain specification (one of dev, local or poc-2)
|
|
takes_value: true
|
|
- pruning:
|
|
long: pruning
|
|
value_name: PRUNING_MODE
|
|
help: Specify the pruning mode. (a number of blocks to keep or "archive"). Default is 256.
|
|
takes_value: true
|
|
- name:
|
|
long: name
|
|
value_name: NAME
|
|
help: The human-readable name for this node, as reported to the telemetry server, if enabled
|
|
takes_value: true
|
|
- telemetry:
|
|
short: t
|
|
long: telemetry
|
|
help: Should connect to the Polkadot telemetry server (off by default)
|
|
takes_value: false
|
|
- telemetry-url:
|
|
long: telemetry-url
|
|
value_name: TELEMETRY_URL
|
|
help: The URL of the telemetry server. Implies --telemetry
|
|
takes_value: true
|
|
subcommands:
|