mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-11 05:00:05 +00:00
13 lines
314 B
Go
13 lines
314 B
Go
package api
|
|
|
|
import "github.com/ethereum/go-ethereum/rpc/shared"
|
|
|
|
// Ethereum RPC API interface
|
|
type EthereumApi interface {
|
|
// Execute the given request and returns the response or an error
|
|
Execute(*shared.Request) (interface{}, error)
|
|
|
|
// List of supported RCP methods this API provides
|
|
Methods() []string
|
|
}
|