polished README

This commit is contained in:
Do Kwon 2019-08-08 13:35:12 +09:00
parent 7c38bb0d70
commit 5ed058ec36
1 changed files with 77 additions and 47 deletions

124
README.md
View File

@ -1,55 +1,85 @@
# Santa Claus
# Santa
![banner](docs/terra-core.png)
Santa Claus subsidizes block rewards for Terra's Columbus mainnet. It is intended to subsidize the security of the network until Terra transaction volume (and attendent staking returns from transaction fees) has had sufficient time to mature. A detailed explanation on the [motivation](./MOTIVATION.md) for starting Santa Claus is explained.
## Build & Install
First, check out the rep
```
$ git clone https://github.com/terra-project/feegiver.git
$ git checkout master
```
### Install
```
$ make install
```
### Make config
```
$ feegiver config
```
### Change config
```
$ vim ~/.feegiver/config.yaml
```
### Add / Recover Key
```
$ feegiver keys add yun
```
## Recover Key
```
$ feegiver keys add yun --recover
```
## Start Server
```
$ feegiver start yun
Enter the passphrase:
```
## Status
Santa subsidizes block rewards for Terra's Columbus mainnet. It is intended to support the security of the network until Terra transaction volume (and attendent staking returns from transaction fees) has had sufficient time to mature. Read [here](./MOTIVATION.md) for more details on the project motivation.
## Mechanism
The config file looks something like the following:
```
key_dir: ...
node: ...
trigger_interval: 1
fee_amount: 1000000uluna
```
Every `trigger_interval` number of blocks on Columbus, Santa sends a transaction containing `1 uluna` with `fee_amount` of fees to itself. Effectively, this scheme allows Santa to subsidize block rewards by paying fees over periodic block intervals.
For example, in order to subsidize 21.6 million Luna tokens every block over 1 year, one needs to set `trigger_interval` to 1, and `fee_amount` to `21.6 million / (3.154e+7 / 6.5) * 10^6 = 4451490 uluna`.
## Status
An instance of Santa is currently being jointly operated and supported by several top validators in the network:
```
Hashed
Arrington XRP Capital
Polychain Labs
Certus One
Chorus One
Terraform Labs
B Harvest
A Team
Dokia Capital
Terraforming
Healings
```
To kick off the process, Terraform Labs has donated 21.6 million tokens to be distributed over the course of the next year, slightly above a 10% annualized return on currently staked tokens. You can see Santa hard at work here: https://finder.terra.money/columbus-2/account/terra13u66u4knssnws7n7w0n38mzyyqak5ygp807gyl
Some details on future operations:
- **IMPORTANT**: Santa will operate independently of existing rewards from fees and swaps. As Terra transaction volume goes up, expected rewards may well be significantly higher than that provided by Santa.
- Every time the number of staked tokens go up by more than 10 million tokens, Terraform Labs is commiting to deposit an additional 1 million Luna to Santa to prevent reward dilution for existing stakeholders. No tokens will be withdrawn in the opposite case where the number of staked tokens go down.
- Terra's validator community will actively monitor the network's reward dynamics and continue supporting Santa in the unlikely case that staking returns continue to lag behind the industry average. The Terraform Labs validator will commit up to 100 million Luna tokens for this purpose, which, at current parameters, sufficient to keep Santa running for the next five years.
- Members of the community looking to support the network are either encouraged to either donate tokens to the [currently active Santa address](https://finder.terra.money/columbus-2/account/terra13u66u4knssnws7n7w0n38mzyyqak5ygp807gyl) or start their own instances of Santa.
## Build & Install
First, check out the repo:
```
$ git clone https://github.com/terra-project/santa.git
$ git checkout master
```
Then, build and install:
```
$ make install
```
To initialize the config file for Santa:
```
$ santa config
```
To edit the config file:
```
$ vim ~/.santa/config.yaml
```
To add a key to an account containing tokens to be doled out:
```
$ santa keys add
```
To recover a key:
```
$ santa keys add --recover
```
Finally: to start santa and have Christmas come early:
```
$ santa start
```