forked from cerc-io/laconicd-deprecated
e70d8fcb56
* move non api methods from eth/api.go to evm_backend: ClientCtx, QueryClient, Ctx, getBlockNumber, getTransactionByBlockAndIndex, doCall * organize eth/api.go into sections and move backend logic to dedicated files * remove unnecesary comment * move resend to the backend * refractor eth api * refractor debug namespace * refactor miner namespace * refactor personal namespace * update transactionReceipt from upstream * update getBlockByNumber from upstream * update getBalance from upstream * update getProof from upstream * update getBalance from upstream * fix linter * remove duplicated import * remove duplicated import * fix backend tests * fix lint * fix duplicated imports * fix linter * reorganize blocks * backend folder refractor * remove unnecessary file * remove duplicate import Co-authored-by: Freddy Caceres <facs95@gmail.com>
165 lines
4.9 KiB
Go
165 lines
4.9 KiB
Go
// Package rpc contains RPC handler methods and utilities to start
|
|
// Ethermint's Web3-compatibly JSON-RPC server.
|
|
package rpc
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
|
|
"github.com/evmos/ethermint/rpc/backend"
|
|
"github.com/evmos/ethermint/rpc/namespaces/ethereum/debug"
|
|
"github.com/evmos/ethermint/rpc/namespaces/ethereum/eth"
|
|
"github.com/evmos/ethermint/rpc/namespaces/ethereum/eth/filters"
|
|
"github.com/evmos/ethermint/rpc/namespaces/ethereum/miner"
|
|
"github.com/evmos/ethermint/rpc/namespaces/ethereum/net"
|
|
"github.com/evmos/ethermint/rpc/namespaces/ethereum/personal"
|
|
"github.com/evmos/ethermint/rpc/namespaces/ethereum/txpool"
|
|
"github.com/evmos/ethermint/rpc/namespaces/ethereum/web3"
|
|
|
|
rpcclient "github.com/tendermint/tendermint/rpc/jsonrpc/client"
|
|
)
|
|
|
|
// RPC namespaces and API version
|
|
const (
|
|
// Cosmos namespaces
|
|
|
|
CosmosNamespace = "cosmos"
|
|
|
|
// Ethereum namespaces
|
|
|
|
Web3Namespace = "web3"
|
|
EthNamespace = "eth"
|
|
PersonalNamespace = "personal"
|
|
NetNamespace = "net"
|
|
TxPoolNamespace = "txpool"
|
|
DebugNamespace = "debug"
|
|
MinerNamespace = "miner"
|
|
|
|
apiVersion = "1.0"
|
|
)
|
|
|
|
// APICreator creates the JSON-RPC API implementations.
|
|
type APICreator = func(
|
|
ctx *server.Context,
|
|
clientCtx client.Context,
|
|
tendermintWebsocketClient *rpcclient.WSClient,
|
|
allowUnprotectedTxs bool,
|
|
) []rpc.API
|
|
|
|
// apiCreators defines the JSON-RPC API namespaces.
|
|
var apiCreators map[string]APICreator
|
|
|
|
func init() {
|
|
apiCreators = map[string]APICreator{
|
|
EthNamespace: func(ctx *server.Context, clientCtx client.Context, tmWSClient *rpcclient.WSClient, allowUnprotectedTxs bool) []rpc.API {
|
|
evmBackend := backend.NewBackend(ctx, ctx.Logger, clientCtx, allowUnprotectedTxs)
|
|
return []rpc.API{
|
|
{
|
|
Namespace: EthNamespace,
|
|
Version: apiVersion,
|
|
Service: eth.NewPublicAPI(ctx.Logger, evmBackend),
|
|
Public: true,
|
|
},
|
|
{
|
|
Namespace: EthNamespace,
|
|
Version: apiVersion,
|
|
Service: filters.NewPublicAPI(ctx.Logger, clientCtx, tmWSClient, evmBackend),
|
|
Public: true,
|
|
},
|
|
}
|
|
},
|
|
Web3Namespace: func(*server.Context, client.Context, *rpcclient.WSClient, bool) []rpc.API {
|
|
return []rpc.API{
|
|
{
|
|
Namespace: Web3Namespace,
|
|
Version: apiVersion,
|
|
Service: web3.NewPublicAPI(),
|
|
Public: true,
|
|
},
|
|
}
|
|
},
|
|
NetNamespace: func(_ *server.Context, clientCtx client.Context, _ *rpcclient.WSClient, _ bool) []rpc.API {
|
|
return []rpc.API{
|
|
{
|
|
Namespace: NetNamespace,
|
|
Version: apiVersion,
|
|
Service: net.NewPublicAPI(clientCtx),
|
|
Public: true,
|
|
},
|
|
}
|
|
},
|
|
PersonalNamespace: func(ctx *server.Context, clientCtx client.Context, _ *rpcclient.WSClient, allowUnprotectedTxs bool) []rpc.API {
|
|
evmBackend := backend.NewBackend(ctx, ctx.Logger, clientCtx, allowUnprotectedTxs)
|
|
return []rpc.API{
|
|
{
|
|
Namespace: PersonalNamespace,
|
|
Version: apiVersion,
|
|
Service: personal.NewAPI(ctx.Logger, evmBackend),
|
|
Public: false,
|
|
},
|
|
}
|
|
},
|
|
TxPoolNamespace: func(ctx *server.Context, _ client.Context, _ *rpcclient.WSClient, _ bool) []rpc.API {
|
|
return []rpc.API{
|
|
{
|
|
Namespace: TxPoolNamespace,
|
|
Version: apiVersion,
|
|
Service: txpool.NewPublicAPI(ctx.Logger),
|
|
Public: true,
|
|
},
|
|
}
|
|
},
|
|
DebugNamespace: func(ctx *server.Context, clientCtx client.Context, _ *rpcclient.WSClient, allowUnprotectedTxs bool) []rpc.API {
|
|
evmBackend := backend.NewBackend(ctx, ctx.Logger, clientCtx, allowUnprotectedTxs)
|
|
return []rpc.API{
|
|
{
|
|
Namespace: DebugNamespace,
|
|
Version: apiVersion,
|
|
Service: debug.NewAPI(ctx, evmBackend),
|
|
Public: true,
|
|
},
|
|
}
|
|
},
|
|
MinerNamespace: func(ctx *server.Context, clientCtx client.Context, _ *rpcclient.WSClient, allowUnprotectedTxs bool) []rpc.API {
|
|
evmBackend := backend.NewBackend(ctx, ctx.Logger, clientCtx, allowUnprotectedTxs)
|
|
return []rpc.API{
|
|
{
|
|
Namespace: MinerNamespace,
|
|
Version: apiVersion,
|
|
Service: miner.NewPrivateAPI(ctx, evmBackend),
|
|
Public: false,
|
|
},
|
|
}
|
|
},
|
|
}
|
|
}
|
|
|
|
// GetRPCAPIs returns the list of all APIs
|
|
func GetRPCAPIs(ctx *server.Context, clientCtx client.Context, tmWSClient *rpcclient.WSClient, allowUnprotectedTxs bool, selectedAPIs []string) []rpc.API {
|
|
var apis []rpc.API
|
|
|
|
for _, ns := range selectedAPIs {
|
|
if creator, ok := apiCreators[ns]; ok {
|
|
apis = append(apis, creator(ctx, clientCtx, tmWSClient, allowUnprotectedTxs)...)
|
|
} else {
|
|
ctx.Logger.Error("invalid namespace value", "namespace", ns)
|
|
}
|
|
}
|
|
|
|
return apis
|
|
}
|
|
|
|
// RegisterAPINamespace registers a new API namespace with the API creator.
|
|
// This function fails if the namespace is already registered.
|
|
func RegisterAPINamespace(ns string, creator APICreator) error {
|
|
if _, ok := apiCreators[ns]; ok {
|
|
return fmt.Errorf("duplicated api namespace %s", ns)
|
|
}
|
|
apiCreators[ns] = creator
|
|
return nil
|
|
}
|