-
Notifications
You must be signed in to change notification settings - Fork 127
/
main.go
660 lines (641 loc) · 14.7 KB
/
main.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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
package main
import (
"fmt"
"net/http"
_ "net/http/pprof"
"os"
"runtime"
"time"
"github.com/MixinNetwork/mixin/config"
"github.com/MixinNetwork/mixin/kernel"
"github.com/MixinNetwork/mixin/logger"
"github.com/MixinNetwork/mixin/rpc"
"github.com/MixinNetwork/mixin/storage"
"github.com/VictoriaMetrics/fastcache"
"github.com/urfave/cli/v2"
)
func main() {
app := cli.NewApp()
app.Name = "mixin"
app.Usage = "A free, lightning fast and decentralized network for transferring digital assets."
app.Version = config.BuildVersion
app.Flags = []cli.Flag{
&cli.StringFlag{
Name: "node",
Aliases: []string{"n"},
Value: "127.0.0.1:8239",
Usage: "the node RPC endpoint",
},
&cli.StringFlag{
Name: "dir",
Aliases: []string{"d"},
Usage: "the data directory",
},
&cli.BoolFlag{
Name: "time",
Value: false,
Usage: "print the runtime",
},
}
app.EnableBashCompletion = true
app.Commands = []*cli.Command{
{
Name: "kernel",
Aliases: []string{"k"},
Usage: "Start the Mixin Kernel daemon",
Action: kernelCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "dir",
Aliases: []string{"d"},
Usage: "the data directory",
},
&cli.IntFlag{
Name: "port",
Aliases: []string{"p"},
Value: 7239,
Usage: "the peer port to listen",
},
&cli.IntFlag{
Name: "log",
Aliases: []string{"l"},
Value: logger.INFO,
Usage: "the log level",
},
&cli.IntFlag{
Name: "limiter",
Value: 0,
Usage: "limit the log count for the same content, 0 means no limit",
},
&cli.StringFlag{
Name: "filter",
Usage: "the RE2 regex pattern to filter log",
},
},
},
{
Name: "clone",
Usage: "Clone a graph to intialize the kernel",
Action: cloneCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "dir",
Aliases: []string{"d"},
Usage: "the kernel data directory",
},
&cli.StringFlag{
Name: "src",
Aliases: []string{"s"},
Usage: "the source graph directory to clone",
},
&cli.IntFlag{
Name: "log",
Aliases: []string{"l"},
Value: logger.INFO,
Usage: "the log level",
},
&cli.IntFlag{
Name: "limiter",
Value: 0,
Usage: "limit the log count for the same content, 0 means no limit",
},
&cli.StringFlag{
Name: "filter",
Usage: "the RE2 regex pattern to filter log",
},
},
},
{
Name: "setuptestnet",
Usage: "Setup the test nodes and genesis",
Action: setupTestNetCmd,
},
{
Name: "createaddress",
Usage: "Create a new Mixin address",
Action: createAddressCmd,
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "public",
Usage: "whether mark all my transactions public",
},
&cli.StringFlag{
Name: "view",
Usage: "the private view key `HEX` instead of a random one",
},
&cli.StringFlag{
Name: "spend",
Usage: "the private spend key `HEX` instead of a random one",
},
},
},
{
Name: "decodeaddress",
Usage: "Decode an address as public view key and public spend key",
Action: decodeAddressCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "address",
Aliases: []string{"a"},
Usage: "the Mixin Kernel address",
},
},
},
{
Name: "decodesignature",
Usage: "Decode a signature",
Action: decodeSignatureCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "signature",
Usage: "the cosi signature `HEX`",
},
},
},
{
Name: "decryptghostkey",
Usage: "Decrypt a ghost key with the private view key",
Action: decryptGhostCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "view",
Usage: "the private view key",
},
&cli.StringFlag{
Name: "key",
Usage: "the ghost key",
},
&cli.StringFlag{
Name: "mask",
Usage: "the ghost mask",
},
&cli.Uint64Flag{
Name: "index",
Aliases: []string{"i"},
Usage: "the output index",
},
},
},
{
Name: "updateheadreference",
Usage: "Update the cache round external reference, never use it unless agree by other nodes",
Action: updateHeadReference,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "id",
Usage: "self node `ID`",
},
&cli.Uint64Flag{
Name: "round",
Usage: "self cache round `NUMBER`",
},
&cli.StringFlag{
Name: "external",
Usage: "the external reference `HEX`",
},
},
},
{
Name: "removegraphentries",
Usage: "Remove data entries by prefix from the graph data storage",
Action: removeGraphEntries,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "prefix",
Usage: "the entry prefix",
},
},
},
{
Name: "validategraphentries",
Usage: "Validate transaction hash integration",
Action: validateGraphEntries,
Flags: []cli.Flag{
&cli.Uint64Flag{
Name: "depth",
Value: 1000,
Usage: "the maximum round depth to validate for each node",
},
},
},
{
Name: "buildrawtransaction",
Usage: "Build a script raw transaction",
Action: buildRawTransactionCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "asset",
Usage: "the asset id of the transaction",
},
&cli.StringFlag{
Name: "extra",
Usage: "the extra of the transaction",
},
&cli.StringFlag{
Name: "inputs",
Usage: "the inputs of the transaction",
},
&cli.StringFlag{
Name: "outputs",
Usage: "the outputs of the transaction",
},
&cli.StringFlag{
Name: "view",
Usage: "the private view key to sign the transaction",
},
&cli.StringFlag{
Name: "spend",
Usage: "the private spend key to sign the transaction",
},
&cli.StringFlag{
Name: "seed",
Usage: "the mask seed to hide the recipient public key",
},
},
},
{
Name: "signrawtransaction",
Usage: "Sign a JSON encoded transaction",
Action: signTransactionCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "raw",
Usage: "the JSON encoded raw transaction",
},
&cli.StringSliceFlag{
Name: "key",
Usage: "the private key to sign the raw transaction",
},
&cli.StringFlag{
Name: "seed",
Usage: "the mask seed to hide the recipient public key",
},
},
},
{
Name: "sendrawtransaction",
Usage: "Broadcast a hex encoded signed raw transaction",
Action: sendTransactionCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "raw",
Usage: "the hex encoded signed raw transaction",
},
},
},
{
Name: "decoderawtransaction",
Usage: "Decode a raw transaction as JSON",
Action: decodeTransactionCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "raw",
Usage: "the JSON encoded raw transaction",
},
},
},
{
Name: "buildnodepledgetransaction",
Usage: "Build the transaction to pledge a node",
Action: pledgeNodeCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "view",
Usage: "the private view key to sign the transaction",
},
&cli.StringFlag{
Name: "spend",
Usage: "the private spend key to sign the transaction",
},
&cli.StringFlag{
Name: "signer",
Usage: "the signer address",
},
&cli.StringFlag{
Name: "payee",
Usage: "the payee address",
},
&cli.StringFlag{
Name: "input",
Usage: "the input transaction hash",
},
&cli.StringFlag{
Name: "amount",
Usage: "the input amount",
},
},
},
{
Name: "buildnodecanceltransaction",
Usage: "Build the transaction to cancel a pledging node",
Action: cancelNodeCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "view",
Usage: "the private view key which signs the pledging transaction",
},
&cli.StringFlag{
Name: "spend",
Usage: "the private spend key which signs the pledging transaction",
},
&cli.StringFlag{
Name: "receiver",
Usage: "the address to receive the refund",
},
&cli.StringFlag{
Name: "pledge",
Usage: "the hex of raw pledge transaction",
},
&cli.StringFlag{
Name: "source",
Usage: "the hex of raw pledging input transaction",
},
},
},
{
Name: "decodenodepledgetransaction",
Usage: "Decode the extra info of a pledge transaction",
Action: decodePledgeNodeCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "raw",
Usage: "the raw pledge transaction",
},
},
},
{
Name: "getroundlink",
Usage: "Get the latest link between two nodes",
Action: getRoundLinkCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "from",
Usage: "the reference head",
},
&cli.StringFlag{
Name: "to",
Usage: "the reference tail",
},
},
},
{
Name: "getroundbynumber",
Usage: "Get a specific round",
Action: getRoundByNumberCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "id",
Usage: "the round node id",
},
&cli.Uint64Flag{
Name: "number",
Value: 0,
Usage: "the round number",
},
},
},
{
Name: "getroundbyhash",
Usage: "Get a specific round",
Action: getRoundByHashCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "hash",
Aliases: []string{"x"},
Usage: "the round hash",
},
},
},
{
Name: "listsnapshots",
Usage: "List finalized snapshots",
Action: listSnapshotsCmd,
Flags: []cli.Flag{
&cli.Uint64Flag{
Name: "since",
Aliases: []string{"s"},
Value: 0,
Usage: "the topological order to begin with",
},
&cli.Uint64Flag{
Name: "count",
Aliases: []string{"c"},
Value: 10,
Usage: "the up limit of the returned snapshots",
},
&cli.BoolFlag{
Name: "sig",
Usage: "whether including the signatures",
},
&cli.BoolFlag{
Name: "tx",
Usage: "whether including the transactions",
},
},
},
{
Name: "getsnapshot",
Usage: "Get the snapshot by hash",
Action: getSnapshotCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "hash",
Aliases: []string{"x"},
Usage: "the snapshot hash",
},
},
},
{
Name: "gettransaction",
Usage: "Get the finalized transaction by hash",
Action: getTransactionCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "hash",
Aliases: []string{"x"},
Usage: "the transaction hash",
},
},
},
{
Name: "getcachetransaction",
Usage: "Get the transaction in cache by hash",
Action: getCacheTransactionCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "hash",
Aliases: []string{"x"},
Usage: "the transaction hash",
},
},
},
{
Name: "getutxo",
Usage: "Get the UTXO by hash and index",
Action: getUTXOCmd,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "hash",
Aliases: []string{"x"},
Usage: "the transaction hash",
},
&cli.Uint64Flag{
Name: "index",
Aliases: []string{"i"},
Value: 0,
Usage: "the output index",
},
},
},
{
Name: "listmintworks",
Usage: "List mint works",
Action: listMintWorksCmd,
Flags: []cli.Flag{
&cli.Uint64Flag{
Name: "since",
Aliases: []string{"s"},
Value: 0,
Usage: "the mint batch to list works",
},
},
},
{
Name: "listmintdistributions",
Usage: "List mint distributions",
Action: listMintDistributionsCmd,
Flags: []cli.Flag{
&cli.Uint64Flag{
Name: "since",
Aliases: []string{"s"},
Value: 0,
Usage: "the mint batch to begin with",
},
&cli.Uint64Flag{
Name: "count",
Aliases: []string{"c"},
Value: 10,
Usage: "the up limit of the returned distributions",
},
&cli.BoolFlag{
Name: "tx",
Usage: "whether including the transactions",
},
},
},
{
Name: "listallnodes",
Usage: "List all nodes ever existed",
Action: listAllNodesCmd,
Flags: []cli.Flag{
&cli.Uint64Flag{
Name: "threshold",
Value: 0,
Usage: "the threshold in Unix nanoseconds to build the nodes list",
},
&cli.BoolFlag{
Name: "state",
Value: false,
Usage: "whether keep a full state queue",
},
},
},
{
Name: "getinfo",
Usage: "Get info from the node",
Action: getInfoCmd,
},
{
Name: "dumpgraphhead",
Usage: "Dump the graph head",
Action: dumpGraphHeadCmd,
},
}
err := app.Run(os.Args)
if err != nil {
fmt.Println(err)
}
}
func cloneCmd(c *cli.Context) error {
runtime.GOMAXPROCS(runtime.NumCPU())
logger.SetLevel(c.Int("log"))
logger.SetLimiter(c.Int("limiter"))
err := logger.SetFilter(c.String("filter"))
if err != nil {
return err
}
custom, err := config.Initialize(c.String("dir") + "/config.toml")
if err != nil {
return err
}
cache := fastcache.New(custom.Node.MemoryCacheSize * 1024 * 1024)
go func() {
var s fastcache.Stats
for {
time.Sleep(1 * time.Minute)
cache.UpdateStats(&s)
logger.Printf("CACHE STATS GET: %d SET: %d COLLISION: %d SIZE: %dMB\n", s.GetCalls, s.SetCalls, s.Collisions, s.BytesSize/1024/1024)
s.Reset()
}
}()
store, err := storage.NewBadgerStore(custom, c.String("dir"))
if err != nil {
return err
}
defer store.Close()
source, err := storage.NewBadgerStore(custom, c.String("src"))
if err != nil {
return err
}
defer source.Close()
node, err := kernel.SetupNode(custom, store, cache, ":12345", c.String("dir"))
if err != nil {
return err
}
go http.ListenAndServe(":9239", http.DefaultServeMux)
return node.Import(c.String("dir"), source)
}
func kernelCmd(c *cli.Context) error {
runtime.GOMAXPROCS(runtime.NumCPU())
logger.SetLevel(c.Int("log"))
logger.SetLimiter(c.Int("limiter"))
err := logger.SetFilter(c.String("filter"))
if err != nil {
return err
}
custom, err := config.Initialize(c.String("dir") + "/config.toml")
if err != nil {
return err
}
cache := fastcache.New(custom.Node.MemoryCacheSize * 1024 * 1024)
go func() {
var s fastcache.Stats
for {
time.Sleep(1 * time.Minute)
cache.UpdateStats(&s)
logger.Printf("CACHE STATS GET: %d SET: %d COLLISION: %d SIZE: %dMB\n", s.GetCalls, s.SetCalls, s.Collisions, s.BytesSize/1024/1024)
s.Reset()
}
}()
store, err := storage.NewBadgerStore(custom, c.String("dir"))
if err != nil {
return err
}
defer store.Close()
addr := fmt.Sprintf(":%d", c.Int("port"))
node, err := kernel.SetupNode(custom, store, cache, addr, c.String("dir"))
if err != nil {
return err
}
go func() {
server := rpc.NewServer(custom, store, node, c.Int("port")+1000)
err := server.ListenAndServe()
if err != nil {
panic(err)
}
}()
if custom.Dev.Profile {
go http.ListenAndServe(fmt.Sprintf(":%d", c.Int("port")+2000), http.DefaultServeMux)
}
return node.Loop()
}