2021-08-31 20:24:20 +00:00
|
|
|
module github.com/openrelayxyz/plugeth-utils
|
|
|
|
|
2023-01-25 21:11:59 +00:00
|
|
|
go 1.19
|
2021-08-31 20:24:20 +00:00
|
|
|
|
2021-09-14 16:53:41 +00:00
|
|
|
require (
|
2022-06-15 14:48:23 +00:00
|
|
|
github.com/btcsuite/btcd/btcec/v2 v2.2.0
|
2021-09-16 20:52:50 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2021-09-16 20:58:42 +00:00
|
|
|
github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa
|
2021-09-14 16:53:41 +00:00
|
|
|
github.com/holiman/uint256 v1.2.0
|
2021-09-16 20:58:42 +00:00
|
|
|
github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e
|
2022-08-25 19:44:46 +00:00
|
|
|
github.com/stretchr/testify v1.7.2
|
2023-02-16 21:37:00 +00:00
|
|
|
golang.org/x/crypto v0.1.0
|
|
|
|
golang.org/x/sys v0.5.0
|
2022-08-01 20:09:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
|
|
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2021-09-16 20:52:50 +00:00
|
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
2022-08-25 19:53:10 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2021-09-14 16:53:41 +00:00
|
|
|
)
|