wormhole/node/pkg/watchers/evm/connectors/arbitrum.go

43 lines
1.2 KiB
Go

// On Arbitrum we are unable to get blocks by transaction hash using the go-ethereum library
// because it fails with "transaction type not supported". However, calling the underlying
// eth_getBlockByHash directly works. The sole function of this connector is to implement
// TimeOfBlockByHash using the raw connection.
package connectors
import (
"context"
"fmt"
"strconv"
ethCommon "github.com/ethereum/go-ethereum/common"
)
type ArbitrumConnector struct {
Connector
}
func NewArbitrumConnector(ctx context.Context, baseConnector Connector) (*ArbitrumConnector, error) {
connector := &ArbitrumConnector{Connector: baseConnector}
return connector, nil
}
func (a *ArbitrumConnector) TimeOfBlockByHash(ctx context.Context, hash ethCommon.Hash) (uint64, error) {
type Marshaller struct {
Time string `json:"timestamp" gencodec:"required"`
}
var m *Marshaller
err := a.RawCallContext(ctx, &m, "eth_getBlockByHash", hash, false)
if err != nil {
return 0, fmt.Errorf("failed to get block %s: %w", hash.String(), err)
}
num, err := strconv.ParseUint(m.Time[2:], 16, 64)
if err != nil {
return 0, fmt.Errorf("failed to parse time %s: %w", m.Time, err)
}
return num, nil
}