go-ethereum/rpc/api/api.go

33 lines
756 B
Go
Raw Normal View History

2015-06-08 11:23:54 +03:00
package api
import "github.com/ethereum/go-ethereum/rpc/shared"
2015-06-08 12:01:02 +03:00
const (
// List with all API's which are offered over the IPC interface by default
2015-06-09 10:48:18 +03:00
DefaultIpcApis = "debug,eth,miner,net,web3"
2015-06-08 13:43:58 +03:00
2015-06-08 15:50:11 +03:00
EthApiName = "eth"
2015-06-09 10:48:18 +03:00
DebugApiName = "debug"
2015-06-08 13:43:58 +03:00
MergedApiName = "merged"
2015-06-08 15:50:11 +03:00
MinerApiName = "miner"
NetApiName = "net"
Web3ApiName = "web3"
2015-06-08 12:01:02 +03:00
)
2015-06-08 11:23:54 +03:00
// Ethereum RPC API interface
type EthereumApi interface {
2015-06-08 13:43:58 +03:00
// API identifier
Name() string
2015-06-08 11:23:54 +03: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 13:43:58 +03:00
// Merge multiple API's to a single API instance
func Merge(apis ...EthereumApi) EthereumApi {
return newMergedApi(apis...)
}