├── .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 |