-
Notifications
You must be signed in to change notification settings - Fork 10
/
addresses.go
340 lines (313 loc) · 7.76 KB
/
addresses.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
// Copyright 2017 Factom Foundation
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.
package main
import (
"flag"
"fmt"
"os"
"github.com/FactomProject/factom"
"github.com/posener/complete"
)
// balance prints the current balance of the specified address
var balance = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli balance [-r] ADDRESS"
cmd.description = "If this is an EC Address, returns number of Entry Credits. If this is a Factoid Address, returns the Factoid balance."
cmd.completion = complete.Command{
Flags: complete.Flags{
"-r": complete.PredictNothing,
},
Args: predictAddress,
}
cmd.execFunc = func(args []string) {
os.Args = args
var res = flag.Bool("r", false, "resolve dns address")
flag.Parse()
args = flag.Args()
if len(args) < 1 {
fmt.Println(cmd.helpMsg)
return
}
addr := args[0]
switch factom.AddressStringType(addr) {
case factom.FactoidPub:
b, err := factom.GetFactoidBalance(addr)
if err != nil {
errorln(err)
} else {
fmt.Println(factoshiToFactoid(b))
}
return
case factom.ECPub:
c, err := factom.GetECBalance(addr)
if err != nil {
errorln(err)
} else {
fmt.Println(c)
}
return
}
// if -r flag is present, resolve dns address then get the fct and ec
// blance
if *res {
f, e, err := factom.GetDnsBalance(addr)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(addr, "fct", factoshiToFactoid(f))
fmt.Println(addr, "ec", e)
} else {
fmt.Println("Undefined or invalid address")
}
}
help.Add("balance", cmd)
return cmd
}()
// balancetotals shows the total balance of all of the Factoid and Entry Credts
// in the wallet
var balancetotals = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli balancetotals [-FS -FA -ES -EA]"
cmd.description = "This is the total number of Factoids and Entry Credits in the wallet"
cmd.completion = complete.Command{
Flags: complete.Flags{
"-FS": complete.PredictNothing,
"-FA": complete.PredictNothing,
"-ES": complete.PredictNothing,
"-EA": complete.PredictNothing,
},
}
cmd.execFunc = func(args []string) {
os.Args = args
var fsdisp = flag.Bool("FS", false, "Display only the savedFCT value")
var fadisp = flag.Bool("FA", false, "Display only the ackFCT value")
var esdisp = flag.Bool("ES", false, "Display only the savedEC value")
var eadisp = flag.Bool("EA", false, "Display only the ackEC value")
flag.Parse()
args = flag.Args()
fs, fa, es, ea, err := factom.GetBalanceTotals()
if err != nil {
errorln(err)
return
}
switch {
case *fsdisp:
fmt.Println(factoshiToFactoid(fs))
case *fadisp:
fmt.Println(factoshiToFactoid(fa))
case *esdisp:
fmt.Println(es)
case *eadisp:
fmt.Println(ea)
default:
fmt.Println("savedFCT:", factoshiToFactoid(fs))
fmt.Println("ackFCT:", factoshiToFactoid(fa))
fmt.Println("savedEC:", es)
fmt.Println("ackEC:", ea)
}
}
help.Add("balancetotals", cmd)
return cmd
}()
// ecrate shows the entry credit conversion rate in factoids
var ecrate = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli ecrate"
cmd.description = "It takes this many Factoids to buy an Entry Credit. Displays the larger between current and future rates. Also used to set Factoid fees."
cmd.execFunc = func(args []string) {
rate, err := factom.GetECRate()
if err != nil {
errorln(err)
return
}
fmt.Println(factoshiToFactoid(rate))
}
help.Add("ecrate", cmd)
return cmd
}()
// exportaddresses lists the private addresses from the wallet
var exportaddresses = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli exportaddresses"
cmd.description = "List the private addresses stored in the wallet"
cmd.execFunc = func(args []string) {
os.Args = args
flag.Parse()
args = flag.Args()
fs, es, err := factom.FetchAddresses()
if err != nil {
errorln(err)
return
}
for _, a := range fs {
fmt.Println(a.SecString(), a.String())
}
for _, a := range es {
fmt.Println(a.SecString(), a.String())
}
}
help.Add("exportaddresses", cmd)
return cmd
}()
// importaddresses imports addresses from 1 or more secret keys into the wallet
var importaddresses = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli importaddress ADDRESS [ADDRESS...]"
cmd.description = "Import one or more secret keys into the wallet"
cmd.execFunc = func(args []string) {
os.Args = args
flag.Parse()
args = flag.Args()
if len(args) < 1 {
fmt.Println(cmd.helpMsg)
return
}
fs, es, err := factom.ImportAddresses(args...)
if err != nil {
errorln(err)
return
}
for _, a := range fs {
fmt.Println(a)
}
for _, a := range es {
fmt.Println(a)
}
}
help.Add("importaddress", cmd)
return cmd
}()
var importkoinify = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli importkoinify '12WORDS'"
cmd.description = "Import 12 words from Koinify sale into the Wallet"
cmd.execFunc = func(args []string) {
os.Args = args
flag.Parse()
args = flag.Args()
if len(args) < 1 || len(args) > 1 {
fmt.Println(cmd.helpMsg, " Note, 12 words must be in quotes")
return
}
f, err := factom.ImportKoinify(args[0])
if err != nil {
errorln(err)
return
}
fmt.Println(f)
}
help.Add("importkoinify", cmd)
return cmd
}()
// newecaddress generates a new ec address in the wallet
var newecaddress = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli newecaddress"
cmd.description = "Generate a new Entry Credit Address in the wallet"
cmd.execFunc = func(args []string) {
os.Args = args
flag.Parse()
args = flag.Args()
a, err := factom.GenerateECAddress()
if err != nil {
errorln(err)
return
}
fmt.Println(a)
}
help.Add("newecaddress", cmd)
return cmd
}()
// newfctaddress generates a new ec address in the wallet
var newfctaddress = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli newfctaddress"
cmd.description = "Generate a new Factoid Address in the wallet"
cmd.execFunc = func(args []string) {
os.Args = args
flag.Parse()
args = flag.Args()
a, err := factom.GenerateFactoidAddress()
if err != nil {
errorln(err)
return
}
fmt.Println(a)
}
help.Add("newfctaddress", cmd)
return cmd
}()
// listaddresses lists the addresses in the wallet
var listaddresses = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli listaddresses"
cmd.description = "List the addresses stored in the wallet"
cmd.execFunc = func(args []string) {
os.Args = args
adisp := flag.Bool(
"A",
false,
"display only the address without looking up the balance",
)
flag.Parse()
args = flag.Args()
fs, es, err := factom.FetchAddresses()
if err != nil {
errorln(err)
return
}
if *adisp {
for _, a := range fs {
fmt.Println(a)
}
for _, a := range es {
fmt.Println(a)
}
} else {
for _, a := range fs {
b, err := factom.GetFactoidBalance(a.String())
if err != nil {
errorln(err)
fmt.Println(a)
} else {
fmt.Println(a, factoshiToFactoid(b))
}
}
for _, a := range es {
c, err := factom.GetECBalance(a.String())
if err != nil {
errorln(err)
fmt.Println(a)
} else {
fmt.Println(a, c)
}
}
}
}
help.Add("listaddresses", cmd)
return cmd
}()
// Removes an address
var removeAddress = func() *fctCmd {
cmd := new(fctCmd)
cmd.helpMsg = "factom-cli rmaddress ADDRESS"
cmd.description = "Removes the public and private key from the wallet for the address specified."
cmd.completion = complete.Command{
Args: predictAddress,
}
cmd.execFunc = func(args []string) {
if len(args) < 2 {
fmt.Println(cmd.helpMsg)
return
}
addr := args[1]
err := factom.RemoveAddress(addr)
if err != nil {
fmt.Printf("%v\n", err)
}
}
help.Add("rmaddress", cmd)
return cmd
}()