https://github.com/tr1sm0s1n/fastapi-brownie-dapp
Ethereum Certificate DApp made for Pythonistas.
https://github.com/tr1sm0s1n/fastapi-brownie-dapp
brownie bulma dapp ethereum fastapi jinja2 python smart-contracts vyper web3py
Last synced: 19 days ago
JSON representation
Ethereum Certificate DApp made for Pythonistas.
- Host: GitHub
- URL: https://github.com/tr1sm0s1n/fastapi-brownie-dapp
- Owner: tr1sm0s1n
- License: mit
- Created: 2023-04-14T14:26:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T09:02:54.000Z (8 months ago)
- Last Synced: 2025-04-14T10:07:19.707Z (19 days ago)
- Topics: brownie, bulma, dapp, ethereum, fastapi, jinja2, python, smart-contracts, vyper, web3py
- Language: HTML
- Homepage:
- Size: 34.2 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# FastAPI-Brownie-DApp
Ethereum Certificate DApp made for Pythonistas.
## 🛠 Built With
[](https://www.python.org/)
[](https://fastapi.tiangolo.com)
[](https://docs.vyperlang.org/en/stable/)
[](https://eth-brownie.readthedocs.io/en/stable/)
[](https://bulma.io/)## ⚙️ Run Locally
Clone the repository
```bash
git clone https://github.com/tr1sm0s1n/fastapi-brownie-dapp.git
cd fastapi-brownie-dapp
```Install `uv`, an extremely fast Python package and project manager
```sh
curl -LsSf https://astral.sh/uv/install.sh | sh
```Install Brownie
```sh
uv add eth-brownie
```Compile the contract
```sh
uv run brownie compile
```Run a blockchain simulation (geth/hardhat/foundry) on port **8545**.
Test the contract
```sh
uv run brownie test
```Deploy the contract
```sh
uv run brownie run deploy_cert.py
```Install FastAPI
```sh
uv add "fastapi[standard]"
```Start the application
```sh
uv run fastapi dev main.py
```## 📜 License
Click [here](./LICENSE.md).
## 🎗️ Contributing
Click [here](./CONTRIBUTING.md).
## ⚖️ Code of Conduct
Click [here](./CODE_OF_CONDUCT.md).