92dc7d9a59
- Adds ethermint query command (`emintcli query ethermint <query>`) - Supports block number, storage, code, balance lookups - Implements RPC API methods `eth_blockNumber`, `eth_getStorageAt`, `eth_getBalance`, and `eth_getCode` - Adds tester utility for RPC calls - Adheres to go test format, but should not be run with regular suite - Requires daemon and RPC server to be running - Excluded from `make test`, available with `make test-rpc` - Implemented AppModule interface and added EVM module to app - Required for routing - Implements `InitGenesis` (`x/evm/genesis.go`) and stubs `ExportGenesis` - Modifies GenesisAccount to match expected format
106 lines
2.9 KiB
Go
106 lines
2.9 KiB
Go
package evm
|
|
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/ethermint/version"
|
|
"github.com/cosmos/ethermint/x/evm/types"
|
|
ethcmn "github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
"math/big"
|
|
)
|
|
|
|
// Supported endpoints
|
|
const (
|
|
QueryProtocolVersion = "protocolVersion"
|
|
QueryBalance = "balance"
|
|
QueryBlockNumber = "blockNumber"
|
|
QueryStorage = "storage"
|
|
QueryCode = "code"
|
|
)
|
|
|
|
// NewQuerier is the module level router for state queries
|
|
func NewQuerier(keeper Keeper) sdk.Querier {
|
|
return func(ctx sdk.Context, path []string, req abci.RequestQuery) (res []byte, err sdk.Error) {
|
|
switch path[0] {
|
|
case QueryProtocolVersion:
|
|
return queryProtocolVersion(keeper)
|
|
case QueryBalance:
|
|
return queryBalance(ctx, path, keeper)
|
|
case QueryBlockNumber:
|
|
return queryBlockNumber(ctx, keeper)
|
|
case QueryStorage:
|
|
return queryStorage(ctx, path, keeper)
|
|
case QueryCode:
|
|
return queryCode(ctx, path, keeper)
|
|
default:
|
|
return nil, sdk.ErrUnknownRequest("unknown query endpoint")
|
|
}
|
|
}
|
|
}
|
|
|
|
func queryProtocolVersion(keeper Keeper) ([]byte, sdk.Error) {
|
|
vers := version.ProtocolVersion
|
|
|
|
res, err := codec.MarshalJSONIndent(keeper.cdc, vers)
|
|
if err != nil {
|
|
panic("could not marshal result to JSON")
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func queryBalance(ctx sdk.Context, path []string, keeper Keeper) ([]byte, sdk.Error) {
|
|
addr := ethcmn.BytesToAddress([]byte(path[1]))
|
|
balance := keeper.GetBalance(ctx, addr)
|
|
hBalance := &hexutil.Big{}
|
|
err := hBalance.UnmarshalText(balance.Bytes())
|
|
if err != nil {
|
|
panic("could not marshal big.Int to hexutil.Big")
|
|
}
|
|
|
|
bRes := types.QueryResBalance{Balance: hBalance}
|
|
res, err := codec.MarshalJSONIndent(keeper.cdc, bRes)
|
|
if err != nil {
|
|
panic("could not marshal result to JSON")
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func queryBlockNumber(ctx sdk.Context, keeper Keeper) ([]byte, sdk.Error) {
|
|
num := ctx.BlockHeight()
|
|
bnRes := types.QueryResBlockNumber{Number: big.NewInt(num)}
|
|
res, err := codec.MarshalJSONIndent(keeper.cdc, bnRes)
|
|
if err != nil {
|
|
panic("could not marshal result to JSON")
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func queryStorage(ctx sdk.Context, path []string, keeper Keeper) ([]byte, sdk.Error) {
|
|
addr := ethcmn.BytesToAddress([]byte(path[1]))
|
|
key := ethcmn.BytesToHash([]byte(path[2]))
|
|
val := keeper.GetState(ctx, addr, key)
|
|
bRes := types.QueryResStorage{Value: val.Bytes()}
|
|
res, err := codec.MarshalJSONIndent(keeper.cdc, bRes)
|
|
if err != nil {
|
|
panic("could not marshal result to JSON")
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
func queryCode(ctx sdk.Context, path []string, keeper Keeper) ([]byte, sdk.Error) {
|
|
addr := ethcmn.BytesToAddress([]byte(path[1]))
|
|
code := keeper.GetCode(ctx, addr)
|
|
cRes := types.QueryResCode{Code: code}
|
|
res, err := codec.MarshalJSONIndent(keeper.cdc, cRes)
|
|
if err != nil {
|
|
panic("could not marshal result to JSON")
|
|
}
|
|
|
|
return res, nil
|
|
}
|