Skip to content

Releases: DeBankDeFi/etherlib

v0.2.8-ron

17 Mar 09:47
Compare
Choose a tag to compare

v0.3.2

13 Feb 03:21
5c7440b
Compare
Choose a tag to compare

What's Changed

  • Improve Gasfee suggestion logic by @windycrypto in #24

Full Changelog: v0.3.1...v0.3.2

v0.3.1

23 Jan 19:43
5423fdc
Compare
Choose a tag to compare

What's Changed

  • suggested gas fee API adapts to OP & base by @windycrypto in #23

Full Changelog: v0.3.0...v0.3.1

v0.3.0

22 Jan 13:41
52aa783
Compare
Choose a tag to compare

What's Changed

  • Encapsulate gasfee API by @windycrypto in #21

Full Changelog: v0.2.9...v0.3.0

v0.2.7-kroma-1

28 Mar 07:45
Compare
Choose a tag to compare

v0.2.9

12 Mar 15:57
83299af
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.8...v0.2.9

v0.2.8-bsc-patch-9

18 Dec 09:16
Compare
Choose a tag to compare

Release v0.2.8-bsc-patch-1

01 Oct 07:35
Compare
Choose a tag to compare

Release v0.2.8-bsc

12 Sep 08:26
Compare
Choose a tag to compare

Release v0.2.5-patch-1-go-ethereum-v1.10.8

03 Jul 07:32
Compare
Choose a tag to compare

Full Changelog: v0.2.5...v0.2.5-patch-1-go-ethereum-v1.10.8

trace interface
type Tracer interface {
CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int)
CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error)
CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error)
CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error)
}