parity-zcash/pbtc/cli.yml

120 lines
3.7 KiB
YAML
Raw Normal View History

2016-09-30 05:44:50 -07:00
name: pbtc
version: "0.1.0"
2017-08-29 06:25:08 -07:00
author: Parity Technologies <info@parity.io>
about: Parity Bitcoin client
2016-09-30 05:44:50 -07:00
args:
2016-09-30 05:59:16 -07:00
- testnet:
long: testnet
2017-08-29 06:25:08 -07:00
help: Use the test network (Testnet3).
2016-11-05 07:32:57 -07:00
- regtest:
long: regtest
2017-08-29 06:25:08 -07:00
help: Use a private network for regression tests.
- btc:
long: btc
2018-04-16 03:42:43 -07:00
help: Use Bitcoin Core verification rules (BTC).
- bch:
long: bch
help: Use Bitcoin Cash verification rules (BCH).
2018-05-17 23:54:06 -07:00
- zcash:
long: zcash
help: Use ZCash verification rules (ZCH).
2016-09-30 05:44:50 -07:00
- connect:
short: c
long: connect
value_name: IP
2017-08-29 06:25:08 -07:00
help: Connect only to the specified node.
2016-09-30 05:44:50 -07:00
takes_value: true
- host:
short: h
long: host
value_name: HOST
help: Listen for connections on HOST.
takes_value: true
2016-09-30 05:59:16 -07:00
- seednode:
short: s
long: seednode
value_name: IP
2017-08-29 06:25:08 -07:00
help: Connect to a seed-node to retrieve peer addresses, and disconnect.
2016-09-30 05:59:16 -07:00
takes_value: true
2016-09-30 07:25:28 -07:00
- port:
long: port
value_name: PORT
2017-08-29 06:25:08 -07:00
help: Listen for connections on PORT.
2016-09-30 07:25:28 -07:00
takes_value: true
2017-08-29 06:36:26 -07:00
- quiet:
short: q
long: quiet
help: Do not show any synchronization information in the console.
2016-11-24 22:58:04 -08:00
- data-dir:
short: d
long: data-dir
value_name: PATH
2017-08-29 06:25:08 -07:00
help: Specify the database and configuration directory PATH.
2016-11-24 22:58:04 -08:00
takes_value: true
2016-11-21 01:06:55 -08:00
- db-cache:
long: db-cache
2017-04-13 23:25:25 -07:00
value_name: SIZE
2017-08-29 06:25:08 -07:00
help: Sets the database cache size.
2017-04-13 23:25:25 -07:00
takes_value: true
- only-net:
long: only-net
value_name: NET
2017-08-29 06:25:08 -07:00
help: Only connect to nodes in network version <NET> (ipv4 or ipv6).
takes_value: true
2016-12-07 05:14:52 -08:00
- no-jsonrpc:
long: no-jsonrpc
2017-08-29 06:25:08 -07:00
help: Disable the JSON-RPC API server.
2016-12-07 05:14:52 -08:00
- jsonrpc-port:
long: jsonrpc-port
2017-08-29 06:25:08 -07:00
help: Specify the PORT for the JSONRPC API server.
2016-12-07 05:14:52 -08:00
takes_value: true
value_name: PORT
- jsonrpc-interface:
long: jsonrpc-interface
2017-08-29 06:25:08 -07:00
help: The hostname portion of the JSONRPC API server.
2016-12-07 05:14:52 -08:00
takes_value: true
value_name: INTERFACE
- jsonrpc-cors:
long: jsonrpc-cors
2017-08-29 06:25:08 -07:00
help: Specify CORS header for JSON-RPC API responses.
2016-12-07 05:14:52 -08:00
takes_value: true
value_name: URL
- jsonrpc-apis:
long: jsonrpc-apis
2017-09-01 04:23:41 -07:00
help: Specify the APIs available through the JSONRPC interface. APIS is a comma-delimited list of API names. Available APIs are blockchain, network, miner, raw.
2016-12-07 05:14:52 -08:00
takes_value: true
value_name: APIS
- jsonrpc-hosts:
long: jsonrpc-hosts
2017-08-29 06:25:08 -07:00
help: List of allowed Host header values.
2016-12-07 05:14:52 -08:00
takes_value: true
value_name: HOSTS
2017-01-10 00:58:55 -08:00
- blocknotify:
long: blocknotify
2017-08-29 06:26:44 -07:00
help: Execute COMMAND when the best block changes (%s in COMMAND is replaced by the block hash).
2017-01-10 00:58:55 -08:00
takes_value: true
2017-08-29 06:26:44 -07:00
value_name: COMMAND
- verification-level:
long: verification-level
2017-08-29 06:25:08 -07:00
help: Sets the Blocks verification level to full (default), header (scripts are not verified), or none (no verification at all).
takes_value: true
value_name: LEVEL
- verification-edge:
long: verification-edge
2017-08-29 06:25:08 -07:00
help: Non-default verification-level is applied until a block with given hash is met.
takes_value: true
value_name: BLOCK
2016-11-03 03:53:39 -07:00
subcommands:
2016-10-30 19:12:44 -07:00
- import:
2017-08-29 06:25:08 -07:00
about: Import blocks from a Bitcoin Core database.
2016-11-03 03:53:39 -07:00
args:
- PATH:
required: true
2017-08-29 06:25:08 -07:00
help: Path of the Bitcoin Core database.
2017-08-23 02:24:09 -07:00
- rollback:
2017-08-29 06:25:08 -07:00
about: Rollback the database to given canonical-chain block.
2017-08-23 02:24:09 -07:00
args:
- BLOCK:
required: true
2017-08-29 06:25:08 -07:00
help: Either block hash, or block number.