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.

27 lines
1.5 KiB

9 years ago
  1. package core
  2. import (
  3. rpc "github.com/tendermint/tendermint/rpc/server"
  4. )
  5. var Routes = map[string]*rpc.RPCFunc{
  6. "status": rpc.NewRPCFunc(Status, []string{}),
  7. "net_info": rpc.NewRPCFunc(NetInfo, []string{}),
  8. "blockchain": rpc.NewRPCFunc(BlockchainInfo, []string{"minHeight", "maxHeight"}),
  9. "genesis": rpc.NewRPCFunc(Genesis, []string{}),
  10. "get_block": rpc.NewRPCFunc(GetBlock, []string{"height"}),
  11. "get_account": rpc.NewRPCFunc(GetAccount, []string{"address"}),
  12. "get_storage": rpc.NewRPCFunc(GetStorage, []string{"address", "key"}),
  13. "call": rpc.NewRPCFunc(Call, []string{"address", "data"}),
  14. "call_code": rpc.NewRPCFunc(CallCode, []string{"code", "data"}),
  15. "list_validators": rpc.NewRPCFunc(ListValidators, []string{}),
  16. "dump_consensus_state": rpc.NewRPCFunc(DumpConsensusState, []string{}),
  17. "dump_storage": rpc.NewRPCFunc(DumpStorage, []string{"address"}),
  18. "broadcast_tx": rpc.NewRPCFunc(BroadcastTx, []string{"tx"}),
  19. "list_unconfirmed_txs": rpc.NewRPCFunc(ListUnconfirmedTxs, []string{}),
  20. "list_accounts": rpc.NewRPCFunc(ListAccounts, []string{}),
  21. "get_name": rpc.NewRPCFunc(GetName, []string{"name"}),
  22. "list_names": rpc.NewRPCFunc(ListNames, []string{}),
  23. "unsafe/gen_priv_account": rpc.NewRPCFunc(GenPrivAccount, []string{}),
  24. "unsafe/sign_tx": rpc.NewRPCFunc(SignTx, []string{"tx", "privAccounts"}),
  25. }