plugeth-utils/go.mod
Austin Roberts 920ed764db Add withdrawals to Block
Includes:
* restricted/types/withdrawal.go
* Additions to restricted/types/blocks.go

Note that I have not currently included withdrawal_gen.go, which
does not appear on the surface to be necessar,y but that may
require adjustment if testing shows otherwise.
2023-01-26 16:09:39 -06:00

23 lines
724 B
Modula-2

module github.com/openrelayxyz/plugeth-utils
go 1.19
require (
github.com/btcsuite/btcd/btcec/v2 v2.2.0
github.com/davecgh/go-spew v1.1.1
github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa
github.com/holiman/uint256 v1.2.0
github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e
github.com/stretchr/testify v1.7.2
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a
)
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
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)