├── .github └── workflows │ └── main.yaml ├── .gitignore ├── LICENSE ├── Notebooks └── first_transaction.ipynb ├── Procfile ├── README.md ├── favicon.ico ├── front_end ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── main.py ├── mypy.ini ├── requirements.txt ├── sandbox ├── screenshots ├── Screenshot from 2022-09-27 14-55-34.png ├── Screenshot from 2022-09-27 21-50-09.png ├── Screenshot from 2022-09-27 21-50-44.png ├── Screenshot from 2022-09-27 22-39-11.png ├── asset.png ├── balance.png ├── login interface.png ├── mainNet.png └── transactionlist.png ├── scripts └── first_transaction_example.py ├── tests └── test_account.py ├── webapps ├── __init__.py ├── admin_page.py ├── algodand.py ├── forms.py ├── frontend_page │ ├── assets.html │ ├── create_asset.html │ ├── index.html │ ├── layout.html │ ├── login.html │ ├── mnemonic.html │ ├── nav.html │ ├── nft.html │ ├── send.html │ ├── success.html │ └── transactions.html ├── index.py ├── models.py ├── static │ ├── css │ │ ├── nav.css │ │ └── style.css │ └── img │ │ └── favicon.ico └── views_pages.py └── wsgi.py /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /image 2 | .pyc 3 | /node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/LICENSE -------------------------------------------------------------------------------- /Notebooks/first_transaction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/Notebooks/first_transaction.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn wsgi:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/favicon.ico -------------------------------------------------------------------------------- /front_end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/.gitignore -------------------------------------------------------------------------------- /front_end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/README.md -------------------------------------------------------------------------------- /front_end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/package-lock.json -------------------------------------------------------------------------------- /front_end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/package.json -------------------------------------------------------------------------------- /front_end/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/public/favicon.ico -------------------------------------------------------------------------------- /front_end/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/public/index.html -------------------------------------------------------------------------------- /front_end/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/public/logo192.png -------------------------------------------------------------------------------- /front_end/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/public/logo512.png -------------------------------------------------------------------------------- /front_end/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/public/manifest.json -------------------------------------------------------------------------------- /front_end/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/public/robots.txt -------------------------------------------------------------------------------- /front_end/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/src/App.css -------------------------------------------------------------------------------- /front_end/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/src/App.js -------------------------------------------------------------------------------- /front_end/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/src/App.test.js -------------------------------------------------------------------------------- /front_end/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/src/index.css -------------------------------------------------------------------------------- /front_end/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/src/index.js -------------------------------------------------------------------------------- /front_end/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/src/logo.svg -------------------------------------------------------------------------------- /front_end/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/src/reportWebVitals.js -------------------------------------------------------------------------------- /front_end/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/front_end/src/setupTests.js -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/main.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/mypy.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/requirements.txt -------------------------------------------------------------------------------- /sandbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/sandbox -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-09-27 14-55-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/Screenshot from 2022-09-27 14-55-34.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-09-27 21-50-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/Screenshot from 2022-09-27 21-50-09.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-09-27 21-50-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/Screenshot from 2022-09-27 21-50-44.png -------------------------------------------------------------------------------- /screenshots/Screenshot from 2022-09-27 22-39-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/Screenshot from 2022-09-27 22-39-11.png -------------------------------------------------------------------------------- /screenshots/asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/asset.png -------------------------------------------------------------------------------- /screenshots/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/balance.png -------------------------------------------------------------------------------- /screenshots/login interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/login interface.png -------------------------------------------------------------------------------- /screenshots/mainNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/mainNet.png -------------------------------------------------------------------------------- /screenshots/transactionlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/screenshots/transactionlist.png -------------------------------------------------------------------------------- /scripts/first_transaction_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/scripts/first_transaction_example.py -------------------------------------------------------------------------------- /tests/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/tests/test_account.py -------------------------------------------------------------------------------- /webapps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/__init__.py -------------------------------------------------------------------------------- /webapps/admin_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/admin_page.py -------------------------------------------------------------------------------- /webapps/algodand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/algodand.py -------------------------------------------------------------------------------- /webapps/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/forms.py -------------------------------------------------------------------------------- /webapps/frontend_page/assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/assets.html -------------------------------------------------------------------------------- /webapps/frontend_page/create_asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/create_asset.html -------------------------------------------------------------------------------- /webapps/frontend_page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/index.html -------------------------------------------------------------------------------- /webapps/frontend_page/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/layout.html -------------------------------------------------------------------------------- /webapps/frontend_page/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/login.html -------------------------------------------------------------------------------- /webapps/frontend_page/mnemonic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/mnemonic.html -------------------------------------------------------------------------------- /webapps/frontend_page/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/nav.html -------------------------------------------------------------------------------- /webapps/frontend_page/nft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/nft.html -------------------------------------------------------------------------------- /webapps/frontend_page/send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/send.html -------------------------------------------------------------------------------- /webapps/frontend_page/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/success.html -------------------------------------------------------------------------------- /webapps/frontend_page/transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/frontend_page/transactions.html -------------------------------------------------------------------------------- /webapps/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/index.py -------------------------------------------------------------------------------- /webapps/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/models.py -------------------------------------------------------------------------------- /webapps/static/css/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/static/css/nav.css -------------------------------------------------------------------------------- /webapps/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/static/css/style.css -------------------------------------------------------------------------------- /webapps/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/static/img/favicon.ico -------------------------------------------------------------------------------- /webapps/views_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/webapps/views_pages.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerion12/Dapp-algorand/HEAD/wsgi.py --------------------------------------------------------------------------------