erigon-pulse/cmd/rpcdaemon/commands/erigon_issuance.go

134 lines
4.0 KiB
Go
Raw Normal View History

package commands
import (
"context"
"fmt"
"math/big"
"github.com/holiman/uint256"
2022-01-30 06:42:44 +00:00
"github.com/ledgerwatch/erigon/common/hexutil"
"github.com/ledgerwatch/erigon/consensus/ethash"
"github.com/ledgerwatch/erigon/core/rawdb"
"github.com/ledgerwatch/erigon/rpc"
)
// BlockReward returns the block reward for this block
// func (api *ErigonImpl) BlockReward(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error) {
// tx, err := api.db.Begin(ctx, ethdb.RO)
// if err != nil {
// return Issuance{}, err
// }
// defer tx.Rollback()
//
// return api.rewardCalc(tx, blockNr, "block") // nolint goconst
//}
// UncleReward returns the uncle reward for this block
// func (api *ErigonImpl) UncleReward(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error) {
// tx, err := api.db.Begin(ctx, ethdb.RO)
// if err != nil {
// return Issuance{}, err
// }
// defer tx.Rollback()
//
// return api.rewardCalc(tx, blockNr, "uncle") // nolint goconst
//}
// Issuance implements erigon_issuance. Returns the total issuance (block reward plus uncle reward) for the given block.
func (api *ErigonImpl) WatchTheBurn(ctx context.Context, blockNr rpc.BlockNumber) (Issuance, error) {
2021-04-03 06:26:00 +00:00
tx, err := api.db.BeginRo(ctx)
if err != nil {
return Issuance{}, err
}
defer tx.Rollback()
2021-04-08 11:03:45 +00:00
chainConfig, err := api.chainConfig(tx)
if err != nil {
return Issuance{}, err
}
if chainConfig.Ethash == nil {
// Clique for example has no issuance
return Issuance{}, nil
}
hash, err := rawdb.ReadCanonicalHash(tx, uint64(blockNr))
if err != nil {
return Issuance{}, err
}
header := rawdb.ReadHeader(tx, hash, uint64(blockNr))
if header == nil {
return Issuance{}, fmt.Errorf("could not find block header")
}
body := rawdb.ReadCanonicalBodyWithTransactions(tx, hash, uint64(blockNr))
if body == nil {
return Issuance{}, fmt.Errorf("could not find block body")
}
minerReward, uncleRewards := ethash.AccumulateRewards(chainConfig, header, body.Uncles)
issuance := minerReward
for _, r := range uncleRewards {
p := r // avoids warning?
issuance.Add(&issuance, &p)
}
var ret Issuance
2022-01-30 06:42:44 +00:00
ret.BlockReward = (*hexutil.Big)(minerReward.ToBig())
ret.Issuance = (*hexutil.Big)(issuance.ToBig())
issuance.Sub(&issuance, &minerReward)
2022-01-30 06:42:44 +00:00
ret.UncleReward = (*hexutil.Big)(issuance.ToBig())
// Compute how much was burnt
if header.BaseFee != nil {
2022-01-30 06:42:44 +00:00
burnt := header.BaseFee
burnt.Mul(burnt, big.NewInt(int64(header.GasUsed)))
ret.Burnt = (*hexutil.Big)(burnt)
} else {
2022-01-30 06:42:44 +00:00
ret.Burnt = (*hexutil.Big)(big.NewInt(0))
}
// Compute totalIssued, totalBurnt and the supply of eth
2022-01-30 06:42:44 +00:00
totalIssued, err := rawdb.ReadTotalIssued(tx, uint64(blockNr))
if err != nil {
return Issuance{}, err
}
2022-01-30 06:42:44 +00:00
totalBurnt, err := rawdb.ReadTotalBurnt(tx, uint64(blockNr))
if err != nil {
return Issuance{}, err
}
2022-01-30 06:42:44 +00:00
ret.TotalIssued = (*hexutil.Big)(totalIssued)
ret.TotalBurnt = (*hexutil.Big)(totalBurnt)
// Compute tips
2022-01-30 06:42:44 +00:00
tips := big.NewInt(0)
if header.BaseFee != nil {
receipts, err := rawdb.ReadReceiptsByHash(tx, hash)
if err != nil {
return Issuance{}, err
}
baseFee, overflow := uint256.FromBig(header.BaseFee)
if overflow {
return Issuance{}, fmt.Errorf("baseFee overflow")
}
for i, transaction := range body.Transactions {
tip := transaction.GetEffectiveGasTip(baseFee).ToBig()
2022-01-30 06:42:44 +00:00
tips.Add(tips, tip.Mul(tip, big.NewInt(int64(receipts[i].GasUsed))))
}
}
2022-01-30 06:42:44 +00:00
ret.Tips = (*hexutil.Big)(tips)
return ret, nil
}
// Issuance structure to return information about issuance
type Issuance struct {
2022-01-30 06:42:44 +00:00
BlockReward *hexutil.Big `json:"blockReward"` // Block reward for given block
UncleReward *hexutil.Big `json:"uncleReward"` // Uncle reward for gived block
Issuance *hexutil.Big `json:"issuance"` // Total amount of wei created in the block
Burnt *hexutil.Big `json:"burnt"` // Total amount of wei burned in the block
TotalIssued *hexutil.Big `json:"totalIssued"` // Total amount of wei created in total so far
TotalBurnt *hexutil.Big `json:"totalBurnt"` // Total amount of wei burnt so far
Tips *hexutil.Big `json:"tips"` // Total Tips generated by the block
}