├── .gitmodules ├── README.md ├── build.sh └── index.html /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "chains"] 2 | path = chains 3 | url = https://github.com/ethereum-lists/chains 4 | [submodule "tokens"] 5 | path = tokens 6 | url = https://github.com/ethereum-lists/tokens 7 | [submodule "4bytes"] 8 | path = 4bytes 9 | url = https://github.com/ethereum-lists/4bytes 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | The source of the site lists.eth - aggregates data from chains, tokens and 4bytes -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | rm -rf output 4 | mkdir output/chains -p 5 | 6 | cd chains 7 | ./gradlew run 8 | 9 | cp -v output/*.json ../output/chains 10 | 11 | cd .. 12 | 13 | cp -rv tokens/tokens output 14 | cp -rv 4bytes/signatures output 15 | mv output/signatures output/4bytes 16 | cp index.html output 17 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | lists.eth 6 | 7 | 8 | This site is mainly intended to serve data from ethereum-lists via IPFS+ENS. It does not (yet) look pretty - if you want to change this make a PR to this repo. 9 |
10 | The data can be found here: 11 | 16 | 17 | 18 | --------------------------------------------------------------------------------