mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
436493350e
1. changes sentinel to use an http-like interface 2. moves hexutil, crypto/blake2b, metrics packages to erigon-lib
109 lines
3.1 KiB
Go
109 lines
3.1 KiB
Go
package jsonrpc
|
|
|
|
import (
|
|
"context"
|
|
"github.com/ledgerwatch/erigon-lib/common/hexutil"
|
|
"math/big"
|
|
|
|
"github.com/holiman/uint256"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/common"
|
|
"github.com/ledgerwatch/erigon-lib/common/hexutility"
|
|
|
|
"github.com/ledgerwatch/erigon/core/vm"
|
|
)
|
|
|
|
func (api *OtterscanAPIImpl) TraceTransaction(ctx context.Context, hash common.Hash) ([]*TraceEntry, error) {
|
|
tx, err := api.db.BeginRo(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer tx.Rollback()
|
|
|
|
tracer := NewTransactionTracer(ctx)
|
|
if _, err := api.runTracer(ctx, tx, hash, tracer); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return tracer.Results, nil
|
|
}
|
|
|
|
type TraceEntry struct {
|
|
Type string `json:"type"`
|
|
Depth int `json:"depth"`
|
|
From common.Address `json:"from"`
|
|
To common.Address `json:"to"`
|
|
Value *hexutil.Big `json:"value"`
|
|
Input hexutility.Bytes `json:"input"`
|
|
}
|
|
|
|
type TransactionTracer struct {
|
|
DefaultTracer
|
|
ctx context.Context
|
|
Results []*TraceEntry
|
|
depth int // computed from CaptureStart, CaptureEnter, and CaptureExit calls
|
|
}
|
|
|
|
func NewTransactionTracer(ctx context.Context) *TransactionTracer {
|
|
return &TransactionTracer{
|
|
ctx: ctx,
|
|
Results: make([]*TraceEntry, 0),
|
|
}
|
|
}
|
|
|
|
func (t *TransactionTracer) captureStartOrEnter(typ vm.OpCode, from, to common.Address, precompile bool, input []byte, value *uint256.Int) {
|
|
if precompile {
|
|
return
|
|
}
|
|
|
|
inputCopy := make([]byte, len(input))
|
|
copy(inputCopy, input)
|
|
_value := new(big.Int)
|
|
if value != nil {
|
|
_value.Set(value.ToBig())
|
|
}
|
|
if typ == vm.CALL {
|
|
t.Results = append(t.Results, &TraceEntry{"CALL", t.depth, from, to, (*hexutil.Big)(_value), inputCopy})
|
|
return
|
|
}
|
|
if typ == vm.STATICCALL {
|
|
t.Results = append(t.Results, &TraceEntry{"STATICCALL", t.depth, from, to, nil, inputCopy})
|
|
return
|
|
}
|
|
if typ == vm.DELEGATECALL {
|
|
t.Results = append(t.Results, &TraceEntry{"DELEGATECALL", t.depth, from, to, nil, inputCopy})
|
|
return
|
|
}
|
|
if typ == vm.CALLCODE {
|
|
t.Results = append(t.Results, &TraceEntry{"CALLCODE", t.depth, from, to, (*hexutil.Big)(_value), inputCopy})
|
|
return
|
|
}
|
|
if typ == vm.CREATE {
|
|
t.Results = append(t.Results, &TraceEntry{"CREATE", t.depth, from, to, (*hexutil.Big)(value.ToBig()), inputCopy})
|
|
return
|
|
}
|
|
if typ == vm.CREATE2 {
|
|
t.Results = append(t.Results, &TraceEntry{"CREATE2", t.depth, from, to, (*hexutil.Big)(value.ToBig()), inputCopy})
|
|
return
|
|
}
|
|
|
|
if typ == vm.SELFDESTRUCT {
|
|
last := t.Results[len(t.Results)-1]
|
|
t.Results = append(t.Results, &TraceEntry{"SELFDESTRUCT", last.Depth + 1, from, to, (*hexutil.Big)(value.ToBig()), nil})
|
|
}
|
|
}
|
|
|
|
func (t *TransactionTracer) CaptureStart(env *vm.EVM, from common.Address, to common.Address, precompile bool, create bool, input []byte, gas uint64, value *uint256.Int, code []byte) {
|
|
t.depth = 0
|
|
t.captureStartOrEnter(vm.CALL, from, to, precompile, input, value)
|
|
}
|
|
|
|
func (t *TransactionTracer) CaptureEnter(typ vm.OpCode, from common.Address, to common.Address, precompile bool, create bool, input []byte, gas uint64, value *uint256.Int, code []byte) {
|
|
t.depth++
|
|
t.captureStartOrEnter(typ, from, to, precompile, input, value)
|
|
}
|
|
|
|
func (t *TransactionTracer) CaptureExit(output []byte, usedGas uint64, err error) {
|
|
t.depth--
|
|
}
|