You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
883 B

  1. package core
  2. import (
  3. rpc "github.com/tendermint/tendermint/rpc/server"
  4. )
  5. // TODO: eliminate redundancy between here and reading code from core/
  6. var Routes = map[string]*rpc.RPCFunc{
  7. "status": rpc.NewRPCFunc(Status, []string{}),
  8. "net_info": rpc.NewRPCFunc(NetInfo, []string{}),
  9. "blockchain": rpc.NewRPCFunc(BlockchainInfo, []string{"minHeight", "maxHeight"}),
  10. "genesis": rpc.NewRPCFunc(Genesis, []string{}),
  11. "get_block": rpc.NewRPCFunc(GetBlock, []string{"height"}),
  12. "list_validators": rpc.NewRPCFunc(ListValidators, []string{}),
  13. "dump_consensus_state": rpc.NewRPCFunc(DumpConsensusState, []string{}),
  14. "broadcast_tx": rpc.NewRPCFunc(BroadcastTx, []string{"tx"}),
  15. "list_unconfirmed_txs": rpc.NewRPCFunc(ListUnconfirmedTxs, []string{}),
  16. // subscribe/unsubscribe are reserved for websocket events.
  17. }