0568e81701
This adds an implementation of node discovery via DNS TXT records to the go-ethereum library. The implementation doesn't match EIP-1459 exactly, the main difference being that this implementation uses separate merkle trees for tree links and ENRs. The EIP will be updated to match p2p/dnsdisc. To maintain DNS trees, cmd/devp2p provides a frontend for the p2p/dnsdisc library. The new 'dns' subcommands can be used to create, sign and deploy DNS discovery trees.
14 lines
355 B
Modula-2
14 lines
355 B
Modula-2
module github.com/cloudflare/cloudflare-go
|
|
|
|
go 1.11
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/mattn/go-runewidth v0.0.4 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.1
|
|
github.com/pkg/errors v0.8.1
|
|
github.com/stretchr/testify v1.4.0
|
|
github.com/urfave/cli v1.22.1
|
|
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
|
|
)
|