go.mod 675 B

123456789101112131415161718192021
  1. module github.com/wormhole-foundation/wormhole/sdk
  2. go 1.20
  3. require (
  4. github.com/ethereum/go-ethereum v1.10.21
  5. github.com/holiman/uint256 v1.2.1
  6. github.com/stretchr/testify v1.8.0
  7. golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
  8. )
  9. require (
  10. github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
  11. github.com/davecgh/go-spew v1.1.1 // indirect
  12. github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
  13. github.com/kr/text v0.2.0 // indirect
  14. github.com/pmezard/go-difflib v1.0.0 // indirect
  15. golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
  16. gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
  17. gopkg.in/yaml.v3 v3.0.1 // indirect
  18. )