-
Notifications
You must be signed in to change notification settings - Fork 127
/
main.go
217 lines (210 loc) · 4.6 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
package main
import (
"fmt"
"net/http"
_ "net/http/pprof"
"os"
"runtime"
"github.com/MixinNetwork/mixin/kernel"
"github.com/MixinNetwork/mixin/rpc"
"github.com/MixinNetwork/mixin/storage"
"gopkg.in/urfave/cli.v1"
)
func main() {
app := cli.NewApp()
app.Name = "mixin"
app.Usage = "A free and lightning fast peer-to-peer transactional network for digital assets."
app.Version = "0.0.1"
app.Commands = []cli.Command{
{
Name: "kernel",
Aliases: []string{"k"},
Usage: "Start the Mixin Kernel daemon",
Action: kernelCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "dir,d",
Usage: "the data directory",
},
cli.IntFlag{
Name: "port,p",
Value: 7239,
Usage: "the peer port to listen",
},
},
},
{
Name: "setuptestnet",
Usage: "Setup the test nodes and genesis",
Action: setupTestNetCmd,
},
{
Name: "createaddress",
Usage: "Create a new Mixin address",
Action: createAdressCmd,
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: "updateheadreference",
Usage: "Update the cache round external reference, never use it unless agree by other nodes",
Action: updateHeadReference,
Flags: []cli.Flag{
cli.StringFlag{
Name: "dir",
Usage: "the data directory",
},
cli.StringFlag{
Name: "node",
Usage: "self node `ID`",
},
cli.Uint64Flag{
Name: "round",
Usage: "self cache round `NUMBER`",
},
cli.StringFlag{
Name: "external",
Usage: "the external reference `HEX`",
},
},
},
{
Name: "signrawtransaction",
Usage: "Sign a JSON encoded transaction",
Action: signTransactionCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "node,n",
Value: "127.0.0.1:8239",
Usage: "the node RPC endpoint",
},
cli.StringFlag{
Name: "raw",
Usage: "the JSON encoded raw transaction",
},
cli.StringFlag{
Name: "key",
Usage: "the private key to sign the raw transaction",
},
},
},
{
Name: "sendrawtransaction",
Usage: "Broadcast a hex encoded signed raw transaction",
Action: sendTransactionCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "node,n",
Value: "127.0.0.1:8239",
Usage: "the node RPC endpoint",
},
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: "listsnapshots",
Usage: "List finalized snapshots",
Action: listSnapshotsCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "node,n",
Value: "127.0.0.1:8239",
Usage: "the node RPC endpoint",
},
cli.Uint64Flag{
Name: "since,s",
Value: 0,
Usage: "the topological order to begin with",
},
cli.Uint64Flag{
Name: "count,c",
Value: 100,
Usage: "the up limit of the returned snapshots",
},
cli.BoolFlag{
Name: "sig",
Usage: "whether including the signatures",
},
},
},
{
Name: "gettransaction",
Usage: "Get the finalized transaction by hash",
Action: getTransactionCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "node,n",
Value: "127.0.0.1:8239",
Usage: "the node RPC endpoint",
},
cli.StringFlag{
Name: "hash,x",
Usage: "the transaction hash",
},
},
},
{
Name: "getinfo",
Usage: "Get info from the node",
Action: getInfoCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "node,n",
Value: "127.0.0.1:8239",
Usage: "the node RPC endpoint",
},
},
},
}
err := app.Run(os.Args)
if err != nil {
panic(err)
}
}
func kernelCmd(c *cli.Context) error {
runtime.GOMAXPROCS(128)
store, err := storage.NewBadgerStore(c.String("dir"))
if err != nil {
return err
}
defer store.Close()
go func() {
err := rpc.StartHTTP(store, c.Int("port")+1000)
if err != nil {
panic(err)
}
}()
go func() {
err := http.ListenAndServe(fmt.Sprintf(":%d", c.Int("port")+2000), http.DefaultServeMux)
if err != nil {
panic(err)
}
}()
return kernel.Loop(store, fmt.Sprintf(":%d", c.Int("port")), c.String("dir"))
}