2023-07-08 17:01:26 +00:00
|
|
|
package jsonrpc
|
2020-09-11 13:12:38 +00:00
|
|
|
|
|
|
|
import (
|
2020-09-15 16:44:28 +00:00
|
|
|
"context"
|
|
|
|
|
2023-04-13 11:19:02 +00:00
|
|
|
"github.com/ledgerwatch/erigon-lib/common/hexutility"
|
|
|
|
|
2021-05-20 18:25:53 +00:00
|
|
|
"github.com/ledgerwatch/erigon/crypto"
|
2022-06-10 15:18:43 +00:00
|
|
|
"github.com/ledgerwatch/erigon/turbo/rpchelper"
|
2020-09-11 13:12:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Web3API provides interfaces for the web3_ RPC commands
|
|
|
|
type Web3API interface {
|
2020-09-15 16:44:28 +00:00
|
|
|
ClientVersion(_ context.Context) (string, error)
|
2023-04-13 11:19:02 +00:00
|
|
|
Sha3(_ context.Context, input hexutility.Bytes) hexutility.Bytes
|
2020-09-11 13:12:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Web3APIImpl struct {
|
2021-01-02 19:28:22 +00:00
|
|
|
*BaseAPI
|
2022-06-10 15:18:43 +00:00
|
|
|
ethBackend rpchelper.ApiBackend
|
2020-09-11 13:12:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewWeb3APIImpl returns Web3APIImpl instance
|
2022-06-10 15:18:43 +00:00
|
|
|
func NewWeb3APIImpl(ethBackend rpchelper.ApiBackend) *Web3APIImpl {
|
2021-01-02 19:28:22 +00:00
|
|
|
return &Web3APIImpl{
|
2021-04-24 15:46:29 +00:00
|
|
|
BaseAPI: &BaseAPI{},
|
|
|
|
ethBackend: ethBackend,
|
2021-01-02 19:28:22 +00:00
|
|
|
}
|
2020-09-11 13:12:38 +00:00
|
|
|
}
|
|
|
|
|
2020-10-24 17:03:52 +00:00
|
|
|
// ClientVersion implements web3_clientVersion. Returns the current client version.
|
2021-04-24 15:46:29 +00:00
|
|
|
func (api *Web3APIImpl) ClientVersion(ctx context.Context) (string, error) {
|
|
|
|
return api.ethBackend.ClientVersion(ctx)
|
2020-09-11 13:12:38 +00:00
|
|
|
}
|
|
|
|
|
2020-10-24 17:03:52 +00:00
|
|
|
// Sha3 implements web3_sha3. Returns Keccak-256 (not the standardized SHA3-256) of the given data.
|
2023-04-13 11:19:02 +00:00
|
|
|
func (api *Web3APIImpl) Sha3(_ context.Context, input hexutility.Bytes) hexutility.Bytes {
|
2020-09-11 13:12:38 +00:00
|
|
|
return crypto.Keccak256(input)
|
|
|
|
}
|