mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* Add basic wallet library * Add CLI * Add multisig support * Add persistence to wallet * Add tests * go mod tidy * Fix lint errors * Fix wallet send command * Always use the password as byte slice * Remove redundant empty string * Use different salt per private key * Don't sign a signed transaction * Add comment * Remove old wallet * Change directory permissions * Use NormalizeRPCServerAddress * Fix compilation errors
21 lines
651 B
Modula-2
21 lines
651 B
Modula-2
module github.com/kaspanet/kaspad
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
|
|
github.com/btcsuite/winsvc v1.0.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/golang/protobuf v1.4.2
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/jrick/logrotate v1.0.0
|
|
github.com/kaspanet/go-muhash v0.0.4
|
|
github.com/kaspanet/go-secp256k1 v0.0.5
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d
|
|
golang.org/x/crypto v0.0.0-20210317152858-513c2a44f670
|
|
golang.org/x/term v0.0.0-20210317153231-de623e64d2a6
|
|
google.golang.org/grpc v1.33.1
|
|
google.golang.org/protobuf v1.25.0
|
|
)
|