forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
314 B
13 lines
314 B
10 years ago
|
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
|
||
|
}
|