https://github.com/levicook/ethereum-spikes
My random collection of experiments for understanding things in the ethereum ecosystem
https://github.com/levicook/ethereum-spikes
Last synced: 6 days ago
JSON representation
My random collection of experiments for understanding things in the ethereum ecosystem
- Host: GitHub
- URL: https://github.com/levicook/ethereum-spikes
- Owner: levicook
- License: mit
- Created: 2021-02-27T15:08:34.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-07T17:07:07.000Z (over 5 years ago)
- Last Synced: 2025-10-20T04:53:47.020Z (10 months ago)
- Language: Go
- Size: 56.6 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ethereum-spikes
My random collection of experiments for understanding things in the
ethereum ecosystem.
## Collaborating
I'm not really expecting collaboration on this project. Reach out if
there's something here you find interesting and useful.
### Project Conventions & Organization
I find little command line utilities helpful. This project contains
several within the ./cmd/... package structure and they're generally
implemented with https://cobra.dev/
Running `make` without arguments will build the entire project.
Running `make watch` will start a build loop. It watches the source tree
for updates and builds the project, providing a fast feedback loop on
your edits.
I also like to keep my project dependencies isolated (contained within
the project, instead of across my system) and rely on `direnv` to help
me do that. I consider this tool optional, but recommended. You can read
about it here: https://direnv.net/
## Things I want to understand
- [ ] discv5
- [ ] libp2p
- [ ] where's the boundary between discv5 & libp2p