-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrepresentative.go
93 lines (81 loc) · 2.92 KB
/
representative.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package qlcchain
import (
"math/big"
"github.com/qlcchain/qlc-go-sdk/pkg/types"
)
type RepApi struct {
client *QLCClient
}
type RepRewardParam struct {
Account types.Address `json:"account"`
Beneficial types.Address `json:"beneficial"`
StartHeight uint64 `json:"startHeight"`
EndHeight uint64 `json:"endHeight"`
RewardBlocks uint64 `json:"rewardBlocks"`
RewardAmount *big.Int `json:"rewardAmount"`
}
type RepAvailRewardInfo struct {
LastEndHeight uint64 `json:"lastEndHeight"`
LatestBlockHeight uint64 `json:"latestBlockHeight"`
NodeRewardHeight uint64 `json:"nodeRewardHeight"`
AvailStartHeight uint64 `json:"availStartHeight"`
AvailEndHeight uint64 `json:"availEndHeight"`
AvailRewardBlocks uint64 `json:"availRewardBlocks"`
AvailRewardAmount types.Balance `json:"availRewardAmount"`
NeedCallReward bool `json:"needCallReward"`
}
type RepHistoryRewardInfo struct {
LastEndHeight uint64 `json:"lastEndHeight"`
RewardBlocks uint64 `json:"rewardBlocks"`
RewardAmount types.Balance `json:"rewardAmount"`
LastRewardTime int64 `json:"lastRewardTime"`
}
// NewRepAPI creates representative module for client
func NewRepAPI(c *QLCClient) *RepApi {
return &RepApi{client: c}
}
// GetAvailRewardInfo returns representative available reward info
func (r *RepApi) GetAvailRewardInfo(account types.Address) (*RepAvailRewardInfo, error) {
var rspData RepAvailRewardInfo
err := r.client.getClient().Call(&rspData, "rep_getAvailRewardInfo", account)
if err != nil {
return nil, err
}
return &rspData, nil
}
// GetRewardSendBlock returns representative contract send block
func (r *RepApi) GetRewardSendBlock(param *RepRewardParam) (*types.StateBlock, error) {
var rspData types.StateBlock
err := r.client.getClient().Call(&rspData, "rep_getRewardSendBlock", param)
if err != nil {
return nil, err
}
return &rspData, nil
}
// GetRewardSendBlock returns representative contract reward block
func (r *RepApi) GetRewardRecvBlock(input *types.StateBlock) (*types.StateBlock, error) {
var rspData types.StateBlock
err := r.client.getClient().Call(&rspData, "rep_getRewardRecvBlock", input)
if err != nil {
return nil, err
}
return &rspData, nil
}
// GetRewardRecvBlockBySendHash returns representative contract reward block
func (r *RepApi) GetRewardRecvBlockBySendHash(sendHash types.Hash) (*types.StateBlock, error) {
var rspData types.StateBlock
err := r.client.getClient().Call(&rspData, "rep_getRewardRecvBlockBySendHash", sendHash)
if err != nil {
return nil, err
}
return &rspData, nil
}
// GetRewardHistory returns representative history reward info
func (r *RepApi) GetRewardHistory(account types.Address) (*RepHistoryRewardInfo, error) {
var rspData RepHistoryRewardInfo
err := r.client.getClient().Call(&rspData, "rep_getRewardHistory", account)
if err != nil {
return nil, err
}
return &rspData, nil
}