mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 13:40:05 +00:00
14c15cba43
* save * save * Squashed 'interfaces/' content from commit 08c32a09e git-subtree-dir: interfaces git-subtree-split: 08c32a09e40b1e6fcb5922e723191c9477545356 * Revert "Squashed 'interfaces/' content from commit 08c32a09e" This reverts commit 8393d9fd * save * seve * Squashed 'interfaces/' content from commit dd6a42724 git-subtree-dir: interfaces git-subtree-split: dd6a42724401f34c21662ca1aa1718effb92320d * ensure versions compatibility of all remote services * Revert "Squashed 'interfaces/' content from commit dd6a42724" This reverts commit 2a764bf9 * Squashed 'interfaces/' content from commit dd6a42724 git-subtree-dir: interfaces git-subtree-split: dd6a42724401f34c21662ca1aa1718effb92320d * Revert "Squashed 'interfaces/' content from commit dd6a42724" This reverts commit 52621846 * Squashed 'interfaces/' content from commit dd6a42724 git-subtree-dir: interfaces git-subtree-split: dd6a42724401f34c21662ca1aa1718effb92320d * a * a * a * a * a Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro.local>
39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/rpcdaemon/services"
|
|
"github.com/ledgerwatch/erigon/common/hexutil"
|
|
"github.com/ledgerwatch/erigon/crypto"
|
|
)
|
|
|
|
// Web3API provides interfaces for the web3_ RPC commands
|
|
type Web3API interface {
|
|
ClientVersion(_ context.Context) (string, error)
|
|
Sha3(_ context.Context, input hexutil.Bytes) hexutil.Bytes
|
|
}
|
|
|
|
type Web3APIImpl struct {
|
|
*BaseAPI
|
|
ethBackend services.ApiBackend
|
|
}
|
|
|
|
// NewWeb3APIImpl returns Web3APIImpl instance
|
|
func NewWeb3APIImpl(ethBackend services.ApiBackend) *Web3APIImpl {
|
|
return &Web3APIImpl{
|
|
BaseAPI: &BaseAPI{},
|
|
ethBackend: ethBackend,
|
|
}
|
|
}
|
|
|
|
// ClientVersion implements web3_clientVersion. Returns the current client version.
|
|
func (api *Web3APIImpl) ClientVersion(ctx context.Context) (string, error) {
|
|
return api.ethBackend.ClientVersion(ctx)
|
|
}
|
|
|
|
// Sha3 implements web3_sha3. Returns Keccak-256 (not the standardized SHA3-256) of the given data.
|
|
func (api *Web3APIImpl) Sha3(_ context.Context, input hexutil.Bytes) hexutil.Bytes {
|
|
return crypto.Keccak256(input)
|
|
}
|