-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtransaction.go
211 lines (156 loc) · 5.18 KB
/
transaction.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package litecoinWallet
import (
"bytes"
"encoding/hex"
"errors"
"github.com/ltcsuite/ltcd/btcec/v2"
"github.com/ltcsuite/ltcd/chaincfg"
"github.com/ltcsuite/ltcd/chaincfg/chainhash"
"github.com/ltcsuite/ltcd/ltcutil"
"github.com/ltcsuite/ltcd/txscript"
"github.com/ltcsuite/ltcd/wire"
"github.com/ranjbar-dev/litecoin-wallet/blockDaemon"
"github.com/ranjbar-dev/litecoin-wallet/blockDaemon/response"
"github.com/ranjbar-dev/litecoin-wallet/enums"
)
func getAddressUTXO(chain *chaincfg.Params, address string) ([]response.UTXO, error) {
node := enums.MAIN_NODE
if &chaincfg.TestNet4Params == chain {
node = enums.TEST_NODE
}
bd := blockDaemon.NewBlockDaemonService(node.Config)
res, err := bd.AddressUTXO(address)
if err != nil {
return nil, err
}
return res.Data, nil
}
func prepareUTXOForTransaction(chain *chaincfg.Params, address string, amount int64) ([]response.UTXO, int64, error) {
records, err := getAddressUTXO(chain, address)
if err != nil {
return nil, 0, err
}
var final []response.UTXO
var total int64
for _, record := range records {
if total >= amount {
break
}
if record.Mined.Confirmations > 2 {
final = append(final, record)
total += int64(record.Value)
}
}
return final, total, nil
}
func createTransactionAndSignTransaction(chain *chaincfg.Params, fromAddress string, privateKey *btcec.PrivateKey, toAddress string, amount int64) (*wire.MsgTx, error) {
fromAddr, err := ltcutil.DecodeAddress(fromAddress, chain)
if err != nil {
return nil, errors.New("DecodeAddress fromAddr err " + err.Error())
}
fromAddrScriptByte, err := txscript.PayToAddrScript(fromAddr)
if err != nil {
return nil, errors.New("fromAddr PayToAddrScript err " + err.Error())
}
toAddr, err := ltcutil.DecodeAddress(toAddress, chain)
if err != nil {
return nil, errors.New("DecodeAddress destAddrStr err " + err.Error())
}
toAddrByte, err := txscript.PayToAddrScript(toAddr)
if err != nil {
return nil, errors.New("toAddr PayToAddrScript err " + err.Error())
}
fromAddrByte, err := txscript.PayToAddrScript(fromAddr)
if err != nil {
return nil, errors.New("fromAddrByte PayToAddrScript err " + err.Error())
}
utxoList, totalAmount, err := prepareUTXOForTransaction(chain, fromAddress, amount)
if err != nil {
return nil, errors.New("vin err " + err.Error())
}
if totalAmount < amount || len(utxoList) == 0 {
return nil, errors.New("insufficient balance")
}
t, err := createTransactionInputsAndSign(chain, privateKey, utxoList, fromAddrByte, fromAddrScriptByte, toAddrByte, totalAmount, amount)
if err != nil {
return nil, errors.New("vin err " + err.Error())
}
return t, nil
}
func createTransactionInputsAndSign(chain *chaincfg.Params, privateKey *btcec.PrivateKey, utxos []response.UTXO, fromAddressByte []byte, fromAddressScriptByte []byte, toAddressByte []byte, totalAmount int64, amount int64) (*wire.MsgTx, error) {
node := enums.MAIN_NODE
if &chaincfg.TestNet4Params == chain {
node = enums.TEST_NODE
}
bd := blockDaemon.NewBlockDaemonService(node.Config)
res, err := bd.EstimateFee()
if err != nil {
return nil, err
}
transaction := wire.NewMsgTx(2)
// vin
for _, utxo := range utxos {
hash, err := chainhash.NewHashFromStr(utxo.Mined.TxId)
if err != nil {
return nil, err
}
txIn := wire.NewTxIn(wire.NewOutPoint(hash, uint32(utxo.Mined.Index)), nil, [][]byte{})
txIn.Sequence = txIn.Sequence - 2
transaction.AddTxIn(txIn)
}
// vout
transaction.AddTxOut(wire.NewTxOut(amount, toAddressByte))
txSize := transaction.SerializeSize()
fee := int64(txSize * res.EstimatedFees.Slow)
changeAmount := totalAmount - amount - fee
if changeAmount > 0 {
transaction.AddTxOut(wire.NewTxOut(changeAmount, fromAddressByte))
}
transaction.LockTime = 0
signerMap := make(map[wire.OutPoint]*wire.TxOut)
for _, in := range transaction.TxIn {
signerMap[in.PreviousOutPoint] = &wire.TxOut{}
}
sigHashes := txscript.NewTxSigHashes(transaction)
// sign
for index, utxo := range utxos {
signature, err := txscript.WitnessSignature(transaction, sigHashes, index, int64(utxo.Value), fromAddressScriptByte, txscript.SigHashAll, privateKey, true)
if err != nil {
return nil, errors.New("WitnessSignature err " + err.Error())
}
transaction.TxIn[index].Witness = signature
}
return transaction, nil
}
func getRawTransaction(tx *wire.MsgTx) (string, error) {
var signedTx bytes.Buffer
err := tx.Serialize(&signedTx)
if err != nil {
return "", err
}
return hex.EncodeToString(signedTx.Bytes()), nil
}
func broadcastHex(chain *chaincfg.Params, hex string) (string, error) {
node := enums.MAIN_NODE
if &chaincfg.TestNet4Params == chain {
node = enums.TEST_NODE
}
res, err := blockDaemon.NewBlockDaemonService(node.Config).Broadcast(hex)
if err != nil {
return "", err
}
return res.Id, nil
}
func createSignAndBroadcastTransaction(chain *chaincfg.Params, privateKey *btcec.PrivateKey, fromAddress string, toAddress string, amount int64) (string, error) {
// signed tx
tx, err := createTransactionAndSignTransaction(chain, fromAddress, privateKey, toAddress, amount)
if err != nil {
return "", err
}
// raw
raw, err := getRawTransaction(tx)
if err != nil {
return "", err
}
return broadcastHex(chain, raw)
}