diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 0ec831d..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Launch", - "type": "go", - "request": "launch", - "mode": "auto", - "program": "${fileDirname}", - "env": {}, - "args": [] - } - ] -} \ No newline at end of file diff --git a/MANDATE.md b/MANDATE.md deleted file mode 100644 index e69de29..0000000 diff --git a/README.md b/README.md index d2c397a..d73c010 100644 --- a/README.md +++ b/README.md @@ -1,55 +1,85 @@ -# Santa Claus +# Santa -![banner](docs/terra-core.png) +![banner](./banner.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. +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 rep +First, check out the repo: ``` $ git clone https://github.com/terra-project/santa.git $ git checkout master ``` -### Install +Then, build and install: ``` $ make install ``` -### Make config + +To initialize the config file for Santa: ``` $ santa config ``` -### Change config + +To edit the config file: ``` $ vim ~/.santa/config.yaml ``` -### Add / Recover Key +To add a key to an account containing tokens to be doled out: ``` -$ feegiver keys add yun +$ santa keys add ``` - -## Recover Key +To recover a key: ``` -$ feegiver keys add yun --recover +$ santa keys add --recover ``` - - -## Start Server +Finally: to start santa and have Christmas come early: ``` -$ santa start yun -Enter the passphrase: -``` - - -## Status - - - -## Mechanism - - +$ santa start +``` \ No newline at end of file diff --git a/banner.png b/banner.png new file mode 100644 index 0000000..dc8a436 Binary files /dev/null and b/banner.png differ