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.

22 lines
1.1 KiB

  1. package core
  2. import (
  3. "github.com/tendermint/tendermint/rpc"
  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. "get_block": rpc.NewRPCFunc(GetBlock, []string{"height"}),
  10. "get_account": rpc.NewRPCFunc(GetAccount, []string{"address"}),
  11. "get_storage": rpc.NewRPCFunc(GetStorage, []string{"address", "key"}),
  12. "call": rpc.NewRPCFunc(Call, []string{"address", "data"}),
  13. "call_code": rpc.NewRPCFunc(CallCode, []string{"code", "data"}),
  14. "list_validators": rpc.NewRPCFunc(ListValidators, []string{}),
  15. "dump_storage": rpc.NewRPCFunc(DumpStorage, []string{"address"}),
  16. "broadcast_tx": rpc.NewRPCFunc(BroadcastTx, []string{"tx"}),
  17. "list_accounts": rpc.NewRPCFunc(ListAccounts, []string{}),
  18. "unsafe/gen_priv_account": rpc.NewRPCFunc(GenPrivAccount, []string{}),
  19. "unsafe/sign_tx": rpc.NewRPCFunc(SignTx, []string{"tx", "privAccounts"}),
  20. }