package full import ( "context" "math" "math/rand" "sort" "github.com/filecoin-project/lotus/build" "github.com/filecoin-project/lotus/chain/messagepool" "github.com/filecoin-project/lotus/chain/stmgr" "github.com/filecoin-project/lotus/chain/store" "github.com/filecoin-project/lotus/chain/types" "github.com/filecoin-project/go-address" "github.com/filecoin-project/specs-actors/actors/abi/big" "github.com/filecoin-project/specs-actors/actors/runtime/exitcode" "go.uber.org/fx" "golang.org/x/xerrors" ) type GasAPI struct { fx.In Stmgr *stmgr.StateManager Chain *store.ChainStore Mpool *messagepool.MessagePool } const MinGasPremium = 100e3 const MaxSpendOnFeeDenom = 100 func (a *GasAPI) GasEstimateFeeCap(ctx context.Context, msg *types.Message, maxqueueblks int64, tsk types.TipSetKey) (types.BigInt, error) { ts := a.Chain.GetHeaviestTipSet() var act types.Actor err := a.Stmgr.WithParentState(ts, a.Stmgr.WithActor(msg.From, stmgr.GetActor(&act))) if err != nil { return types.NewInt(0), xerrors.Errorf("getting actor: %w", err) } parentBaseFee := ts.Blocks()[0].ParentBaseFee increaseFactor := math.Pow(1.+1./float64(build.BaseFeeMaxChangeDenom), float64(maxqueueblks)) feeInFuture := types.BigMul(parentBaseFee, types.NewInt(uint64(increaseFactor*(1<<8)))) feeInFuture = types.BigDiv(feeInFuture, types.NewInt(1<<8)) gasLimitBig := types.NewInt(uint64(msg.GasLimit)) maxAccepted := types.BigDiv(act.Balance, types.NewInt(MaxSpendOnFeeDenom)) expectedFee := types.BigMul(feeInFuture, gasLimitBig) out := feeInFuture if types.BigCmp(expectedFee, maxAccepted) > 0 { log.Warnf("Expected fee for message higher than tolerance: %s > %s, setting to tolerance", types.FIL(expectedFee), types.FIL(maxAccepted)) out = types.BigDiv(maxAccepted, gasLimitBig) } return out, nil } func (a *GasAPI) GasEstimateGasPremium(ctx context.Context, nblocksincl uint64, sender address.Address, gaslimit int64, _ types.TipSetKey) (types.BigInt, error) { if nblocksincl == 0 { nblocksincl = 1 } type gasMeta struct { price big.Int limit int64 } var prices []gasMeta var blocks int ts := a.Chain.GetHeaviestTipSet() for i := uint64(0); i < nblocksincl*2; i++ { if len(ts.Parents().Cids()) == 0 { break // genesis } pts, err := a.Chain.LoadTipSet(ts.Parents()) if err != nil { return types.BigInt{}, err } blocks += len(pts.Blocks()) msgs, err := a.Chain.MessagesForTipset(pts) if err != nil { return types.BigInt{}, xerrors.Errorf("loading messages: %w", err) } for _, msg := range msgs { prices = append(prices, gasMeta{ price: msg.VMMessage().GasPremium, limit: msg.VMMessage().GasLimit, }) } ts = pts } sort.Slice(prices, func(i, j int) bool { // sort desc by price return prices[i].price.GreaterThan(prices[j].price) }) // todo: account for how full blocks are at := build.BlockGasTarget * int64(blocks) / 2 prev := big.Zero() premium := big.Zero() for _, price := range prices { at -= price.limit if at > 0 { prev = price.price continue } if prev.Equals(big.Zero()) { return types.BigAdd(price.price, big.NewInt(1)), nil } premium = types.BigAdd(big.Div(types.BigAdd(price.price, prev), types.NewInt(2)), big.NewInt(1)) } if types.BigCmp(premium, big.Zero()) == 0 { switch nblocksincl { case 1: premium = types.NewInt(2 * MinGasPremium) case 2: premium = types.NewInt(1.5 * MinGasPremium) default: premium = types.NewInt(MinGasPremium) } } // add some noise to normalize behaviour of message selection const precision = 32 // mean 1, stddev 0.005 => 95% within +-1% noise := 1 + rand.NormFloat64()*0.005 premium = types.BigMul(premium, types.NewInt(uint64(noise*(1<