-
Notifications
You must be signed in to change notification settings - Fork 52
/
rpc_server.go
68 lines (58 loc) · 2.51 KB
/
rpc_server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* Copyright (C) 2021 The poly network Authors
* This file is part of The poly network library.
*
* The poly network is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The poly network is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the poly network. If not, see <http://www.gnu.org/licenses/>.
*/
// Package jsonrpc privides a function to start json rpc server
package jsonrpc
import (
"net/http"
"strconv"
"fmt"
cfg "github.com/polynetwork/poly/common/config"
"github.com/polynetwork/poly/common/log"
"github.com/polynetwork/poly/http/base/rpc"
)
func StartRPCServer() error {
log.Debug()
http.HandleFunc("/", rpc.Handle)
rpc.HandleFunc("getbestblockhash", rpc.GetBestBlockHash)
rpc.HandleFunc("getblock", rpc.GetBlock)
rpc.HandleFunc("getblockcount", rpc.GetBlockCount)
rpc.HandleFunc("getblockhash", rpc.GetBlockHash)
rpc.HandleFunc("getlatestblockmsgssnap", rpc.GetLatestBlockMsgsSnap)
rpc.HandleFunc("getcrossstateroot", rpc.GetCrossStateRoot)
rpc.HandleFunc("getconnectioncount", rpc.GetConnectionCount)
//HandleFunc("getrawmempool", GetRawMemPool)
rpc.HandleFunc("getrawtransaction", rpc.GetRawTransaction)
rpc.HandleFunc("sendrawtransaction", rpc.SendRawTransaction)
rpc.HandleFunc("getstorage", rpc.GetStorage)
rpc.HandleFunc("getversion", rpc.GetNodeVersion)
rpc.HandleFunc("getnetworkid", rpc.GetNetworkId)
rpc.HandleFunc("getmempooltxcount", rpc.GetMemPoolTxCount)
rpc.HandleFunc("getmempooltxstate", rpc.GetMemPoolTxState)
rpc.HandleFunc("getsmartcodeevent", rpc.GetSmartCodeEvent)
rpc.HandleFunc("getblockheightbytxhash", rpc.GetBlockHeightByTxHash)
rpc.HandleFunc("getmerkleproof", rpc.GetMerkleProof)
rpc.HandleFunc("getcrossstatesproof", rpc.GetCrossStatesProof)
rpc.HandleFunc("getheaderbyheight", rpc.GetHeaderByHeight)
rpc.HandleFunc("getblocktxsbyheight", rpc.GetBlockTxsByHeight)
rpc.HandleFunc("getstatemerkleroot", rpc.GetStateMerkleRoot)
err := http.ListenAndServe(":"+strconv.Itoa(int(cfg.DefConfig.Rpc.HttpJsonPort)), nil)
if err != nil {
return fmt.Errorf("ListenAndServe error:%s", err)
}
return nil
}