-
Notifications
You must be signed in to change notification settings - Fork 11
CMD & Config
Parameter prioritization at startup: CMD > config > default
├─ SUBCMD
│ ├─ account
│ │ ├─ account new
│ │ ├─ account list
│ │ ├─ account import
│ │ ├─ account import-by-key
│ │ └─ account export-to-key
│ ├─ import
│ ├─ export
│ ├─ revert
│ └─ db
│ └─ db kill
└─ OPTIONS
├─ Operating Options
│ ├─ chain
│ ├─ keys path
│ ├─ base path
│ └─ db path
├─ Miscellaneous Options
│ ├─ help
│ ├─ full help
│ ├─ version
│ ├─ no config
│ ├─ default config
│ └─ config
├─ Account Options
│ ├─ keys iterations
│ ├─ refresh time
│ ├─ unlock
│ ├─ stake contract
│ └─ password
├─ Network Options
│ ├─ sync from boot nodes only
│ ├─ max peers
│ ├─ net id
│ ├─ local node
│ └─ boot nodes
├─ RPC Options
│ └─ rpc processing threads
├─ Http Options
│ ├─ no http
│ ├─ http port
│ ├─ http interface
│ ├─ http apis
│ ├─ http hosts
│ ├─ http cors
│ └─ http server threads
├─ WebSockets Options
│ ├─ no ws
│ ├─ ws port
│ ├─ ws interface
│ ├─ ws apis
│ ├─ ws origins
│ ├─ ws hosts
│ └─ ws max connections
├─ IPC Options
│ ├─ no ipc
│ ├─ ipc path
│ └─ ipc apis
├─ Sealing/Mining Options
│ ├─ force sealing
│ ├─ remove solved
│ ├─ infinite pending block
│ ├─ dynamic gas price
│ ├─ reseal on txs
│ ├─ reseal min period
│ ├─ work queue size
│ ├─ relay set
│ ├─ gas floor target
│ ├─ gas cap
│ ├─ tx queue mem limit
│ ├─ tx queue strategy
│ ├─ tx queue ban count
│ ├─ tx queue ban time
│ ├─ min gas price
│ ├─ max gas price
│ ├─ local max gas price
│ ├─ blk price window
│ ├─ max blk traverse
│ ├─ gas price percentile
│ ├─ author
│ ├─ tx gas limit
│ ├─ tx time limit
│ └─ extra data
├─ Database Options
│ ├─ disable wal
│ ├─ scale verifiers
│ ├─ pruning
│ ├─ pruning history
│ ├─ pruning memory
│ ├─ cache size blocks
│ ├─ cache size queue
│ ├─ cache size state
│ ├─ db compaction
│ ├─ fat db
│ ├─ cache size
│ └─ num verifiers
└──Log Options
└─ log config
Default config file path is $HOME/.aion/config.toml
.
You can create and fill parameters you want in it.
If $HOME/.aion/config.toml
doesn't exist when start aion, it will automatically generate a default config file on the default config file path.
You can also use $ ./aion --default-config
to create a new default config as $HOME/.aion/default_config.toml
It will list all parameters with default value .
Note that parameters which default value is None will be presented as comments.
You can use $ ./aion --default-config="YOUR_CONFIG_PATH"
to start aion with the config file you specified.
You can use $ ./aion --no-config
to start aion without config file.
Table of config contents
├─ aion
│ ├─ chain
│ ├─ keys_path
│ ├─ base_path
│ └─ db_path
├─ account
│ ├─ keys_iterations
│ ├─ refresh_time
│ ├─ unlock
│ ├─ stake contract
│ └─ password
├─ network
│ ├─ sync_from_boot_nodes_only
│ ├─ max_peers
│ ├─ net_id
│ ├─ local_node
│ └─ boot_nodes
├─ rpc
│ └─ processing_threads
├─ http
│ ├─ disable
│ ├─ port
│ ├─ interface
│ ├─ apis
│ ├─ hosts
│ ├─ cors
│ └─ server_threads
├─ websockets
│ ├─ disable
│ ├─ port
│ ├─ interface
│ ├─ apis
│ ├─ origins
│ ├─ hosts
│ └─ max_connections
├─ ipc
│ ├─ disable
│ ├─ path
│ └─ apis
├─ mining
│ ├─ force_sealing
│ ├─ remove_solved
│ ├─ infinite_pending_block
│ ├─ dynamic_gas_price
│ ├─ reseal_on_txs
│ ├─ reseal_min_period
│ ├─ work_queue_size
│ ├─ relay_set
│ ├─ gas_floor_target
│ ├─ gas_cap
│ ├─ tx_queue_mem_limit
│ ├─ tx_queue_strategy
│ ├─ tx_queue_ban_count
│ ├─ tx_queue_ban_time
│ ├─ min_gas_price
│ ├─ max_gas_price
│ ├─ local_max_gas_price
│ ├─ blk_price_window
│ ├─ max_blk_traverse
│ ├─ gas_price_percentile
│ ├─ author
│ ├─ tx_gas_limit
│ ├─ tx_time_limit
│ └─ extra_data
├─ db
│ ├─ disable_wal
│ ├─ scale_verifiers
│ ├─ pruning
│ ├─ pruning_history
│ ├─ pruning_memory
│ ├─ cache_size_blocks
│ ├─ cache_size_queue
│ ├─ cache_size_state
│ ├─ db_compaction
│ ├─ fat_db
│ ├─ cache_size
│ └─ num_verifiers
└─ log
└─ log_config
Account management operations
$ aion account
Create a new account
$ aion account new
List existing accounts
$ aion account list
Import account keystore files
$ aion account import <PATH>
PATH: Path to the accounts
This argument must be included when running this subcommand.
This argument can have multiple.
Import account by private key
$ aion account import-by-key <key>
key: the private key This argument must be included when running this subcommand.
Export account to private key
$ aion account export-to-key <address>
address: account address
This argument must be included when running this subcommand.
Import blockchain
$ aion import [--format=[FORMAT]] <FILE>
--format: (optional)define the input format. e.g.:
--format=hex
Import in a given format. FORMAT must be either 'hex' or 'binary'. (default: auto)
FILE: Path to the file to import from
This argument must be included when running this subcommand.
Export blockchain
$ aion export [--format=[FORMAT]|--from=[BLOCK]|--to=[BLOCK]] <FILE>
--format: (optional)define the output format. e.g.:
--format=hex
Export in a given format. FORMAT must be either 'hex' or 'binary'. (default: binary)
--from: (optional)define from block number or hash. e.g.:
--from=1
default: "1"
--to: (optional)define to block number, hash or tag. e.g.:
--to=latest
Export to (including) block BLOCK, which may be an index, hash or latest.
default: "latest"
FILE: Path to the exported file
Revert blockchain
$ aion revert --to=[BLOCK]
--to: Revert Database to (including) block BLOCK, which may be an index, hash. e.g.:
--to=0
default: "0"
Manage the database representing the state of the blockchain on this system
$ aion db
Clean the database
$ aion db kill
config:
[aion]
$ aion --chain=[CHAIN]
- e.g.:
--chain=mainnet
Specify the blockchain type. CHAIN may be a JSON chain specification file.
default: "mainnet"
config:
[aion] chain = "mainnet"
$ aion --keys-path=[PATH]
- e.g.:
--keys-path=.aion/keys
Specify the path for JSON key files to be found
config:
[aion] #keys_path = None
- e.g.:
keys_path =".aion/keys"
$ aion -d/--base-path=[PATH]
- e.g.:
-d/--base-path="/root/.aion"
Specify the base data storage path.
config:
[aion] #base_path = None
- e.g.:
base_path = "/root/.aion"
$ aion --db-path=[PATH]
- e.g.:
--db-path=/root/.aion/db
Specify the database directory path
config:
[aion] #db_path = None
- e.g.:
db_path ="/root/.aion/db"
$ aion -h/--help
Show help information.
$ aion --full-help
Show full help information.
$ aion -v, --version
Show information about version.
$ aion --no-config
Don't load a configuration file.
$ aion --default-config
Print DEFAULT configuration to $HOME/.aion/default_config.toml.
$ aion -c/--config=[CONFIG]
- e.g.:
-c/--config=$HOME/.aion/config.toml
Specify a configuration. CONFIG may be a configuration file .
default: "$HOME/.aion/config.toml"
config:
[account]
$ aion --keys-iterations=[NUM]
- e.g.:
--keys-iterations=10240
Specify the number of iterations to use when deriving key from the password (bigger is more secure)
default: 10240
config:
[account] keys_iterations = 10240
$ aion --accounts-refresh=[TIME]
- e.g.:
--accounts-refresh=5
Specify the cache time of accounts read from disk. If you manage thousands of accounts set this to 0 to disable refresh.
default: 5
config:
[account] refresh_time = 5
$ aion --unlock=[ACCOUNTS]...
Unlock ACCOUNTS for the duration of the execution. ACCOUNTS is a comma-delimited list of addresses.
This argument can have multiple .
default: []
config:
[account] unlock = []
- e.g.:
unlock =["a05a27f0c1ea16ed4433c9efc86ac08effbf2cd4530d08a2b35393b05e489df5","a064f2fbf5d703733d723ba5f08109d96196467331d5b4568835a634e81c5715"]
$ aion --password=[FILE]...
- e.g.:
--password="/root/password"
Provide a list of files containing passwords for unlocking accounts. Leading and trailing whitespace is trimmed.
This argument can have multiple.
default: []
config:
[account] password = []
- e.g.:
password = "/root/password"
$ aion --stake-contract=[ADDRESS]
- e.g.:
--stake-contract="0xa0cafecafecafecafecafecafecafecafecafecafecafecafecafecafecafeca"
Specify the PoS staking contract address.
config:
[account] #stake_contract = None
- e.g.:
stake_contract = "0xa0cafecafecafecafecafecafecafecafecafecafecafecafecafecafecafeca"
config:
[network]
$ aion --sync-boot-nodes-only
Indicates if only sync from bootnodes.
config:
[network] sync_from_boot_nodes_only = false
$ aion --max-peers=[NUM]
- e.g.:
--max-peers=64
Allow up to NUM peers.
default: 64
config:
[network] max_peers = 64
$ aion --net-id=[INDEX]
- e.g.:
--net-id=256
Override the network identifier from the chain we are on.
default: 256
config:
[network] net_id = 256
$ aion --local-node=[NODE]
- e.g.:
--local-node=p2p://00000000-0000-0000-0000-000000000000@0.0.0.0:30303
Override the local node. NODE should be a p2p node.
default: "p2p://00000000-0000-0000-0000-000000000000@0.0.0.0:30303"
config:
[network] local_node = "p2p://00000000-0000-0000-0000-000000000000@0.0.0.0:30303"
$ aion --boot-nodes=[NODES]...
- e.g.:
--boot-nodes=p2p://c33d1066-8c7e-496c-9c4e-c89318280274@13.92.155.115:30303
Override the boot nodes from our chain. NODES should be p2p nodes.
This argument can have multiple.
default: [
"p2p://c33d1066-8c7e-496c-9c4e-c89318280274@13.92.155.115:30303",
"p2p://c33d2207-729a-4584-86f1-e19ab97cf9ce@51.144.42.220:30303",
"p2p://c33d302f-216b-47d4-ac44-5d8181b56e7e@52.231.187.227:30303",
"p2p://c33d4c07-6a29-4ca6-8b06-b2781ba7f9bf@191.232.164.119:30303",
"p2p://c33d5a94-20d8-49d9-97d6-284f88da5c21@13.89.244.125:30303",
"p2p://741b979e-6a06-493a-a1f2-693cafd37083@66.207.217.190:30303"
]
config:
[network] boot_nodes = ["p2p://c33d1066-8c7e-496c-9c4e-c89318280274@13.92.155.115:30303", "p2p://c33d2207-729a-4584-86f1-e19ab97cf9ce@51.144.42.220:30303", "p2p://c33d302f-216b-47d4-ac44-5d8181b56e7e@52.231.187.227:30303", "p2p://c33d4c07-6a29-4ca6-8b06-b2781ba7f9bf@191.232.164.119:30303", "p2p://c33d5a94-20d8-49d9-97d6-284f88da5c21@13.89.244.125:30303", "p2p://741b979e-6a06-493a-a1f2-693cafd37083@66.207.217.190:30303"]
config:
[rpc]
$ aion --rpc--processing-threads=[NUM]
Turn on additional processing threads for JSON-RPC servers (for all severs i.e for websocket and ipc). Setting this to a non-zero value allows parallel execution of cpu-heavy queries.
config:
[rpc] #processing_threads = None
- e.g.:
processing_threads = 5
config:
[http]
$ aion --no-http
Disable the Http API server.
config:
[http] disable = false
$ aion --http-port=[PORT]
- e.g.:
--http-port=8545
Specify the port portion of the HTTP API server.
default: 8545
config:
[http] port = 8545
$ aion --http-interface=[IP]
- e.g.:
--http-interface="127.0.0.1"
Specify the hostname portion of the HTTP API server, IP should be an interface's IP address, or all (all interfaces) or local. all means 0.0.0.0 , local means 127.0.0.1 .
default: "local"
config:
[http] interface = "127.0.0.1"
$ aion --http-apis=[APIS]...
- e.g.:
--http-apis=all
Specify the APIs available through the HTTP interface. APIS is a comma-delimited list of API name. Possible name are all, web3, eth, stratum, net, personal, rpc. You can also disable a specific API by putting '-' in the front: all,-personal.NOTE that HTTP doesn’t support pubsub
This argument can have multiple .
default: [
"all",
"-pubsub"
]
config:
[http] apis = ["all", "-pubsub"]
$ aion --http-hosts=[HOSTS]...
- e.g.:
--http-hosts=none
List of allowed Host header values. This option will validate the Host header sent by the browser, it is additional security against some attack vectors. Special options: "all", "none",.
This argument can have multiple .
default: [
"none"
]
config:
[http] hosts = ["none"]
$ aion --http-cors=[URL]...
- e.g.:
--http-cors=none
Specify CORS header for HTTP JSON-RPC API responses. Special options: "all", "none".
This argument can have multiple .
default: [
"none"
]
config:
[http] cors = ["none"]
$ aion --http-server-threads=[NUM]
Enables multiple threads handling incoming connections for HTTP JSON-RPC server.
config:
[http] #server_threads = None
- e.g.:
server_threads = 3
config:
[websockets]
$ aion --no-ws
Disable the WebSockets server.
config:
[websockets] disable = false
$ aion --ws-port=[PORT]
- e.g.:
--ws-port=8546
Specify the port portion of the WebSockets server.
default: 8546
config:
[websockets] port = 8546
$ aion --ws-interface=[IP]
- e.g.:
--ws-interface="127.0.0.1"
Specify the hostname portion of the WebSockets server, IP should be an interface's IP address, or all (all interfaces) or local. all means 0.0.0.0 , local means 127.0.0.1 .
default: "local"
config:
[websockets] interface = "127.0.0.1"
$ aion --ws-apis=[APIS]...
- e.g.:
--ws-apis=all
Specify the APIs available through the WebSockets interface. APIS is a comma-delimited list of API name. Possible name are web3, eth, stratum, net, personal, rpc, pubsub.
This argument can have multiple .
default: [
"all",
"-pubsub"
]
config:
[websockets] apis = ["all", "-pubsub"]
$ aion --ws-origins=[URL]...
- e.g.:
--ws-origins=none
Specify Origin header values allowed to connect. Special options: "all", "none".
This argument can have multiple.
default: [
"none"
]
config:
[websockets] origins = ["none"]
$ aion --ws-hosts=[HOSTS]...
- e.g.:
--ws-hosts=none
List of allowed Host header values. This option will validate the Host header sent by the browser, it is additional security against some attack vectors. Special options: "all", "none".
This argument can have multiple.
default: [
"none"
]
config:
[websockets] hosts = ["none"]
$ aion --ws-max-connections=[CONN]
- e.g.:
--ws-max-connections=100
Maximum number of allowed concurrent WebSockets JSON-RPC connections.
default: 100
config:
[websockets] max_connections = 100
config:
[ipc]
$ aion --no-ipc
Disable JSON-RPC over IPC service.
config:
[ipc] disable = false
$ aion --ipc-path=[PATH]
- e.g.:
--ipc-path=$BASE/jsonrpc.ipc
Specify custom path for JSON-RPC over IPC service.
default: "$BASE/jsonrpc.ipc"
config:
[ipc] path = "$BASE/jsonrpc.ipc"
$ aion --ipc-apis=[APIS]...
- e.g.:
--ipc-apis=all
Specify custom API set available via JSON-RPC over IPC. Possible name are web3, eth, stratum, net, personal, rpc, pubsub.
This argument can have multiple.
default: [
"all",
"-pubsub"
]
config:
[ipc] apis = ["all", "-pubsub"]
config:
[mining]
$ aion --force-sealing
Force the node to author new blocks as if it were always sealing/mining.
config:
[mining] force_sealing = false
$ aion --remove-solved
Move solved blocks from the work package queue instead of cloning them. This gives a slightly faster import speed, but means that extra solutions submitted for the same work package will go unused.
config:
[mining] remove_solved = false
$ aion --infinite-pending-block
Pending block will be created with maximal possible gas limit and will execute all transactions in the queue. Note that such block is invalid and should never be attempted to be mined.
config:
[mining] infinite_pending_block = false
$ aion --dynamic-gas-price
use dynamic gas price which adjust with --gas-price-percentile, --max-blk-traverse, --blk-price-window
config:
[mining] dynamic_gas_price = false
$ aion --reseal-on-txs=[SET]
- e.g.:
--reseal-on-txs=own
Specify which transactions should force the node to reseal a block. SET is one of: none - never reseal on new transactions; own - reseal only on a new local transaction; ext - reseal only on a new external transaction; all - reseal on all new transactions.
default: "own"
config:
[mining] reseal_on_txs = "own"
$ aion --reseal-min-period=[MS]
- e.g.:
--reseal-min-period=4000
Specify the minimum time between reseals from incoming transactions. MS is time measured in milliseconds.
default: 4000
config:
[mining] reseal_min_period = 4000
$ aion --work-queue-size=[ITEMS]
- e.g.:
--work-queue-size=20
Specify the number of historical work packages which are kept cached lest a solution is found for them later. High values take more memory but result in fewer unusable solutions.
default: 20
config:
[mining] work_queue_size = 20
$ aion --relay-set=[SET]
- e.g.:
--relay-set=cheap
Set of transactions to relay. SET may be: cheap - Relay any transacticon in the queue (this may include invalid transactions); strict - Relay only executed transactions (this guarantees we don't relay invalid transactions, but means we relay nothing if not mining); lenient - Same as strict when mining, and cheap when not.
default: "cheap"
config:
[mining] relay_set = "cheap"
$ aion --gas-floor-target=[GAS]
- e.g.:
--gas-floor-target=15000000
Amount of gas per block to target when sealing a new block.
default: "15000000"
config:
[mining] gas_floor_target = "15000000"
$ aion --gas-cap=[GAS]
- e.g.:
--gas-cap=20000000
A cap on how large we will raise the gas limit per block due to transaction volume.
default: "20000000"
config:
[mining] gas_cap = "20000000"
$ aion --tx-queue-mem-limit=[MB]
- e.g.:
--tx-queue-mem-limit=2
Maximum amount of memory that can be used by the transaction queue. Setting this parameter to 0 disables limiting.
default: 2
config:
[mining] tx_queue_mem_limit = 2
$ aion --tx-queue-strategy=[S]
- e.g.:
--tx-queue-strategy=gas_price
Prioritization strategy used to order transactions in the queue. S may be: gas - Prioritize txs with low gas limit; gas_price - Prioritize txs with high gas price; gas_factor - Prioritize txs using gas price and gas limit ratio.
default: "gas_price"
config:
[mining] tx_queue_strategy = "gas_price"
$ aion --tx-queue-ban-count=[C]
- e.g.:
--tx-queue-ban-count=1
Number of times maximal time for execution (--tx-time-limit) can be exceeded before banning sender/recipient/code.
default: 1
config:
[mining] tx_queue_ban_count = 1
$ aion --tx-queue-ban-time=[SEC]
- e.g.:
--tx-queue-ban-time=180
Banning time (in seconds) for offenders of specified execution time limit. Also number of offending actions have to reach the threshold within that time.
default: 180
config:
[mining] tx_queue_ban_time = 180
$ aion --min-gas-price=[NUM]
- e.g.:
--min-gas-price=10000000000
Minimum amount of Wei per GAS to be paid for a transaction to be accepted for mining.
default: 10000000000
config:
[mining] min_gas_price = 10000000000
$ aion --max-gas-price=[NUM]
- e.g.:
--max-gas-price=9000000000000000000
Maximum amount of Wei per GAS to be paid for a transaction to be accepted for mining.
default: 9000000000000000000
config:
[mining] max_gas_price = 9000000000000000000
$ aion --local-max-gas-price=[NUM]
- e.g.:
--local-max-gas-price=100000000000
Maximum amount of Wei per GAS to be set for a new local transaction to be accepted for mining when using dynamic gas price.
default: 100000000000
config:
[mining] local_max_gas_price = 100000000000
$ aion --blk-price-window=[BLOCKS]
- e.g.:
--blk-price-window=20
Take BLOCKS blk_price in blocks which have transactions for dynamic gas price adjustment. It'll not work without --dynamic-gas-price.
default: 20
config:
[mining] blk_price_window = 20
$ aion --max-blk-traverse=[BLOCKS]
- e.g.:
--max-blk-traverse=64
Maximum amount of blocks can be traversed. It'll not work without --dynamic-gas-price.
default: 64
config:
[mining] max_blk_traverse = 64
$ aion --gas-price-percentile=[PCT]
- e.g.:
--gas-price-percentile=60
Set PCT percentile block price value from last blk_price_window blocks as default gas price when sending transactions. It'll not work without --dynamic-gas-price.
default: 60
config:
[mining] gas_price_percentile = 60
$ aion --author=[ADDRESS]
- e.g.:
--author=a064f2fbf5d703733d723ba5f08109d96196467331d5b4568835a634e81c5715
Specify the block author (aka "coinbase") address for sending block rewards from sealed blocks. NOTE: MINING WILL NOT WORK WITHOUT THIS OPTION.
config:
[mining] #author = None
- e.g.:
author = "a064f2fbf5d703733d723ba5f08109d96196467331d5b4568835a634e81c5715"
$ aion --tx-gas-limit=[GAS]
- e.g.:
--tx-gas-limit=100000000000
Apply a limit of GAS as the maximum amount of gas a single transaction may have for it to be mined.
config:
[mining] #tx_gas_limit = None
- e.g.:
tx_gas_limit = "100000000000"
$ aion --tx-time-limit=[MS]
- e.g.:
--tx-time-limit=600
Maximal time for processing single transaction. If enabled senders/recipients/code of transactions offending the limit will be banned from being included in transaction queue for 180 seconds.
config:
[mining] #tx_time_limit = None
- e.g.:
tx_time_limit = 600
$ aion --extra-data=[STRING]
- e.g.:
--extra-data="aion"
Specify a custom extra-data for authored blocks, no more than 32 characters.
config:
[mining] #extra_data = None
- e.g.:
extra_data = "aion"
config:
[db]
$ aion --disable-wal
Disables DB WAL, which gives a significant speed up but means an unclean exit is unrecoverable.
config:
[db] disable_wal = false
$ aion --scale-verifiers
Automatically scale amount of verifier threads based on workload. Not guaranteed to be faster.
config:
[db] scale_verifiers = false
$ aion --pruning=[METHOD]
- e.g.:
--pruning=archive
Configure pruning of the state/storage trie. METHOD may be one of auto, archive, fast: archive - keep all state trie data. No pruning. fast - maintain journal overlay. Fast but 50MB used. auto - use the method most recently synced or default to fast if none synced.
default: "archive"
config:
[db] pruning = "archive"
$ aion --pruning-history=[NUM]
- e.g.:
--pruning-history=64
Set a minimum number of recent states to keep when pruning is active.
default: 64
config:
[db] pruning_history = 64
$ aion --pruning-memory=[MB]
- e.g.:
--pruning-memory=32
The ideal amount of memory in megabytes to use to store recent states. As many states as possible will be kept within this limit, and at least --pruning-history states will always be kept.
default: 32
config:
[db] pruning_memory = 32
$ aion --cache-size-blocks=[MB]
- e.g.:
--cache-size-blocks=8
Specify the prefered size of the blockchain cache in megabytes.
default: 8
config:
[db] cache_size_blocks = 8
$ aion --cache-size-queue=[MB]
- e.g.:
--cache-size-queue=40
Specify the maximum size of memory to use for block queue.
default: 40
config:
[db] cache_size_queue = 40
$ aion --cache-size-state=[MB]
- e.g.:
--cache-size-state=25
Specify the maximum size of memory to use for the state cache.
default: 25
config:
[db] cache_size_state = 25
$ aion --db-compaction=[TYPE]
- e.g.:
--db-compaction=auto
Database compaction type. TYPE may be one of: ssd - suitable for SSDs and fast HDDs; hdd - suitable for slow HDDs; auto - determine automatically.
default: "auto"
config:
[db] db_compaction = "auto"
$ aion --fat-db=[BOOL]
- e.g.:
--fat-db=auto
Build appropriate information to allow enumeration of all accounts and storage keys. Doubles the size of the state database. BOOL may be one of on, off or auto.
default: "auto"
config:
[db] fat_db = "auto"
$ aion --cache-size=[MB]
- e.g.:
--cache-size=64
Set total amount of discretionary memory to use for the entire system, overrides other cache and queue options.
config:
[db] #cache_size = None
- e.g.:
cache_size =64
$ aion --num-verifiers=[INT]
- e.g.:
--num-verifiers=5
Amount of verifier threads to use or to begin with, if verifier auto-scaling is enabled.
config:
[db] #num_verifiers = None
- e.g.:
num_verifiers = 5
config:
[log]
Since OANr-v1.1, a new log framework is used aiming at log division and compression. And new config grammar is introduced, namely yaml
which is widely used as format of configuration.
$ aion --log-config="log_file_path"
- e.g.:
--log-config="/var/aionr/log"
config:
[log] config = "log_config.yaml"
Basic
Kernel Configuration
- Build AionR Kernel
- JSON-RPC APIs Doc
- JSON-RPC APIs Rust vs Java
- Wallet
- Genesis Block
- Configuration File and Command Line Interface
- Log Targets Table
- Aion Seed Nodes
- Migration From 0.1.* to 0.2
DApp Developers
Tutorials