laconicd-deprecated/rpc/namespaces/net/api.go

33 lines
723 B
Go
Raw Normal View History

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