plugeth/rpc/api/api.go

32 lines
725 B
Go
Raw Normal View History

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
2015-06-08 12:50:11 +00:00
DefaultIpcApis = "eth,miner,net,web3"
2015-06-08 10:43:58 +00:00
2015-06-08 12:50:11 +00:00
EthApiName = "eth"
2015-06-08 10:43:58 +00:00
MergedApiName = "merged"
2015-06-08 12:50:11 +00:00
MinerApiName = "miner"
NetApiName = "net"
Web3ApiName = "web3"
2015-06-08 09:01:02 +00:00
)
2015-06-08 08:23:54 +00:00
// Ethereum RPC API interface
type EthereumApi interface {
2015-06-08 10:43:58 +00:00
// API identifier
Name() string
2015-06-08 08:23:54 +00:00
// 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
}
2015-06-08 10:43:58 +00:00
// Merge multiple API's to a single API instance
func Merge(apis ...EthereumApi) EthereumApi {
return newMergedApi(apis...)
}