laconicd/ethereum/rpc/namespaces/net/api.go

33 lines
717 B
Go
Raw Normal View History

package net
import (
"fmt"
ethermint "github.com/tharsis/ethermint/types"
2021-04-18 16:39:15 +00:00
"github.com/cosmos/cosmos-sdk/client"
)
// PublicAPI is the eth_ prefixed set of APIs in the Web3 JSON-RPC spec.
type PublicAPI struct {
networkVersion uint64
}
// NewPublicAPI creates an instance of the public Net Web3 API.
func NewPublicAPI(clientCtx client.Context) *PublicAPI {
// parse the chainID from a integer string
2021-04-19 07:30:55 +00:00
chainIDEpoch, err := ethermint.ParseChainID(clientCtx.ChainID)
if err != nil {
panic(err)
}
return &PublicAPI{
networkVersion: chainIDEpoch.Uint64(),
}
}
// Version returns the current ethereum protocol version.
func (s *PublicAPI) Version() string {
2021-04-18 16:39:15 +00:00
return fmt.Sprintf("%d", s.networkVersion)
}