-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathgasprice.go
293 lines (260 loc) · 9.41 KB
/
gasprice.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
// Copyright 2015 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
package gasprice
import (
"container/heap"
"context"
"errors"
"math/big"
"github.com/holiman/uint256"
"github.com/ledgerwatch/erigon-lib/chain"
libcommon "github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon/eth/gasprice/gaspricecfg"
"github.com/ledgerwatch/log/v3"
"github.com/ledgerwatch/erigon/core/types"
"github.com/ledgerwatch/erigon/rpc"
)
const sampleNumber = 3 // Number of transactions sampled in a block
// OracleBackend includes all necessary background APIs for oracle.
type OracleBackend interface {
HeaderByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Header, error)
BlockByNumber(ctx context.Context, number rpc.BlockNumber) (*types.Block, error)
ChainConfig() *chain.Config
GetReceipts(ctx context.Context, block *types.Block) (types.Receipts, error)
PendingBlockAndReceipts() (*types.Block, types.Receipts)
}
type Cache interface {
GetLatest() (libcommon.Hash, *big.Int)
SetLatest(hash libcommon.Hash, price *big.Int)
}
// Oracle recommends gas prices based on the content of recent
// blocks. Suitable for both light and full clients.
type Oracle struct {
backend OracleBackend
lastHead libcommon.Hash
lastPrice *big.Int
maxPrice *big.Int
ignorePrice *big.Int
cache Cache
checkBlocks int
percentile int
maxHeaderHistory, maxBlockHistory int
}
// NewOracle returns a new gasprice oracle which can recommend suitable
// gasprice for newly created transaction.
func NewOracle(backend OracleBackend, params gaspricecfg.Config, cache Cache) *Oracle {
blocks := params.Blocks
if blocks < 1 {
blocks = 1
log.Warn("Sanitizing invalid gasprice oracle sample blocks", "provided", params.Blocks, "updated", blocks)
}
percent := params.Percentile
if percent < 0 {
percent = 0
log.Warn("Sanitizing invalid gasprice oracle sample percentile", "provided", params.Percentile, "updated", percent)
}
if percent > 100 {
percent = 100
log.Warn("Sanitizing invalid gasprice oracle sample percentile", "provided", params.Percentile, "updated", percent)
}
maxPrice := params.MaxPrice
if maxPrice == nil || maxPrice.Int64() <= 0 {
maxPrice = gaspricecfg.DefaultMaxPrice
log.Warn("Sanitizing invalid gasprice oracle price cap", "provided", params.MaxPrice, "updated", maxPrice)
}
ignorePrice := params.IgnorePrice
if ignorePrice == nil || ignorePrice.Int64() < 0 {
ignorePrice = gaspricecfg.DefaultIgnorePrice
log.Warn("Sanitizing invalid gasprice oracle ignore price", "provided", params.IgnorePrice, "updated", ignorePrice)
}
setBorDefaultGpoIgnorePrice(backend.ChainConfig(), params)
return &Oracle{
backend: backend,
lastPrice: params.Default,
maxPrice: maxPrice,
ignorePrice: ignorePrice,
checkBlocks: blocks,
percentile: percent,
cache: cache,
maxHeaderHistory: params.MaxHeaderHistory,
maxBlockHistory: params.MaxBlockHistory,
}
}
// SuggestTipCap returns a TipCap so that newly created transaction can
// have a very high chance to be included in the following blocks.
// NODE: if caller wants legacy tx SuggestedPrice, we need to add
// baseFee to the returned bigInt
func (oracle *Oracle) SuggestTipCap(ctx context.Context) (*big.Int, error) {
latestHead, latestPrice := oracle.cache.GetLatest()
head, err := oracle.backend.HeaderByNumber(ctx, rpc.LatestBlockNumber)
if err != nil {
return latestPrice, err
}
if head == nil {
return latestPrice, nil
}
headHash := head.Hash()
if latestHead == headHash {
return latestPrice, nil
}
// check again, the last request could have populated the cache
latestHead, latestPrice = oracle.cache.GetLatest()
if latestHead == headHash {
return latestPrice, nil
}
number := head.Number.Uint64()
txPrices := make(sortingHeap, 0, sampleNumber*oracle.checkBlocks)
for txPrices.Len() < sampleNumber*oracle.checkBlocks && number > 0 {
err := oracle.getBlockPrices(ctx, number, sampleNumber, oracle.ignorePrice, &txPrices)
if err != nil {
return latestPrice, err
}
number--
}
price := latestPrice
if txPrices.Len() > 0 {
// Item with this position needs to be extracted from the sorting heap
// so we pop all the items before it
percentilePosition := (txPrices.Len() - 1) * oracle.percentile / 100
for i := 0; i < percentilePosition; i++ {
heap.Pop(&txPrices)
}
}
if txPrices.Len() > 0 {
// Don't need to pop it, just take from the top of the heap
price = txPrices[0].ToBig()
}
if price.Cmp(oracle.maxPrice) > 0 {
price = new(big.Int).Set(oracle.maxPrice)
}
oracle.cache.SetLatest(headHash, price)
return price, nil
}
type transactionsByGasPrice struct {
txs []types.Transaction
baseFee *uint256.Int
}
func newTransactionsByGasPrice(txs []types.Transaction,
baseFee *uint256.Int) transactionsByGasPrice {
return transactionsByGasPrice{
txs: txs,
baseFee: baseFee,
}
}
func (t transactionsByGasPrice) Len() int { return len(t.txs) }
func (t transactionsByGasPrice) Swap(i, j int) { t.txs[i], t.txs[j] = t.txs[j], t.txs[i] }
func (t transactionsByGasPrice) Less(i, j int) bool {
tip1 := t.txs[i].GetEffectiveGasTip(t.baseFee)
tip2 := t.txs[j].GetEffectiveGasTip(t.baseFee)
return tip1.Lt(tip2)
}
// Push (part of heap.Interface) places a new link onto the end of queue
func (t *transactionsByGasPrice) Push(x interface{}) {
// Push and Pop use pointer receivers because they modify the slice's length,
// not just its contents.
l, ok := x.(types.Transaction)
if !ok {
log.Error("Type assertion failure", "err", "cannot get types.Transaction from interface")
}
t.txs = append(t.txs, l)
}
// Pop (part of heap.Interface) removes the first link from the queue
func (t *transactionsByGasPrice) Pop() interface{} {
old := t.txs
n := len(old)
x := old[n-1]
old[n-1] = nil // avoid memory leak
t.txs = old[0 : n-1]
return x
}
// getBlockPrices calculates the lowest transaction gas price in a given block.
// the block is empty or all transactions are sent by the miner
// itself(it doesn't make any sense to include this kind of transaction prices for sampling),
// nil gasprice is returned.
func (oracle *Oracle) getBlockPrices(ctx context.Context, blockNum uint64, limit int,
ingoreUnderBig *big.Int, s *sortingHeap) error {
ignoreUnder, overflow := uint256.FromBig(ingoreUnderBig)
if overflow {
err := errors.New("overflow in getBlockPrices, gasprice.go: ignoreUnder too large")
log.Error("gasprice.go: getBlockPrices", "err", err)
return err
}
block, err := oracle.backend.BlockByNumber(ctx, rpc.BlockNumber(blockNum))
if err != nil {
log.Error("gasprice.go: getBlockPrices", "err", err)
return err
}
if block == nil {
return nil
}
blockTxs := block.Transactions()
plainTxs := make([]types.Transaction, len(blockTxs))
copy(plainTxs, blockTxs)
var baseFee *uint256.Int
if block.BaseFee() == nil {
baseFee = nil
} else {
baseFee, overflow = uint256.FromBig(block.BaseFee())
if overflow {
err := errors.New("overflow in getBlockPrices, gasprice.go: baseFee > 2^256-1")
log.Error("gasprice.go: getBlockPrices", "err", err)
return err
}
}
txs := newTransactionsByGasPrice(plainTxs, baseFee)
heap.Init(&txs)
count := 0
for count < limit && txs.Len() > 0 {
tx := heap.Pop(&txs).(types.Transaction)
tip := tx.GetEffectiveGasTip(baseFee)
if ignoreUnder != nil && tip.Lt(ignoreUnder) {
continue
}
sender, _ := tx.GetSender()
if err == nil && sender != block.Coinbase() {
heap.Push(s, tip)
count = count + 1
}
}
return nil
}
type sortingHeap []*uint256.Int
func (s sortingHeap) Len() int { return len(s) }
func (s sortingHeap) Less(i, j int) bool { return s[i].Lt(s[j]) }
func (s sortingHeap) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
// Push (part of heap.Interface) places a new link onto the end of queue
func (s *sortingHeap) Push(x interface{}) {
// Push and Pop use pointer receivers because they modify the slice's length,
// not just its contents.
l := x.(*uint256.Int)
*s = append(*s, l)
}
// Pop (part of heap.Interface) removes the first link from the queue
func (s *sortingHeap) Pop() interface{} {
old := *s
n := len(old)
x := old[n-1]
old[n-1] = nil // avoid memory leak
*s = old[0 : n-1]
return x
}
// setBorDefaultGpoIgnorePrice enforces gpo IgnorePrice to be equal to BorDefaultGpoIgnorePrice (25gwei by default)
func setBorDefaultGpoIgnorePrice(chainConfig *chain.Config, gasPriceConfig gaspricecfg.Config) {
if chainConfig.Bor != nil && gasPriceConfig.IgnorePrice != gaspricecfg.BorDefaultGpoIgnorePrice {
log.Warn("Sanitizing invalid bor gasprice oracle ignore price", "provided", gasPriceConfig.IgnorePrice, "updated", gaspricecfg.BorDefaultGpoIgnorePrice)
gasPriceConfig.IgnorePrice = gaspricecfg.BorDefaultGpoIgnorePrice
}
}