imp
imp copied to clipboard
😈 Eth2 Network Agent 😈
ip info
investigate cheap/free ways to get ip info - good article: https://securitytrails.com/blog/asn-lookup - could use whois, but it doesn't provide lat,lon. i would still need to look that up from address...
``` make release-docker docker run --rm --user "$(id -u)":"$(id -g)" -v "$PWD":/usr/src/imp -w /usr/src/imp -it rust:latest bash -c "cargo build --release" Unable to find image 'rust:latest' locally latest: Pulling from...
this is a victim of countless upgrades and to libp2p (stable futures) and the need to get it working to monitor quickly to keep it compatible with testnets.
The feature that listens for gossip data and logs it writes to a hardcoded path. The filename and location should be specified as a cli param
- provide fork-ids to keep https://github.com/prrkl/imp/blob/c1b4b17ee1d95b44c17644cb74effd843bd8ac97/network/p2p/src/crawler.rs#L261
would be nice if this was a cli arg: https://github.com/prrkl/imp/blob/c1b4b17ee1d95b44c17644cb74effd843bd8ac97/network/p2p/src/crawler.rs#L315
to debug discv5 and libp2p locally i have to uncomment this line in Cargo.toml: https://github.com/prrkl/imp/blob/c1b4b17ee1d95b44c17644cb74effd843bd8ac97/Cargo.toml#L13 if i leave it uncommented all the time, then it fails to build for people...
right now imp is told what mode to run in on startup via cli args. this functionality needs to be extended to allow a c&c process to tell imp to...
What is the best way to utilize channels for event/message passing in imp? - one complication is that mothra is dependent on an older version of tokio bc of libp2p....