Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dapplion/rust-eth2crawler


https://github.com/dapplion/rust-eth2crawler

Last synced: about 19 hours ago
JSON representation

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;
```