aboutsummaryrefslogblamecommitdiffstats
path: root/rpc/api/api.go
blob: d2c548ed1372b1434d00198075c43fd5c79b54e3 (plain) (tree)
1
2
3
4
5
6
7
8
9

           




                                                    
 
       









                                    
                                                                                  






                                               

 

                             


                         





                                                                         




                                                
package api

import (
    "strings"

    "github.com/ethereum/go-ethereum/rpc/shared"
)

const (
    EthApiName      = "eth"
    DebugApiName    = "debug"
    MergedApiName   = "merged"
    MinerApiName    = "miner"
    NetApiName      = "net"
    PersonalApiName = "personal"
    Web3ApiName     = "web3"
)

var (
    // List with all API's which are offered over the IPC interface by default
    DefaultIpcApis = strings.Join([]string{
        EthApiName,
        DebugApiName,
        MinerApiName,
        NetApiName,
        PersonalApiName,
    }, ",")
)

// Ethereum RPC API interface
type EthereumApi interface {
    // API identifier
    Name() string

    // 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
}

// Merge multiple API's to a single API instance
func Merge(apis ...EthereumApi) EthereumApi {
    return newMergedApi(apis...)
}