vspd/client/go.mod
Jamie Holdstock 4acd57efbc
Add client module (#359)
* Add vspd client from dcrwallet.

* client: Extract and export ValidateServerSignature

* client: Add helper funcs.

* client: Add trace logging.

* client: Use existing error types.

* Add comments to explain error handling logic.
2022-11-28 11:16:00 -05:00

23 lines
745 B
Modula-2

module github.com/decred/vspd/client
go 1.19
require (
github.com/decred/dcrd/txscript/v4 v4.0.0
github.com/decred/slog v1.2.0
github.com/decred/vspd/types v1.1.0
)
require (
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect
github.com/dchest/siphash v1.2.2 // indirect
github.com/decred/base58 v1.0.3 // indirect
github.com/decred/dcrd/chaincfg/chainhash v1.0.3 // indirect
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
github.com/decred/dcrd/crypto/ripemd160 v1.0.1 // indirect
github.com/decred/dcrd/dcrec v1.0.0 // indirect
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.2 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/decred/dcrd/wire v1.5.0 // indirect
)