├── .DS_Store ├── .gitignore ├── .streamlit └── config.toml ├── 657c7ed16b14af693c08b92d_GTC-Logotype-Dark.png ├── Home.py ├── Procfile ├── README.md ├── __pycache__ └── utils.cpython-311.pyc ├── all_rounds.csv ├── chain_blocktimes.csv ├── ens.csv ├── favicon.png ├── pages ├── 🏆_Leaderboard.py ├── 🕸 _Networks.py └── 🗓_Lifetime.py ├── queries ├── get_2024_stats.sql ├── get_blocktimes.sql ├── get_projects.sql ├── get_round_stats.sql ├── get_summary_stats.sql └── get_votes.sql ├── requirements.txt ├── token_map.csv └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .env 3 | .streamlit/secrets.toml 4 | -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /657c7ed16b14af693c08b92d_GTC-Logotype-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/657c7ed16b14af693c08b92d_GTC-Logotype-Dark.png -------------------------------------------------------------------------------- /Home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/Home.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: streamlit run Home.py --server.port $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /all_rounds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/all_rounds.csv -------------------------------------------------------------------------------- /chain_blocktimes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/chain_blocktimes.csv -------------------------------------------------------------------------------- /ens.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/ens.csv -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/favicon.png -------------------------------------------------------------------------------- /pages/🏆_Leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/pages/🏆_Leaderboard.py -------------------------------------------------------------------------------- /pages/🕸 _Networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/pages/🕸 _Networks.py -------------------------------------------------------------------------------- /pages/🗓_Lifetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/pages/🗓_Lifetime.py -------------------------------------------------------------------------------- /queries/get_2024_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/queries/get_2024_stats.sql -------------------------------------------------------------------------------- /queries/get_blocktimes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/queries/get_blocktimes.sql -------------------------------------------------------------------------------- /queries/get_projects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/queries/get_projects.sql -------------------------------------------------------------------------------- /queries/get_round_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/queries/get_round_stats.sql -------------------------------------------------------------------------------- /queries/get_summary_stats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/queries/get_summary_stats.sql -------------------------------------------------------------------------------- /queries/get_votes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/queries/get_votes.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/requirements.txt -------------------------------------------------------------------------------- /token_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/token_map.csv -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScarfaceStyle/gitcoin-grants-heroku/HEAD/utils.py --------------------------------------------------------------------------------