173 lines
7.7 KiB
Go
173 lines
7.7 KiB
Go
|
package backend
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"math/big"
|
||
|
"time"
|
||
|
|
||
|
rpctypes "github.com/cerc-io/laconicd/rpc/types"
|
||
|
"github.com/cerc-io/laconicd/server/config"
|
||
|
ethermint "github.com/cerc-io/laconicd/types"
|
||
|
evmtypes "github.com/cerc-io/laconicd/x/evm/types"
|
||
|
"github.com/cosmos/cosmos-sdk/client"
|
||
|
"github.com/cosmos/cosmos-sdk/crypto/keyring"
|
||
|
"github.com/cosmos/cosmos-sdk/server"
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
"github.com/ethereum/go-ethereum/common"
|
||
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
||
|
ethtypes "github.com/ethereum/go-ethereum/core/types"
|
||
|
"github.com/ethereum/go-ethereum/params"
|
||
|
"github.com/ethereum/go-ethereum/rpc"
|
||
|
"github.com/ethereum/go-ethereum/signer/core/apitypes"
|
||
|
"github.com/tendermint/tendermint/libs/log"
|
||
|
tmrpctypes "github.com/tendermint/tendermint/rpc/core/types"
|
||
|
)
|
||
|
|
||
|
// BackendI implements the Cosmos and EVM backend.
|
||
|
type BackendI interface { //nolint: revive
|
||
|
CosmosBackend
|
||
|
EVMBackend
|
||
|
}
|
||
|
|
||
|
// CosmosBackend implements the functionality shared within cosmos namespaces
|
||
|
// as defined by Wallet Connect V2: https://docs.walletconnect.com/2.0/json-rpc/cosmos.
|
||
|
// Implemented by Backend.
|
||
|
type CosmosBackend interface { // TODO: define
|
||
|
// GetAccounts()
|
||
|
// SignDirect()
|
||
|
// SignAmino()
|
||
|
}
|
||
|
|
||
|
// EVMBackend implements the functionality shared within ethereum namespaces
|
||
|
// as defined by EIP-1474: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1474.md
|
||
|
// Implemented by Backend.
|
||
|
type EVMBackend interface {
|
||
|
// Node specific queries
|
||
|
Accounts() ([]common.Address, error)
|
||
|
Syncing() (interface{}, error)
|
||
|
SetEtherbase(etherbase common.Address) bool
|
||
|
SetGasPrice(gasPrice hexutil.Big) bool
|
||
|
ImportRawKey(privkey, password string) (common.Address, error)
|
||
|
ListAccounts() ([]common.Address, error)
|
||
|
NewMnemonic(uid string, language keyring.Language, hdPath, bip39Passphrase string, algo keyring.SignatureAlgo) (*keyring.Record, error)
|
||
|
UnprotectedAllowed() bool
|
||
|
RPCGasCap() uint64 // global gas cap for eth_call over rpc: DoS protection
|
||
|
RPCEVMTimeout() time.Duration // global timeout for eth_call over rpc: DoS protection
|
||
|
RPCTxFeeCap() float64 // RPCTxFeeCap is the global transaction fee(price * gaslimit) cap for send-transaction variants. The unit is ether.
|
||
|
RPCMinGasPrice() int64
|
||
|
|
||
|
// Sign Tx
|
||
|
Sign(address common.Address, data hexutil.Bytes) (hexutil.Bytes, error)
|
||
|
SendTransaction(args evmtypes.TransactionArgs) (common.Hash, error)
|
||
|
SignTypedData(address common.Address, typedData apitypes.TypedData) (hexutil.Bytes, error)
|
||
|
|
||
|
// Blocks Info
|
||
|
BlockNumber() (hexutil.Uint64, error)
|
||
|
GetBlockByNumber(blockNum rpctypes.BlockNumber, fullTx bool) (map[string]interface{}, error)
|
||
|
GetBlockByHash(hash common.Hash, fullTx bool) (map[string]interface{}, error)
|
||
|
GetBlockTransactionCountByHash(hash common.Hash) *hexutil.Uint
|
||
|
GetBlockTransactionCountByNumber(blockNum rpctypes.BlockNumber) *hexutil.Uint
|
||
|
TendermintBlockByNumber(blockNum rpctypes.BlockNumber) (*tmrpctypes.ResultBlock, error)
|
||
|
TendermintBlockResultByNumber(height *int64) (*tmrpctypes.ResultBlockResults, error)
|
||
|
TendermintBlockByHash(blockHash common.Hash) (*tmrpctypes.ResultBlock, error)
|
||
|
BlockNumberFromTendermint(blockNrOrHash rpctypes.BlockNumberOrHash) (rpctypes.BlockNumber, error)
|
||
|
BlockNumberFromTendermintByHash(blockHash common.Hash) (*big.Int, error)
|
||
|
EthMsgsFromTendermintBlock(block *tmrpctypes.ResultBlock, blockRes *tmrpctypes.ResultBlockResults) []*evmtypes.MsgEthereumTx
|
||
|
BlockBloom(blockRes *tmrpctypes.ResultBlockResults) (ethtypes.Bloom, error)
|
||
|
HeaderByNumber(blockNum rpctypes.BlockNumber) (*ethtypes.Header, error)
|
||
|
HeaderByHash(blockHash common.Hash) (*ethtypes.Header, error)
|
||
|
RPCBlockFromTendermintBlock(resBlock *tmrpctypes.ResultBlock, blockRes *tmrpctypes.ResultBlockResults, fullTx bool) (map[string]interface{}, error)
|
||
|
EthBlockByNumber(blockNum rpctypes.BlockNumber) (*ethtypes.Block, error)
|
||
|
EthBlockFromTendermintBlock(resBlock *tmrpctypes.ResultBlock, blockRes *tmrpctypes.ResultBlockResults) (*ethtypes.Block, error)
|
||
|
|
||
|
// Account Info
|
||
|
GetCode(address common.Address, blockNrOrHash rpctypes.BlockNumberOrHash) (hexutil.Bytes, error)
|
||
|
GetBalance(address common.Address, blockNrOrHash rpctypes.BlockNumberOrHash) (*hexutil.Big, error)
|
||
|
GetStorageAt(address common.Address, key string, blockNrOrHash rpctypes.BlockNumberOrHash) (hexutil.Bytes, error)
|
||
|
GetProof(address common.Address, storageKeys []string, blockNrOrHash rpctypes.BlockNumberOrHash) (*rpctypes.AccountResult, error)
|
||
|
GetTransactionCount(address common.Address, blockNum rpctypes.BlockNumber) (*hexutil.Uint64, error)
|
||
|
|
||
|
// Chain Info
|
||
|
ChainID() (*hexutil.Big, error)
|
||
|
ChainConfig() *params.ChainConfig
|
||
|
GlobalMinGasPrice() (sdk.Dec, error)
|
||
|
BaseFee(blockRes *tmrpctypes.ResultBlockResults) (*big.Int, error)
|
||
|
CurrentHeader() *ethtypes.Header
|
||
|
PendingTransactions() ([]*sdk.Tx, error)
|
||
|
GetCoinbase() (sdk.AccAddress, error)
|
||
|
FeeHistory(blockCount rpc.DecimalOrHex, lastBlock rpc.BlockNumber, rewardPercentiles []float64) (*rpctypes.FeeHistoryResult, error)
|
||
|
SuggestGasTipCap(baseFee *big.Int) (*big.Int, error)
|
||
|
|
||
|
// Tx Info
|
||
|
GetTransactionByHash(txHash common.Hash) (*rpctypes.RPCTransaction, error)
|
||
|
GetTxByEthHash(txHash common.Hash) (*ethermint.TxResult, error)
|
||
|
GetTxByTxIndex(height int64, txIndex uint) (*ethermint.TxResult, error)
|
||
|
GetTransactionByBlockAndIndex(block *tmrpctypes.ResultBlock, idx hexutil.Uint) (*rpctypes.RPCTransaction, error)
|
||
|
GetTransactionReceipt(hash common.Hash) (map[string]interface{}, error)
|
||
|
GetTransactionByBlockHashAndIndex(hash common.Hash, idx hexutil.Uint) (*rpctypes.RPCTransaction, error)
|
||
|
GetTransactionByBlockNumberAndIndex(blockNum rpctypes.BlockNumber, idx hexutil.Uint) (*rpctypes.RPCTransaction, error)
|
||
|
|
||
|
// Send Transaction
|
||
|
Resend(args evmtypes.TransactionArgs, gasPrice *hexutil.Big, gasLimit *hexutil.Uint64) (common.Hash, error)
|
||
|
SendRawTransaction(data hexutil.Bytes) (common.Hash, error)
|
||
|
SetTxDefaults(args evmtypes.TransactionArgs) (evmtypes.TransactionArgs, error)
|
||
|
EstimateGas(args evmtypes.TransactionArgs, blockNrOptional *rpctypes.BlockNumber) (hexutil.Uint64, error)
|
||
|
DoCall(args evmtypes.TransactionArgs, blockNr rpctypes.BlockNumber) (*evmtypes.MsgEthereumTxResponse, error)
|
||
|
GasPrice() (*hexutil.Big, error)
|
||
|
|
||
|
// Filter API
|
||
|
GetLogs(hash common.Hash) ([][]*ethtypes.Log, error)
|
||
|
GetLogsByHeight(height *int64) ([][]*ethtypes.Log, error)
|
||
|
BloomStatus() (uint64, uint64)
|
||
|
|
||
|
// Tracing
|
||
|
TraceTransaction(hash common.Hash, config *evmtypes.TraceConfig) (interface{}, error)
|
||
|
TraceBlock(height rpctypes.BlockNumber, config *evmtypes.TraceConfig, block *tmrpctypes.ResultBlock) ([]*evmtypes.TxTraceResult, error)
|
||
|
}
|
||
|
|
||
|
var _ BackendI = (*Backend)(nil)
|
||
|
|
||
|
var bAttributeKeyEthereumBloom = []byte(evmtypes.AttributeKeyEthereumBloom)
|
||
|
|
||
|
// Backend implements the BackendI interface
|
||
|
type Backend struct {
|
||
|
ctx context.Context
|
||
|
clientCtx client.Context
|
||
|
queryClient *rpctypes.QueryClient // gRPC query client
|
||
|
logger log.Logger
|
||
|
chainID *big.Int
|
||
|
cfg config.Config
|
||
|
allowUnprotectedTxs bool
|
||
|
indexer ethermint.EVMTxIndexer
|
||
|
}
|
||
|
|
||
|
// NewBackend creates a new Backend instance for cosmos and ethereum namespaces
|
||
|
func NewBackend(
|
||
|
ctx *server.Context,
|
||
|
logger log.Logger,
|
||
|
clientCtx client.Context,
|
||
|
allowUnprotectedTxs bool,
|
||
|
indexer ethermint.EVMTxIndexer,
|
||
|
) *Backend {
|
||
|
chainID, err := ethermint.ParseChainID(clientCtx.ChainID)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
appConf, err := config.GetConfig(ctx.Viper)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
return &Backend{
|
||
|
ctx: context.Background(),
|
||
|
clientCtx: clientCtx,
|
||
|
queryClient: rpctypes.NewQueryClient(clientCtx),
|
||
|
logger: logger.With("module", "backend"),
|
||
|
chainID: chainID,
|
||
|
cfg: appConf,
|
||
|
allowUnprotectedTxs: allowUnprotectedTxs,
|
||
|
indexer: indexer,
|
||
|
}
|
||
|
}
|