2015-06-08 08:23:54 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import "github.com/ethereum/go-ethereum/rpc/shared"
|
|
|
|
|
2015-06-08 09:01:02 +00:00
|
|
|
const (
|
|
|
|
// List with all API's which are offered over the IPC interface by default
|
|
|
|
DefaultIpcApis = "eth"
|
|
|
|
)
|
|
|
|
|
2015-06-08 08:23:54 +00:00
|
|
|
// 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
|
|
|
|
}
|