-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwallet.go
241 lines (173 loc) · 5.06 KB
/
wallet.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
package litecoinWallet
import (
"crypto/ecdsa"
"errors"
"fmt"
"github.com/btcsuite/btcd/btcec/v2"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ltcsuite/ltcd/chaincfg"
"github.com/ltcsuite/ltcd/ltcutil"
"github.com/ranjbar-dev/litecoin-wallet/blockDaemon"
"github.com/ranjbar-dev/litecoin-wallet/blockDaemon/response"
"github.com/ranjbar-dev/litecoin-wallet/enums"
"strconv"
)
type LitecoinWallet struct {
Node enums.Node
Address string
PrivateKey string
PublicKey string
bd blockDaemon.BlockDaemon
}
// generating
func GenerateLitecoinWallet(node enums.Node) *LitecoinWallet {
privateKey, _ := generatePrivateKey()
privateKeyHex := convertPrivateKeyToHex(privateKey)
publicKey, _ := getPublicKeyFromPrivateKey(privateKey)
publicKeyHex := convertPublicKeyToHex(publicKey)
address, _ := getAddressFromPrivateKey(node, privateKey)
return &LitecoinWallet{
Node: node,
Address: address,
PrivateKey: privateKeyHex,
PublicKey: publicKeyHex,
bd: blockDaemon.NewBlockDaemonService(node.Config),
}
}
func CreateLitecoinWallet(node enums.Node, privateKeyHex string) (*LitecoinWallet, error) {
privateKey, err := privateKeyFromHex(privateKeyHex)
if err != nil {
return nil, err
}
publicKey, err := getPublicKeyFromPrivateKey(privateKey)
if err != nil {
return nil, err
}
publicKeyHex := convertPublicKeyToHex(publicKey)
address, err := getAddressFromPrivateKey(node, privateKey)
if err != nil {
return nil, err
}
return &LitecoinWallet{
Node: node,
Address: address,
PrivateKey: privateKeyHex,
PublicKey: publicKeyHex,
bd: blockDaemon.NewBlockDaemonService(node.Config),
}, nil
}
// struct functions
func (lw *LitecoinWallet) Chain() *chaincfg.Params {
chainConfig := &chaincfg.MainNetParams
if lw.Node.Test {
chainConfig = &chaincfg.TestNet4Params
}
return chainConfig
}
func (lw *LitecoinWallet) PrivateKeyRCDSA() (*ecdsa.PrivateKey, error) {
return privateKeyFromHex(lw.PrivateKey)
}
func (lw *LitecoinWallet) PrivateKeyBTCE() (*btcec.PrivateKey, error) {
temp, err := lw.PrivateKeyBytes()
if err != nil {
return nil, err
}
priv, _ := btcec.PrivKeyFromBytes(temp)
return priv, nil
}
func (lw *LitecoinWallet) PrivateKeyBytes() ([]byte, error) {
priv, err := lw.PrivateKeyRCDSA()
if err != nil {
return []byte{}, err
}
return crypto.FromECDSA(priv), nil
}
func (lw *LitecoinWallet) WIF() (*ltcutil.WIF, error) {
priv, err := lw.PrivateKeyBTCE()
if err != nil {
return nil, err
}
return ltcutil.NewWIF(priv, lw.Chain(), true)
}
// private key
func generatePrivateKey() (*ecdsa.PrivateKey, error) {
return crypto.GenerateKey()
}
func convertPrivateKeyToHex(privateKey *ecdsa.PrivateKey) string {
privateKeyBytes := crypto.FromECDSA(privateKey)
return hexutil.Encode(privateKeyBytes)[2:]
}
func privateKeyFromHex(hex string) (*ecdsa.PrivateKey, error) {
return crypto.HexToECDSA(hex)
}
// public key
func getPublicKeyFromPrivateKey(privateKey *ecdsa.PrivateKey) (*ecdsa.PublicKey, error) {
publicKey := privateKey.Public()
publicKeyECDSA, ok := publicKey.(*ecdsa.PublicKey)
if !ok {
return nil, errors.New("error in getting public key")
}
return publicKeyECDSA, nil
}
func convertPublicKeyToHex(publicKey *ecdsa.PublicKey) string {
privateKeyBytes := crypto.FromECDSAPub(publicKey)
return hexutil.Encode(privateKeyBytes)[2:]
}
// address
func getAddressFromPrivateKey(node enums.Node, privateKey *ecdsa.PrivateKey) (string, error) {
chainConfig := &chaincfg.MainNetParams
if node.Test {
chainConfig = &chaincfg.TestNet4Params
}
_, pub := btcec.PrivKeyFromBytes(crypto.FromECDSA(privateKey))
addr, err := ltcutil.NewAddressWitnessPubKeyHash(ltcutil.Hash160(pub.SerializeCompressed()), chainConfig)
if err != nil {
fmt.Println(err)
return "", err
}
return addr.EncodeAddress(), nil
}
// balance
func (lw *LitecoinWallet) Balance() (int64, error) {
res, err := lw.bd.AddressBalance(lw.Address)
if err != nil {
return 0, err
}
balance, err := strconv.Atoi(res[0].ConfirmedBalance)
if err != nil {
return 0, err
}
return int64(balance), nil
}
// transactions
func (lw *LitecoinWallet) UTXOs() ([]response.UTXO, error) {
var res []response.UTXO
utxos, err := lw.bd.AddressUTXO(lw.Address)
if err != nil {
return nil, err
}
for _, utxo := range utxos.Data {
if utxo.Mined.Confirmations > 2 {
res = append(res, utxo)
}
}
return res, nil
}
func (lw *LitecoinWallet) Txs() ([]response.Transaction, error) {
res, err := lw.bd.AddressTxs(lw.Address)
if err != nil {
return nil, err
}
return res.Data, nil
}
func (lw *LitecoinWallet) Transfer(toAddress string, amountInLitoshi int64) (string, error) {
privateKey, err := lw.PrivateKeyBTCE()
if err != nil {
return "", err
}
return createSignAndBroadcastTransaction(lw.Chain(), privateKey, lw.Address, toAddress, amountInLitoshi)
}
func (lw *LitecoinWallet) EstimateTransferFee(toAddress string, amountInLitoshi int64) (int64, error) {
return estimateTransactionFee(lw.Chain(), lw.Address, toAddress, amountInLitoshi)
}