go.mod 507 B

12345678910111213141516171819
  1. module blockchain-go
  2. go 1.18
  3. require (
  4. github.com/ethereum/go-ethereum v1.11.5
  5. github.com/go-stack/stack v1.8.1
  6. github.com/panjf2000/ants/v2 v2.7.2
  7. github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
  8. golang.org/x/crypto v0.7.0
  9. )
  10. require (
  11. github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
  12. github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
  13. github.com/golang/snappy v0.0.4 // indirect
  14. github.com/holiman/uint256 v1.2.0 // indirect
  15. golang.org/x/sys v0.6.0 // indirect
  16. )