Base wallet implementation (#35)
* Initial draft of the neo-go wallet * Cleanup + more test for util package * integrated wallet into neo-cli partially * base wallet implementation + smartcontract code.
This commit is contained in:
parent
942650dd8b
commit
f3f6662fc9
33 changed files with 1754 additions and 87 deletions
|
@ -5,6 +5,7 @@ import (
|
|||
|
||||
"github.com/CityOfZion/neo-go/cli/server"
|
||||
"github.com/CityOfZion/neo-go/cli/smartcontract"
|
||||
"github.com/CityOfZion/neo-go/cli/wallet"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
|
@ -16,6 +17,7 @@ func main() {
|
|||
ctl.Commands = []cli.Command{
|
||||
server.NewCommand(),
|
||||
smartcontract.NewCommand(),
|
||||
wallet.NewCommand(),
|
||||
}
|
||||
|
||||
ctl.Run(os.Args)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue