Available translations
loading results
Claim
Summary: The token distribution is based on claims made by contributors that they have done something for the project. Anyone can make a claim, but without votes from the community, that claim will not be rewarded with tokens.
Summary: La distribución de token está basada en solicitudes hechas por los contribuyentes que han hecho algo por el proyecto. Cualquiera puede hacer una solicitud, pero sin votos de la comunidad, esa solicitud no será recompensada con tokens.
Summary: Распределение токенов основано на заявлениях участников о том, что они что-то сделали для проекта. Каждый может сделать заявление, но без голосов сообщества это заявление не будет вознаграждено токенами.
Claim Explained
Assets, Features, Positions, etc. defines rewards offered to contributors by the community. Contributors later needs to make claims to get those rewards, and it is the same community the one who desides which claims to support with their votes.
How does this work?
Как это работает?
- 1. Weight Votes: The community uses Weight Votes to define what is more important.
- 1. Weight Votes: La comunidad utiliza Weight Votes para definir que es más importante.
- 1. Weight Votes: Сообщество использует Weight Votes ("Весовое голосование"), чтобы определить, что важнее.
- 2. Weights: These Weight Votes: end up generating a weight for each relevant node.
- 2. Weights: Estos Weight Votes: terminan generando un peso para cada nodo relevante.
- 2. Weights: Эти весовые голоса: в конечном итоге генерируют вес для каждого соответствующего узла.
- 3. Token Rewards: Based on Weights, Token Rewards are calculated.
- 3. Token Rewards: Basado en Weights, se calculan los Token Rewards.
- 3. Token Rewards: На основе весов рассчитывается вознаграждение в виде токенов.
- 4. Claims: Contributos post claims towards Token Rewards.
- 4. Claims: Contribuyentes publican solicitudes para Token Rewards.
- 4. Claims: Вкладчики размещают заявки на получение Token Rewards ("Вознаграждения в виде токенов").
- 5. Claims Votes: The community vote on claims that believe are true.
- 5. Claims Votes: La comunidad vota en solicitudes que considera que son verdaderas.
- 5. Claims Votes: Сообщество голосует за заявления, которые считает справедливыми.
- 6. Token Awarded: Based on all claims towards each Token Rewards, Token Awarded is calculated for each Claim.
- 6. Token Awarded: Basados en todas las solicitudes hacia cada Token Rewards, Token Awarded se calcula para cada solicitud.
- 6. Token Awarded: На основании всех заявлений, поданных в отношении каждого Token Rewards, для каждого заявления рассчитывается награда Token Awarded.
- 7. Token Distribution: The distribution is made to users based on the Tokens Awarded to each of their claims.
- 7. Token Distribution: La distribución se hace a los usuarios basada en los Tokens Awarded a cada una de sus solicitudes.
- 7. Token Distribution: Распределение между пользователями производится на основании количества токенов, присвоенных каждому из их заявлений.
Calculation Code
Код расчета
/*
We will use the concept of Vote Ratio for the situation in which the total votes in claims exceeds the
amount of votes for wigthing. When this happen the Votes Ratio will be used to reduce the amount of
tokens awarded proportionally to how much was exceeded.
*/
let votesRatio = node.payload.referenceParent.payload.votingProgram.votes / node.payload.referenceParent.payload.claimsVotes
if (votesRatio > 1) { votesRatio = 1 }
/*
Share Count means the amount to claims pointing to the same potential tokens reward.
*/
let shareCount = node.payload.referenceParent.payload.claimsCount
let sharePercentage = node.payload.votingProgram.votes * 100 / node.payload.referenceParent.payload.claimsVotes
let awarded = node.payload.votingProgram.votes / node.payload.referenceParent.payload.votingProgram.votes * node.payload.referenceParent.payload.tokens * votesRatio
let awardedPercentage = node.payload.votingProgram.votes / node.payload.referenceParent.payload.votingProgram.votes * 100 * votesRatio