400 lines
10 KiB
Go
400 lines
10 KiB
Go
package ethereum
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"log"
|
|
"math/big"
|
|
"net/http"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/kjannette/koin-ping/backend-go/internal/domain"
|
|
)
|
|
|
|
const (
|
|
rpcTimeoutMS = 30000
|
|
rpcMaxRetries = 3
|
|
rpcRetryBaseMS = 1000
|
|
)
|
|
|
|
type JsonRpcEthereum struct {
|
|
rpcURL string
|
|
client *http.Client
|
|
}
|
|
|
|
func NewJsonRpcEthereum(rpcURL string) (*JsonRpcEthereum, error) {
|
|
if rpcURL == "" {
|
|
return nil, fmt.Errorf("JsonRpcEthereum requires a valid RPC URL")
|
|
}
|
|
return &JsonRpcEthereum{
|
|
rpcURL: rpcURL,
|
|
client: &http.Client{
|
|
Timeout: time.Duration(rpcTimeoutMS) * time.Millisecond,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
type rpcRequest struct {
|
|
JSONRPC string `json:"jsonrpc"`
|
|
ID int64 `json:"id"`
|
|
Method string `json:"method"`
|
|
Params []interface{} `json:"params"`
|
|
}
|
|
|
|
type rpcResponse struct {
|
|
JSONRPC string `json:"jsonrpc"`
|
|
ID int64 `json:"id"`
|
|
Result json.RawMessage `json:"result"`
|
|
Error *rpcError `json:"error"`
|
|
}
|
|
|
|
type rpcError struct {
|
|
Code int `json:"code"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
func (j *JsonRpcEthereum) callRPC(ctx context.Context, method string, params ...interface{}) (json.RawMessage, error) {
|
|
if params == nil {
|
|
params = []interface{}{}
|
|
}
|
|
|
|
body, err := json.Marshal(rpcRequest{
|
|
JSONRPC: "2.0",
|
|
ID: time.Now().UnixMilli(),
|
|
Method: method,
|
|
Params: params,
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("marshal RPC request: %w", err)
|
|
}
|
|
|
|
return j.callWithRetry(ctx, method, body)
|
|
}
|
|
|
|
// callWithRetry executes a JSON-RPC POST with exponential backoff on transient errors.
|
|
// It retries on network errors, HTTP 429, and HTTP 5xx. It does NOT retry on RPC-level
|
|
// errors or other 4xx responses (those are permanent failures).
|
|
func (j *JsonRpcEthereum) callWithRetry(ctx context.Context, method string, body []byte) (json.RawMessage, error) {
|
|
var lastErr error
|
|
for attempt := range rpcMaxRetries {
|
|
if attempt > 0 {
|
|
wait := time.Duration(rpcRetryBaseMS*(1<<(attempt-1))) * time.Millisecond
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil, ctx.Err()
|
|
case <-time.After(wait):
|
|
}
|
|
log.Printf("Retrying RPC call [%s] (attempt %d/%d)", method, attempt+1, rpcMaxRetries)
|
|
}
|
|
|
|
result, err := j.doRPCCall(ctx, method, body)
|
|
if err == nil {
|
|
return result, nil
|
|
}
|
|
|
|
lastErr = err
|
|
|
|
// Permanent errors: do not retry
|
|
if isPermanentRPCError(err) {
|
|
return nil, err
|
|
}
|
|
|
|
log.Printf("Transient RPC error [%s] (attempt %d/%d): %v", method, attempt+1, rpcMaxRetries, err)
|
|
}
|
|
|
|
return nil, lastErr
|
|
}
|
|
|
|
func (j *JsonRpcEthereum) doRPCCall(ctx context.Context, method string, body []byte) (json.RawMessage, error) {
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodPost, j.rpcURL, bytes.NewReader(body))
|
|
if err != nil {
|
|
return nil, fmt.Errorf("create RPC request: %w", err)
|
|
}
|
|
req.Header.Set("Content-Type", "application/json")
|
|
|
|
resp, err := j.client.Do(req)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("RPC call failed [%s]: %w", method, err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
// 429 and 5xx are transient; other non-200 are permanent.
|
|
if resp.StatusCode != http.StatusOK {
|
|
err := fmt.Errorf("HTTP %d: %s for %s", resp.StatusCode, resp.Status, method)
|
|
if resp.StatusCode == http.StatusTooManyRequests || resp.StatusCode >= 500 { //nolint:mnd
|
|
return nil, err // transient — will be retried
|
|
}
|
|
return nil, &permanentRPCError{err}
|
|
}
|
|
|
|
var rpcResp rpcResponse
|
|
if err := json.NewDecoder(resp.Body).Decode(&rpcResp); err != nil {
|
|
return nil, fmt.Errorf("decode RPC response: %w", err)
|
|
}
|
|
|
|
if rpcResp.Error != nil {
|
|
// RPC-level errors are permanent (bad params, unsupported method, etc.)
|
|
return nil, &permanentRPCError{
|
|
fmt.Errorf("RPC Error [%s]: %s (code: %d)", method, rpcResp.Error.Message, rpcResp.Error.Code),
|
|
}
|
|
}
|
|
|
|
return rpcResp.Result, nil
|
|
}
|
|
|
|
type permanentRPCError struct{ cause error }
|
|
|
|
func (e *permanentRPCError) Error() string { return e.cause.Error() }
|
|
func (e *permanentRPCError) Unwrap() error { return e.cause }
|
|
|
|
func isPermanentRPCError(err error) bool {
|
|
var p *permanentRPCError
|
|
return errors.As(err, &p)
|
|
}
|
|
|
|
func (j *JsonRpcEthereum) GetLatestBlockNumber(ctx context.Context) (int, error) {
|
|
result, err := j.callRPC(ctx, "eth_blockNumber")
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
var hexBlock string
|
|
if err := json.Unmarshal(result, &hexBlock); err != nil {
|
|
return 0, fmt.Errorf("unmarshal block number: %w", err)
|
|
}
|
|
|
|
return hexToInt(hexBlock)
|
|
}
|
|
|
|
type rpcBlock struct {
|
|
Timestamp string `json:"timestamp"`
|
|
Transactions []rpcTx `json:"transactions"`
|
|
}
|
|
|
|
type rpcTx struct {
|
|
Hash string `json:"hash"`
|
|
From string `json:"from"`
|
|
To *string `json:"to"`
|
|
Value string `json:"value"`
|
|
BlockNumber string `json:"blockNumber"`
|
|
}
|
|
|
|
func (j *JsonRpcEthereum) GetBlockTransactions(ctx context.Context, blockNumber int) ([]domain.NormalizedTx, error) {
|
|
hexBlock := fmt.Sprintf("0x%x", blockNumber)
|
|
|
|
result, err := j.callRPC(ctx, "eth_getBlockByNumber", hexBlock, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if string(result) == "null" {
|
|
return nil, nil
|
|
}
|
|
|
|
var block rpcBlock
|
|
if err := json.Unmarshal(result, &block); err != nil {
|
|
return nil, fmt.Errorf("unmarshal block: %w", err)
|
|
}
|
|
|
|
blockTimestamp, err := hexToInt64(block.Timestamp)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("parse block timestamp: %w", err)
|
|
}
|
|
|
|
txs := make([]domain.NormalizedTx, 0, len(block.Transactions))
|
|
for _, tx := range block.Transactions {
|
|
bn, _ := hexToInt(tx.BlockNumber)
|
|
|
|
var toLower *string
|
|
if tx.To != nil {
|
|
s := strings.ToLower(*tx.To)
|
|
toLower = &s
|
|
}
|
|
|
|
txs = append(txs, domain.NormalizedTx{
|
|
Hash: tx.Hash,
|
|
From: strings.ToLower(tx.From),
|
|
To: toLower,
|
|
Value: hexToDecimalString(tx.Value),
|
|
BlockNumber: bn,
|
|
BlockTimestamp: blockTimestamp,
|
|
})
|
|
}
|
|
|
|
return txs, nil
|
|
}
|
|
|
|
func (j *JsonRpcEthereum) GetBalance(ctx context.Context, address string) (string, error) {
|
|
result, err := j.callRPC(ctx, "eth_getBalance", address, "latest")
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
var hexBalance string
|
|
if err := json.Unmarshal(result, &hexBalance); err != nil {
|
|
return "", fmt.Errorf("unmarshal balance: %w", err)
|
|
}
|
|
|
|
return hexToDecimalString(hexBalance), nil
|
|
}
|
|
|
|
const erc20TransferTopic = "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"
|
|
|
|
const minTransferTopics = 3
|
|
|
|
type rpcLog struct {
|
|
Address string `json:"address"`
|
|
Topics []string `json:"topics"`
|
|
Data string `json:"data"`
|
|
BlockNumber string `json:"blockNumber"`
|
|
TxHash string `json:"transactionHash"`
|
|
}
|
|
|
|
// GetTokenTransfers fetches ERC-20 Transfer events for a given address
|
|
// across a block range, covering both incoming and outgoing transfers.
|
|
func (j *JsonRpcEthereum) GetTokenTransfers(ctx context.Context, fromBlock, toBlock int, address string) ([]domain.NormalizedTx, error) {
|
|
paddedAddr := padAddress(address)
|
|
hexFrom := fmt.Sprintf("0x%x", fromBlock)
|
|
hexTo := fmt.Sprintf("0x%x", toBlock)
|
|
|
|
incomingLogs, err := j.getTransferLogs(ctx, hexFrom, hexTo, "", paddedAddr)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("fetch incoming token transfers: %w", err)
|
|
}
|
|
|
|
outgoingLogs, err := j.getTransferLogs(ctx, hexFrom, hexTo, paddedAddr, "")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("fetch outgoing token transfers: %w", err)
|
|
}
|
|
|
|
seen := make(map[string]bool)
|
|
var txs []domain.NormalizedTx
|
|
|
|
for _, entry := range append(incomingLogs, outgoingLogs...) {
|
|
key := entry.TxHash + "|" + entry.Address + "|" + entry.Data
|
|
if seen[key] {
|
|
continue
|
|
}
|
|
seen[key] = true
|
|
|
|
tx, parseErr := parseTransferLog(entry)
|
|
if parseErr != nil {
|
|
log.Printf("Skipping unparseable transfer log in tx %s: %v", entry.TxHash, parseErr)
|
|
continue
|
|
}
|
|
txs = append(txs, tx)
|
|
}
|
|
|
|
return txs, nil
|
|
}
|
|
|
|
func (j *JsonRpcEthereum) getTransferLogs(ctx context.Context, fromBlock, toBlock, fromAddr, toAddr string) ([]rpcLog, error) {
|
|
topics := make([]interface{}, minTransferTopics)
|
|
topics[0] = erc20TransferTopic
|
|
|
|
if fromAddr != "" {
|
|
topics[1] = fromAddr
|
|
}
|
|
if toAddr != "" {
|
|
topics[2] = toAddr
|
|
}
|
|
|
|
filter := map[string]interface{}{
|
|
"fromBlock": fromBlock,
|
|
"toBlock": toBlock,
|
|
"topics": topics,
|
|
}
|
|
|
|
result, err := j.callRPC(ctx, "eth_getLogs", filter)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var logs []rpcLog
|
|
if err := json.Unmarshal(result, &logs); err != nil {
|
|
return nil, fmt.Errorf("unmarshal logs: %w", err)
|
|
}
|
|
|
|
return logs, nil
|
|
}
|
|
|
|
func parseTransferLog(entry rpcLog) (domain.NormalizedTx, error) {
|
|
if len(entry.Topics) < minTransferTopics {
|
|
return domain.NormalizedTx{}, fmt.Errorf("transfer log has %d topics, expected >= 3", len(entry.Topics))
|
|
}
|
|
|
|
from := topicToAddress(entry.Topics[1])
|
|
to := topicToAddress(entry.Topics[2])
|
|
tokenValue := hexToDecimalString(entry.Data)
|
|
blockNumber, _ := hexToInt(entry.BlockNumber)
|
|
|
|
contractAddr := strings.ToLower(entry.Address)
|
|
tokenInfo, known := LookupToken(contractAddr)
|
|
|
|
tx := domain.NormalizedTx{
|
|
Hash: entry.TxHash,
|
|
From: from,
|
|
To: &to,
|
|
Value: "0",
|
|
BlockNumber: blockNumber,
|
|
TokenContract: &contractAddr,
|
|
TokenValue: &tokenValue,
|
|
}
|
|
|
|
if known {
|
|
tx.TokenSymbol = &tokenInfo.Symbol
|
|
tx.TokenDecimals = &tokenInfo.Decimals
|
|
}
|
|
|
|
return tx, nil
|
|
}
|
|
|
|
func padAddress(addr string) string {
|
|
clean := strings.TrimPrefix(strings.ToLower(addr), "0x")
|
|
const addressHexLen = 64
|
|
return "0x" + strings.Repeat("0", addressHexLen-len(clean)) + clean
|
|
}
|
|
|
|
func topicToAddress(topic string) string {
|
|
clean := strings.TrimPrefix(topic, "0x")
|
|
const ethAddrLen = 40
|
|
if len(clean) > ethAddrLen {
|
|
clean = clean[len(clean)-ethAddrLen:]
|
|
}
|
|
return "0x" + strings.ToLower(clean)
|
|
}
|
|
|
|
func hexToInt(hex string) (int, error) {
|
|
hex = strings.TrimPrefix(hex, "0x")
|
|
n, ok := new(big.Int).SetString(hex, 16)
|
|
if !ok {
|
|
return 0, fmt.Errorf("invalid hex: %s", hex)
|
|
}
|
|
return int(n.Int64()), nil
|
|
}
|
|
|
|
func hexToInt64(hex string) (int64, error) {
|
|
hex = strings.TrimPrefix(hex, "0x")
|
|
n, ok := new(big.Int).SetString(hex, 16)
|
|
if !ok {
|
|
return 0, fmt.Errorf("invalid hex: %s", hex)
|
|
}
|
|
return n.Int64(), nil
|
|
}
|
|
|
|
func hexToDecimalString(hex string) string {
|
|
if hex == "" || hex == "0x" || hex == "0x0" {
|
|
return "0"
|
|
}
|
|
clean := strings.TrimPrefix(hex, "0x")
|
|
n, ok := new(big.Int).SetString(clean, 16)
|
|
if !ok {
|
|
return "0"
|
|
}
|
|
return n.String()
|
|
}
|