forked from DeathwingTheBoss/hivego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
broadcaster.go
81 lines (68 loc) · 1.83 KB
/
broadcaster.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
package hivego
import (
"encoding/hex"
)
type hiveTransaction struct {
RefBlockNum uint16 `json:"ref_block_num"`
RefBlockPrefix uint32 `json:"ref_block_prefix"`
Expiration string `json:"expiration"`
Operations []hiveOperation `json:"-"`
OperationsJs [][2]interface{} `json:"operations"`
Extensions []string `json:"extensions"`
Signatures []string `json:"signatures"`
}
func (t *hiveTransaction) generateTrxId() (string, error) {
tB, err := serializeTx(*t)
if err != nil {
return "", err
}
digest := hashTx(tB)
return hex.EncodeToString(digest)[0:40], nil
}
func (t *hiveTransaction) prepareJson() {
var opsContainer [][2]interface{}
for _, op := range t.Operations {
var opContainer [2]interface{}
opContainer[0] = op.opName()
opContainer[1] = op
opsContainer = append(opsContainer, opContainer)
}
if t.Extensions == nil {
t.Extensions = []string{}
}
t.OperationsJs = opsContainer
}
func (h *HiveRpcNode) broadcast(ops []hiveOperation, wif *string) (string, error) {
signingData, err := h.getSigningData()
if err != nil {
return "", err
}
tx := hiveTransaction{
RefBlockNum: signingData.refBlockNum,
RefBlockPrefix: signingData.refBlockPrefix,
Expiration: signingData.expiration,
Operations: ops,
}
message, err := serializeTx(tx)
if err != nil {
return "", err
}
digest := hashTxForSig(message)
txId, _ := tx.generateTrxId()
sig, err := SignDigest(digest, wif)
if err != nil {
return "", err
}
tx.Signatures = append(tx.Signatures, hex.EncodeToString(sig))
tx.prepareJson()
var params []interface{}
params = append(params, tx)
if !h.NoBroadcast {
q := hrpcQuery{"condenser_api.broadcast_transaction", params}
res, err := h.rpcExec(h.address, q)
if err != nil {
return string(res), err
}
}
return txId, nil
}