https://github.com/theredrad/ens-batch-resolver
🎯 ENS (.eth domain) batch domain resolver
https://github.com/theredrad/ens-batch-resolver
blockchain domain ens
Last synced: about 2 months ago
JSON representation
🎯 ENS (.eth domain) batch domain resolver
- Host: GitHub
- URL: https://github.com/theredrad/ens-batch-resolver
- Owner: theredrad
- Created: 2021-10-03T18:31:34.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-03T18:42:35.000Z (over 4 years ago)
- Last Synced: 2024-11-13T18:33:27.639Z (over 1 year ago)
- Topics: blockchain, domain, ens
- Language: Go
- Homepage:
- Size: 47.9 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ENS batch domain resolver (.eth domain)
A simple program to check a batch of ENS domains availability.
## Configure
Configs store in `config.yaml` file next to the main file. an example of the config file exists.
### `client-endpoint`
To connect to the Ethereum network, you need to create an account in https://infura.io & put your API URL in the config.yml as `client-endpoint`.
### `list-file`
The `list-file` is the path of a json file with an object with an array of domains which is named `domains`.
Example:
```json
{
"domains": [
"abacus",
"abased",
"abated",
"abates",
"abayas"
]
}
```
### `output-file`
The `output-file` is the path of output file.
## Run
You can pull the source & run it via `go run main.go` or download the binaries from the release page. make sure the binary file is executable & run it from the terminal `./resolver`.