X-Git-Url: http://git.osdn.net/view?p=bytom%2Fvapor.git;a=blobdiff_plain;f=README.md;h=55fd2821e341cdbab3da60e6229aa62074f60d5f;hp=4eb632298a81b0d0b69cf00d19350c68577714d1;hb=refs%2Fheads%2Ffix_log_err;hpb=080e9b32d37da2fa6e1ae61b866f1479abd2a56d diff --git a/README.md b/README.md index 4eb63229..55fd2821 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,13 @@ $ make install Firstly, you need initialize node: ``` -$ vapord init --chain_id=vapor --home +$ vapord init --chain_id=mainnet --home ``` -For example, you can store vapor data in `$HOME/bytom/vapor`: - -``` -$ vapord init --chain_id=vapor --home $HOME/bytom/vapor -``` +The default vapor data path (on the host) is: ++ Mac: `~/Library/Application Support/Vapor` ++ Linux: `~/.vapor` ++ Windows: `%APPDATA%\Vapor` Then, start your node: @@ -68,8 +67,6 @@ vapor data directory has three config files: - `federation.json` - `node_key.txt` -Then you can use vapord and bytomcli following [Bytom Wiki](https://github.com/Bytom/bytom/wiki/Command-Line-Options). - Use `exit` to exit Docker's iterative mode. ### Daemon mode @@ -95,7 +92,7 @@ $ docker ps To execute a command inside a containner, for example: ``` -$ docker exec -it bytomcli create-access-token +$ docker exec -it vaporcli create-access-token ``` To stop a running containner: @@ -110,6 +107,25 @@ To remove a containner: $ docker rm ``` +### Reward distribution tool + +After the supernode and alternative node receive the reward from the node, they will allocate the reward + +according to the interest rate. + +The reward calculation rules: + + calculate the reward (consensus reward * interest rate * voting weight) according to the weight of votes + +cast in consensus around, and choose how many rounds of consensus to allocate the reward flexibly. + +[Tool usage details](./cmd/votereward/README.md) + + +### Merger utxo +UTXO has been merged to solve the problem that too much UTXO input causes a failed send transaction to fail. +[details](./cmd/utxomerge/README.md) + ## License [AGPL v3](./LICENSE)