l1.media 5818c695b0 update dependencies (#861) | 1 год назад | |
---|---|---|
.. | ||
report | 2 лет назад | |
src | 2 лет назад | |
.gitignore | 2 лет назад | |
Readme.md | 2 лет назад | |
package.json | 1 год назад | |
tsconfig.json | 2 лет назад | |
tslint.json | 2 лет назад | |
yarn.lock | 1 год назад |
Warn report is unknownSources.log
which contains all the WARN
blocks, where we cannot calculate what affected the issuance (e.g. a bug with burned stake for Working Groups)
Full report is mintingAndBurning.log
which contains all the blocks, where minting and/or burning affected the total issuance
Full minting and burning log is uploaded as a github gist as per request, and can be accessed here
balances.BalanceSet
- when sudo account sets new balance, amount is taken from event dataproposalsEngine.ProposalStatusUpdated
- when proposal with type Spending (isSpending
) is approved and executed, amount is taken from proposal paramsstaking.Reward
- when validators and nominators are getting staking reward, amount is taken from event data
Working groups workers recurring rewards
- to understand when reward increase issuance we check next_payment_at_block
at the previous block hash, assuming next block worker will be paid out
proposalsEngine.ProposalStatusUpdated
- when proposal is rejected or expired, fee is burned (hardcoded value of 5000 JOY)
balances.transfer
- transfer to burn address leads to burning, amount taken from extrinsics tip
members.buyMembership
- when new member is registered, fee amount is taken from members.paidMembershipTermsById
proposalsEngine.cancelProposal
- when proposal is cancelled, cancellation fee is burned (hardcoded value of 10000 JOY)
utility.batch
- burned amount taken from extrinsics tip
staking.bond
- burned amount taken from extrinsics tip
session.setKeys
- burned amount taken from extrinsics tip
staking.nominate
- burned amount taken from extrinsics tip
members.buyMembership
- burned amount taken from extrinsics tip
operationsWorkingGroup.updateRewardAmount
- when storage worker reward amount is updated, amount is added to amount_per_payout
property of specific worker rewardRelationship
contentDirectoryWorkingGroup.updateRewardAmount
- when storage worker reward amount is updated, amount is added to amount_per_payout
property of specific worker rewardRelationship
storageWorkingGroup.updateRewardAmount
- when storage worker reward amount is updated, amount is added to amount_per_payout
property of specific worker rewardRelationship
All the minting and burning changes which are not calculated by the script are listed in unknownSources.log
.
One is balances.BalanceSet
to the wrong address, which lead to the burning of 4909336 JOY
by sudo.sudo
extrinsics.
All the other warnings (22 of 23 warnings) are burning events caused by the runtime bug, when working groups workers application stake was burned.
yarn
- load project dependencies
yarn start <startBlock> <endBlock>
- Generates some files in report
folder:
mintingAndBurning.log
: every line is a block where totalIssuance has been changed, showing new issuance, previous issuance, tokens minted and burned. Every line is prefixed with INFO
if minting and burning source is calculated, WARN
if the source is unknown
unknownSources.log
: every line is a block where totalIssuance has been changed, showing new issuance, previous issuance, tokens minted and burnedbut the source is unknown, meaning we only add WARN
lines here
mintingAndBurning.json
: detailed report of what exactly changed the issuance in a specific block (e.g. Staking Reward, Cancelled Proposal, Spending Proposal, Set Sudo Balance, Recurring Rewards, Membership Creation, Transfer to Burn Address, Proposal Rejection, Proposal Expiration)