dnsseeder/README.md

24 lines
670 B
Markdown
Raw Normal View History

2019-10-09 15:32:15 -07:00
## Zcash Network Crawler
This is a CoreDNS plugin that scrapes addresses of peers from a Zcash network. It's intended as a safer and more scalable replacement for the [zcash-seeder](https://github.com/zcash/zcash-seeder) project.
2020-05-21 15:41:08 -07:00
It's written in Go and uses [btcsuite](https://github.com/btcsuite) for low-level networking.
### Build instructions
TODO
### CoreDNS configuration
A sample Corefile that configures `mainnet.seeder.yolo.money` and `testnet.seeder.yolo.money` using two local Zcash nodes:
```
mainnet.seeder.yolo.money {
dnsseed yolo.money mainnet 127.0.0.1:8233
}
testnet.seeder.yolo.money {
dnsseed yolo.money testnet 127.0.0.1:18233
}
```