From 5764c710a65d514ab5d404f8c385c0499ad3d599 Mon Sep 17 00:00:00 2001 From: Jay Namsayin <31609693+jim380@users.noreply.github.com> Date: Sun, 11 Oct 2020 19:34:07 -0700 Subject: [PATCH] typo fixes (#685) * Update 01_concepts.md * Update 03_messages.md * Update 01_concepts.md --- x/harvest/spec/01_concepts.md | 6 +++--- x/harvest/spec/03_messages.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/x/harvest/spec/01_concepts.md b/x/harvest/spec/01_concepts.md index fb6a1a4c..7dc4a5d2 100644 --- a/x/harvest/spec/01_concepts.md +++ b/x/harvest/spec/01_concepts.md @@ -7,9 +7,9 @@ order: 1 The harvest module introduces the hard token to the kava blockchain. This module distributes hard tokens to two types of ecosystem participants: 1. Kava stakers - any address that stakes (delegates) kava tokens will be eligible to claim hard tokens. For each delegator, hard tokens are accumulated ratably based on the total number of kava tokens staked. For example, if a user stakes 1 million KAVA tokens and there are 100 million staked KAVA, that user will accumulate 1% of hard tokens earmarked for stakers during the distribution period. Distribution periods are defined by a start date, an end date, and a number of hard tokens that are distributed per second. -2. Depositors - any address that deposits eligible tokens to the harvest module will be eligible to claim hard tokens. For each depositor, hard tokens are accumulated ratable based on the total number of tokens staked of that denomination. For example, if a user deposits 1 million "xyz" tokens and there are 100 million xyz deposited, that user will accumulate 1% of hard tokens earmarked for depositors of that denomination during the distribution period. Distribution periods are defined by a start date, an end date, and a number of hard tokens that are distributed per second. +2. Depositors - any address that deposits eligible tokens to the harvest module will be eligible to claim hard tokens. For each depositor, hard tokens are accumulated ratably based on the total number of tokens staked of that denomination. For example, if a user deposits 1 million "xyz" tokens and there are 100 million xyz deposited, that user will accumulate 1% of hard tokens earmarked for depositors of that denomination during the distribution period. Distribution periods are defined by a start date, an end date, and a number of hard tokens that are distributed per second. -Users are not air-dropped tokens, rather they accumulate `Claim` objects that they my submit a transaction in order to claim. In order to better align long term incentives, when users claim hard tokens, they have three options, called 'multipliers', for how tokens are distributed. +Users are not air-dropped tokens, rather they accumulate `Claim` objects that they may submit a transaction in order to claim. In order to better align long term incentives, when users claim hard tokens, they have three options, called 'multipliers', for how tokens are distributed. * Liquid - users can immediately receive hard tokens, but they will receive a smaller fraction of tokens than if they choose medium-term or long-term locked tokens. * Medium-term locked - users can receive tokens that are medium-term transfer restricted. They will receive more tokens than users who choose liquid tokens, but fewer than those who choose long term locked tokens. @@ -19,4 +19,4 @@ The exact multipliers will be voted by governance and can be changed via a gover * Liquid - 10% multiplier and no lock up. Users receive 10% as many tokens as users who choose long-term locked tokens. * Medium-term locked - 33% multiplier and 6 month transfer restriction. Users receive 33% as many tokens as users who choose long-term locked tokens. -* Long-term locked - 100% multiplier and 2 year transfer restriction. Users receive 10x as many tokens as users who choose liquid tokens and 3x as many tokens as users who choose medium-term locked tokens. \ No newline at end of file +* Long-term locked - 100% multiplier and 2 year transfer restriction. Users receive 10x as many tokens as users who choose liquid tokens and 3x as many tokens as users who choose medium-term locked tokens. diff --git a/x/harvest/spec/03_messages.md b/x/harvest/spec/03_messages.md index 4ebafc2f..c18560f8 100644 --- a/x/harvest/spec/03_messages.md +++ b/x/harvest/spec/03_messages.md @@ -4,7 +4,7 @@ order: 3 # Messages -There are three messages in the harvest module. Deposit allows users to deposit assets to the harvest module. In version 2, depositors will be able to use their deposits as collateral to borrow froom harvest. Withdraw removes assets from the harvest module, returning them to the user. Claim allows users to claim earned HARD tokens. +There are three messages in the harvest module. Deposit allows users to deposit assets to the harvest module. In version 2, depositors will be able to use their deposits as collateral to borrow from harvest. Withdraw removes assets from the harvest module, returning them to the user. Claim allows users to claim earned HARD tokens. ```go // MsgDeposit deposit asset to the harvest module.