dcrd/hdkeychain/go.mod
Dave Collins 4007dcde64
hdkeychain: Convert to use new stdaddr package.
This converts the hdkeychain package example to use the stdaddr package
instead of dcrutil.Address.

This is part of a series of commits to convert all packages in the
repository to make use of the new stdaddr package.
2021-04-09 13:39:19 -05:00

18 lines
515 B
Modula-2

module github.com/decred/dcrd/hdkeychain/v3
go 1.13
require (
github.com/decred/base58 v1.0.3
github.com/decred/dcrd/chaincfg/v3 v3.0.0
github.com/decred/dcrd/crypto/blake256 v1.0.0
github.com/decred/dcrd/crypto/ripemd160 v1.0.1
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.0-20210127014238-b33b46cf1a24
github.com/decred/dcrd/txscript/v4 v4.0.0-20210330065944-a2366e6e0b3b
)
replace (
github.com/decred/dcrd/dcrec/secp256k1/v4 => ../dcrec/secp256k1
github.com/decred/dcrd/txscript/v4 => ../txscript
)