mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 20:17:17 +00:00
3bec75cdc4
* initial * update rpc deamon readme * use read-only transactions
87 lines
2.2 KiB
Go
87 lines
2.2 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/ledgerwatch/turbo-geth/cmd/rpcdaemon/cli"
|
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
|
"github.com/ledgerwatch/turbo-geth/rpc"
|
|
)
|
|
|
|
// APIList describes the list of available RPC apis
|
|
func APIList(db ethdb.KV, eth ethdb.Backend, cfg cli.Flags, customAPIList []rpc.API) []rpc.API {
|
|
var defaultAPIList []rpc.API
|
|
|
|
dbReader := ethdb.NewObjectDatabase(db)
|
|
|
|
ethImpl := NewEthAPI(db, dbReader, eth, cfg.Gascap)
|
|
tgImpl := NewTgAPI(db, dbReader)
|
|
netImpl := NewNetAPIImpl(eth)
|
|
debugImpl := NewPrivateDebugAPI(db, dbReader)
|
|
traceImpl := NewTraceAPI(db, dbReader, &cfg)
|
|
web3Impl := NewWeb3APIImpl()
|
|
dbImpl := NewDBAPIImpl() /* deprecated */
|
|
shhImpl := NewSHHAPIImpl() /* deprecated */
|
|
|
|
for _, enabledAPI := range cfg.API {
|
|
switch enabledAPI {
|
|
case "eth":
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
Namespace: "eth",
|
|
Public: true,
|
|
Service: EthAPI(ethImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "debug":
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
Namespace: "debug",
|
|
Public: true,
|
|
Service: PrivateDebugAPI(debugImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "net":
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
Namespace: "net",
|
|
Public: true,
|
|
Service: NetAPI(netImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "web3":
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
Namespace: "web3",
|
|
Public: true,
|
|
Service: Web3API(web3Impl),
|
|
Version: "1.0",
|
|
})
|
|
case "trace":
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
Namespace: "trace",
|
|
Public: true,
|
|
Service: TraceAPI(traceImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "db":
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
Namespace: "db",
|
|
Public: true,
|
|
Service: DBAPI(dbImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "shh":
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
Namespace: "shh",
|
|
Public: true,
|
|
Service: SHHAPI(shhImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "tg":
|
|
defaultAPIList = append(defaultAPIList, rpc.API{
|
|
Namespace: "tg",
|
|
Public: true,
|
|
Service: TgAPI(tgImpl),
|
|
Version: "1.0",
|
|
})
|
|
}
|
|
}
|
|
|
|
return append(defaultAPIList, customAPIList...)
|
|
}
|