mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
* implement broadcast_duplicate_vote endpoint * fix test_cover * address comments * address comments * Update abci/example/kvstore/persistent_kvstore.go Co-Authored-By: mossid <torecursedivine@gmail.com> * Update rpc/client/main_test.go Co-Authored-By: mossid <torecursedivine@gmail.com> * address comments in progress * reformat the code * make linter happy * make tests pass * replace BroadcastDuplicateVote with BroadcastEvidence * fix test * fix endpoint name * improve doc * fix TestBroadcastEvidenceDuplicateVote * Update rpc/core/evidence.go Co-Authored-By: Thane Thomson <connect@thanethomson.com> * add changelog entry * fix TestBroadcastEvidenceDuplicateVote
57 lines
2.4 KiB
Go
57 lines
2.4 KiB
Go
package core
|
|
|
|
import (
|
|
rpc "github.com/tendermint/tendermint/rpc/lib/server"
|
|
)
|
|
|
|
// TODO: better system than "unsafe" prefix
|
|
// NOTE: Amino is registered in rpc/core/types/wire.go.
|
|
var Routes = map[string]*rpc.RPCFunc{
|
|
// subscribe/unsubscribe are reserved for websocket events.
|
|
"subscribe": rpc.NewWSRPCFunc(Subscribe, "query"),
|
|
"unsubscribe": rpc.NewWSRPCFunc(Unsubscribe, "query"),
|
|
"unsubscribe_all": rpc.NewWSRPCFunc(UnsubscribeAll, ""),
|
|
|
|
// info API
|
|
"health": rpc.NewRPCFunc(Health, ""),
|
|
"status": rpc.NewRPCFunc(Status, ""),
|
|
"net_info": rpc.NewRPCFunc(NetInfo, ""),
|
|
"blockchain": rpc.NewRPCFunc(BlockchainInfo, "minHeight,maxHeight"),
|
|
"genesis": rpc.NewRPCFunc(Genesis, ""),
|
|
"block": rpc.NewRPCFunc(Block, "height"),
|
|
"block_results": rpc.NewRPCFunc(BlockResults, "height"),
|
|
"commit": rpc.NewRPCFunc(Commit, "height"),
|
|
"tx": rpc.NewRPCFunc(Tx, "hash,prove"),
|
|
"tx_search": rpc.NewRPCFunc(TxSearch, "query,prove,page,per_page"),
|
|
"validators": rpc.NewRPCFunc(Validators, "height"),
|
|
"dump_consensus_state": rpc.NewRPCFunc(DumpConsensusState, ""),
|
|
"consensus_state": rpc.NewRPCFunc(ConsensusState, ""),
|
|
"consensus_params": rpc.NewRPCFunc(ConsensusParams, "height"),
|
|
"unconfirmed_txs": rpc.NewRPCFunc(UnconfirmedTxs, "limit"),
|
|
"num_unconfirmed_txs": rpc.NewRPCFunc(NumUnconfirmedTxs, ""),
|
|
|
|
// tx broadcast API
|
|
"broadcast_tx_commit": rpc.NewRPCFunc(BroadcastTxCommit, "tx"),
|
|
"broadcast_tx_sync": rpc.NewRPCFunc(BroadcastTxSync, "tx"),
|
|
"broadcast_tx_async": rpc.NewRPCFunc(BroadcastTxAsync, "tx"),
|
|
|
|
// abci API
|
|
"abci_query": rpc.NewRPCFunc(ABCIQuery, "path,data,height,prove"),
|
|
"abci_info": rpc.NewRPCFunc(ABCIInfo, ""),
|
|
|
|
// evidence API
|
|
"broadcast_evidence": rpc.NewRPCFunc(BroadcastEvidence, "evidence"),
|
|
}
|
|
|
|
func AddUnsafeRoutes() {
|
|
// control API
|
|
Routes["dial_seeds"] = rpc.NewRPCFunc(UnsafeDialSeeds, "seeds")
|
|
Routes["dial_peers"] = rpc.NewRPCFunc(UnsafeDialPeers, "peers,persistent")
|
|
Routes["unsafe_flush_mempool"] = rpc.NewRPCFunc(UnsafeFlushMempool, "")
|
|
|
|
// profiler API
|
|
Routes["unsafe_start_cpu_profiler"] = rpc.NewRPCFunc(UnsafeStartCPUProfiler, "filename")
|
|
Routes["unsafe_stop_cpu_profiler"] = rpc.NewRPCFunc(UnsafeStopCPUProfiler, "")
|
|
Routes["unsafe_write_heap_profile"] = rpc.NewRPCFunc(UnsafeWriteHeapProfile, "filename")
|
|
}
|