mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 13:40:05 +00:00
763563ec77
* save * save * save * save * save * save
136 lines
3.6 KiB
Go
136 lines
3.6 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon-lib/gointerfaces/starknet"
|
|
"github.com/ledgerwatch/erigon-lib/gointerfaces/txpool"
|
|
"github.com/ledgerwatch/erigon-lib/kv"
|
|
"github.com/ledgerwatch/erigon-lib/kv/kvcache"
|
|
"github.com/ledgerwatch/erigon/cmd/rpcdaemon/cli/httpcfg"
|
|
"github.com/ledgerwatch/erigon/cmd/rpcdaemon/filters"
|
|
"github.com/ledgerwatch/erigon/cmd/rpcdaemon/interfaces"
|
|
"github.com/ledgerwatch/erigon/cmd/rpcdaemon/services"
|
|
"github.com/ledgerwatch/erigon/rpc"
|
|
)
|
|
|
|
// APIList describes the list of available RPC apis
|
|
func APIList(db kv.RoDB, borDb kv.RoDB, eth services.ApiBackend, txPool txpool.TxpoolClient, mining txpool.MiningClient,
|
|
starknet starknet.CAIROVMClient, filters *filters.Filters, stateCache kvcache.Cache,
|
|
blockReader interfaces.BlockAndTxnReader, cfg httpcfg.HttpCfg) (list []rpc.API) {
|
|
|
|
base := NewBaseApi(filters, stateCache, blockReader, cfg.WithDatadir)
|
|
if cfg.TevmEnabled {
|
|
base.EnableTevmExperiment()
|
|
}
|
|
ethImpl := NewEthAPI(base, db, eth, txPool, mining, cfg.Gascap)
|
|
erigonImpl := NewErigonAPI(base, db, eth)
|
|
starknetImpl := NewStarknetAPI(base, db, starknet, txPool)
|
|
txpoolImpl := NewTxPoolAPI(base, db, txPool)
|
|
netImpl := NewNetAPIImpl(eth)
|
|
debugImpl := NewPrivateDebugAPI(base, db, cfg.Gascap)
|
|
traceImpl := NewTraceAPI(base, db, &cfg)
|
|
web3Impl := NewWeb3APIImpl(eth)
|
|
dbImpl := NewDBAPIImpl() /* deprecated */
|
|
engineImpl := NewEngineAPI(base, db, eth)
|
|
adminImpl := NewAdminAPI(eth)
|
|
parityImpl := NewParityAPIImpl(db)
|
|
borImpl := NewBorAPI(base, db, borDb) // bor (consensus) specific
|
|
|
|
for _, enabledAPI := range cfg.API {
|
|
switch enabledAPI {
|
|
case "eth":
|
|
list = append(list, rpc.API{
|
|
Namespace: "eth",
|
|
Public: true,
|
|
Service: EthAPI(ethImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "debug":
|
|
list = append(list, rpc.API{
|
|
Namespace: "debug",
|
|
Public: true,
|
|
Service: PrivateDebugAPI(debugImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "net":
|
|
list = append(list, rpc.API{
|
|
Namespace: "net",
|
|
Public: true,
|
|
Service: NetAPI(netImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "txpool":
|
|
list = append(list, rpc.API{
|
|
Namespace: "txpool",
|
|
Public: true,
|
|
Service: TxPoolAPI(txpoolImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "web3":
|
|
list = append(list, rpc.API{
|
|
Namespace: "web3",
|
|
Public: true,
|
|
Service: Web3API(web3Impl),
|
|
Version: "1.0",
|
|
})
|
|
case "trace":
|
|
list = append(list, rpc.API{
|
|
Namespace: "trace",
|
|
Public: true,
|
|
Service: TraceAPI(traceImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "db": /* Deprecated */
|
|
list = append(list, rpc.API{
|
|
Namespace: "db",
|
|
Public: true,
|
|
Service: DBAPI(dbImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "erigon":
|
|
list = append(list, rpc.API{
|
|
Namespace: "erigon",
|
|
Public: true,
|
|
Service: ErigonAPI(erigonImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "starknet":
|
|
list = append(list, rpc.API{
|
|
Namespace: "starknet",
|
|
Public: true,
|
|
Service: StarknetAPI(starknetImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "engine":
|
|
list = append(list, rpc.API{
|
|
Namespace: "engine",
|
|
Public: true,
|
|
Service: EngineAPI(engineImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "bor":
|
|
list = append(list, rpc.API{
|
|
Namespace: "bor",
|
|
Public: true,
|
|
Service: BorAPI(borImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "admin":
|
|
list = append(list, rpc.API{
|
|
Namespace: "admin",
|
|
Public: false,
|
|
Service: AdminAPI(adminImpl),
|
|
Version: "1.0",
|
|
})
|
|
case "parity":
|
|
list = append(list, rpc.API{
|
|
Namespace: "parity",
|
|
Public: false,
|
|
Service: ParityAPI(parityImpl),
|
|
Version: "1.0",
|
|
})
|
|
}
|
|
}
|
|
|
|
return list
|
|
}
|