go-ethereum/rpc/api/api.go

32 lines
725 B
Go
Raw Normal View History

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