## Testing the app

Run [app.py](app.py) with Streamlit - edit [PythonWeb3Wallet](frontend/src/PythonWeb3Wallet.tsx) and [__init__.py](__init__.py) if required.

## Publishing

1. Build frontend
```
npm run build --prefix python_web3_wallet/frontend
```

2. Publish Python package
```
# publish on testpy
poetry publish -p {PYPI_TEST_TOKEN} -u "__token__" --build --repository testpypi
# upload to pypi
poetry publish -p {PYPI_TOKEN} -u "__token__" --build
```
