Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dapplion/rust-eth2crawler
https://github.com/dapplion/rust-eth2crawler
Last synced: about 19 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/dapplion/rust-eth2crawler
- Owner: dapplion
- Created: 2022-10-19T18:17:07.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-19T18:17:31.000Z (about 2 years ago)
- Last Synced: 2024-12-28T06:48:20.340Z (10 days ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eth2crawler
## DB setup
https://stackoverflow.com/questions/16287559/mysql-adding-user-for-remote-access
```
sudo mysql -u root
CREATE DATABASE eth2nodes;
CREATE USER 'lion'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'lion'@'localhost' WITH GRANT OPTION;
```