mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 05:27:19 +00:00
2cc36dac87
* Cleanup and rpcdaemon unit tests * Fix * Fix * Fix lint * Test for debug_traceTransaction * Add NoRefunds option * Compile fix, test for no refunds * Fix compile * Add poly contract, fix compile errors * No refunds now work * Fix NPE in rpcdaemon Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
88 lines
2.2 KiB
Go
88 lines
2.2 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/ledgerwatch/turbo-geth/cmd/rpcdaemon/cli"
|
|
"github.com/ledgerwatch/turbo-geth/cmd/rpcdaemon/filters"
|
|
"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, filters *filters.Filters, cfg cli.Flags, customAPIList []rpc.API) []rpc.API {
|
|
var defaultAPIList []rpc.API
|
|
|
|
dbReader := ethdb.NewObjectDatabase(db)
|
|
|
|
ethImpl := NewEthAPI(db, dbReader, eth, cfg.Gascap, filters)
|
|
tgImpl := NewTgAPI(db, dbReader)
|
|
netImpl := NewNetAPIImpl(eth)
|
|
debugImpl := NewPrivateDebugAPI(dbReader)
|
|
traceImpl := NewTraceAPI(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...)
|
|
}
|