laconicd/x/evm/client/rest/rest.go

96 lines
2.7 KiB
Go
Raw Normal View History

package rest
import (
2021-04-17 10:00:07 +00:00
"context"
"encoding/hex"
"encoding/json"
"net/http"
"strings"
2021-04-17 10:00:07 +00:00
"github.com/gorilla/mux"
"github.com/cosmos/cosmos-sdk/client"
clientrest "github.com/cosmos/cosmos-sdk/client/rest"
"github.com/cosmos/cosmos-sdk/types/rest"
authrest "github.com/cosmos/cosmos-sdk/x/auth/client/rest"
2021-04-17 10:00:07 +00:00
rpctypes "github.com/tharsis/ethermint/ethereum/rpc/types"
2021-04-17 10:00:07 +00:00
"github.com/ethereum/go-ethereum/common"
)
2021-04-17 10:00:07 +00:00
// RegisterTxRoutes - Central function to define routes that get registered by the main application
func RegisterTxRoutes(clientCtx client.Context, rtr *mux.Router) {
r := clientrest.WithHTTPDeprecationHeaders(rtr)
r.HandleFunc("/txs/{hash}", QueryTxRequestHandlerFn(clientCtx)).Methods("GET")
r.HandleFunc("/txs", authrest.QueryTxsRequestHandlerFn(clientCtx)).Methods("GET")
r.HandleFunc("/txs", authrest.BroadcastTxRequest(clientCtx)).Methods("POST")
r.HandleFunc("/txs/encode", authrest.EncodeTxRequestHandlerFn(clientCtx)).Methods("POST")
r.HandleFunc("/txs/decode", authrest.DecodeTxRequestHandlerFn(clientCtx)).Methods("POST")
}
2021-04-17 10:00:07 +00:00
// QueryTxRequestHandlerFn implements a REST handler that queries a transaction
// by hash in a committed block.
func QueryTxRequestHandlerFn(clientCtx client.Context) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
hashHexStr := vars["hash"]
2021-04-17 10:00:07 +00:00
clientCtx, ok := rest.ParseQueryHeightOrReturnBadRequest(w, clientCtx, r)
if !ok {
return
}
ethHashPrefix := "0x"
2021-04-17 10:00:07 +00:00
if !strings.HasPrefix(hashHexStr, ethHashPrefix) {
authrest.QueryTxRequestHandlerFn(clientCtx)
return
}
2021-04-17 10:00:07 +00:00
// eth Tx
ethHashPrefixLength := len(ethHashPrefix)
output, err := getEthTransactionByHash(clientCtx, hashHexStr[ethHashPrefixLength:])
if err != nil {
rest.WriteErrorResponse(w, http.StatusInternalServerError, err.Error())
return
}
2021-04-17 10:00:07 +00:00
rest.PostProcessResponseBare(w, clientCtx, output)
}
}
// GetTransactionByHash returns the transaction identified by hash.
2021-04-17 10:00:07 +00:00
func getEthTransactionByHash(clientCtx client.Context, hashHex string) ([]byte, error) {
hash, err := hex.DecodeString(hashHex)
if err != nil {
return nil, err
}
2021-04-17 10:00:07 +00:00
node, err := clientCtx.GetNode()
if err != nil {
return nil, err
}
2021-04-17 10:00:07 +00:00
tx, err := node.Tx(context.Background(), hash, false)
if err != nil {
return nil, err
}
// Can either cache or just leave this out if not necessary
2021-04-17 10:00:07 +00:00
block, err := node.Block(context.Background(), &tx.Height)
if err != nil {
return nil, err
}
2021-04-18 15:54:18 +00:00
blockHash := common.BytesToHash(block.Block.Header.Hash())
2021-04-17 10:00:07 +00:00
ethTx, err := rpctypes.RawTxToEthTx(clientCtx, tx.Tx)
if err != nil {
return nil, err
}
height := uint64(tx.Height)
rpcTx := rpctypes.NewTransaction(ethTx.AsTransaction(), blockHash, height, uint64(tx.Index))
return json.Marshal(rpcTx)
}