├── .dockerignore ├── .github └── workflows │ ├── android.yml │ └── tests.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── blacklist.txt ├── dockerfiles ├── Dockerfile-android ├── Dockerfile-fdroid ├── Dockerfile-linux └── env.list ├── docs ├── Debugging.md ├── DeployContract.md ├── HowToTransferOut.md ├── MiningTestnet.md ├── Oraclize.md ├── Release.md ├── Settings.md ├── Troubleshoot.md ├── iOS.md ├── images │ ├── etheroll-logo.png │ ├── icon.png │ └── preview_nexus_6p.xcf └── root │ └── etc │ └── udev │ └── rules.d │ └── 51-android.rules ├── requirements.txt ├── setup.py └── src ├── etherollapp ├── CHANGELOG.md ├── env.env ├── etheroll │ ├── about.kv │ ├── about.py │ ├── addressbutton.py │ ├── constants.py │ ├── controller.kv │ ├── controller.py │ ├── createnewaccount.kv │ ├── createnewaccount.py │ ├── customtoolbar.kv │ ├── customtoolbar.py │ ├── flashqrcode.kv │ ├── flashqrcode.py │ ├── importkeystore.kv │ ├── importkeystore.py │ ├── lazyscreenmanager.py │ ├── passwordform.kv │ ├── passwordform.py │ ├── roll.kv │ ├── roll.py │ ├── roll_results.kv │ ├── roll_results.py │ ├── scroll_view_spinner.kv │ ├── scroll_view_spinner.py │ ├── scrollablelabel.kv │ ├── scrollablelabel.py │ ├── send.kv │ ├── send.py │ ├── settings.py │ ├── settings_screen.kv │ ├── settings_screen.py │ ├── store.py │ ├── switchaccount.kv │ ├── switchaccount.py │ ├── ui_utils.py │ └── utils.py ├── osc │ ├── README.md │ ├── __init__.py │ ├── osc_app_client.py │ └── osc_app_server.py ├── sentry_utils.py ├── service │ ├── __init__.py │ ├── main.py │ └── utils.py ├── tests │ ├── __init__.py │ ├── address_qrcode.png │ ├── etheroll │ │ ├── __init__.py │ │ ├── test_settings.py │ │ └── test_utils.py │ ├── service │ │ ├── test_main.py │ │ └── test_utils.py │ ├── test_import.py │ ├── ui │ │ ├── README.md │ │ ├── __init__.py │ │ └── test_etheroll_ui.py │ └── utils.py ├── testsuite.py └── version.py ├── main.py ├── python-for-android ├── README.md └── recipes │ ├── cytoolz │ └── __init__.py │ └── lru-dict │ └── __init__.py ├── resource.py └── websockets.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/README.md -------------------------------------------------------------------------------- /blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/blacklist.txt -------------------------------------------------------------------------------- /dockerfiles/Dockerfile-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/dockerfiles/Dockerfile-android -------------------------------------------------------------------------------- /dockerfiles/Dockerfile-fdroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/dockerfiles/Dockerfile-fdroid -------------------------------------------------------------------------------- /dockerfiles/Dockerfile-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/dockerfiles/Dockerfile-linux -------------------------------------------------------------------------------- /dockerfiles/env.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/dockerfiles/env.list -------------------------------------------------------------------------------- /docs/Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/Debugging.md -------------------------------------------------------------------------------- /docs/DeployContract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/DeployContract.md -------------------------------------------------------------------------------- /docs/HowToTransferOut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/HowToTransferOut.md -------------------------------------------------------------------------------- /docs/MiningTestnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/MiningTestnet.md -------------------------------------------------------------------------------- /docs/Oraclize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/Oraclize.md -------------------------------------------------------------------------------- /docs/Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/Release.md -------------------------------------------------------------------------------- /docs/Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/Settings.md -------------------------------------------------------------------------------- /docs/Troubleshoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/Troubleshoot.md -------------------------------------------------------------------------------- /docs/iOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/iOS.md -------------------------------------------------------------------------------- /docs/images/etheroll-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/images/etheroll-logo.png -------------------------------------------------------------------------------- /docs/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/images/icon.png -------------------------------------------------------------------------------- /docs/images/preview_nexus_6p.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/images/preview_nexus_6p.xcf -------------------------------------------------------------------------------- /docs/root/etc/udev/rules.d/51-android.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/docs/root/etc/udev/rules.d/51-android.rules -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/setup.py -------------------------------------------------------------------------------- /src/etherollapp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/CHANGELOG.md -------------------------------------------------------------------------------- /src/etherollapp/env.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/env.env -------------------------------------------------------------------------------- /src/etherollapp/etheroll/about.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/about.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/about.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/addressbutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/addressbutton.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/constants.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/controller.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/controller.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/controller.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/createnewaccount.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/createnewaccount.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/createnewaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/createnewaccount.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/customtoolbar.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/customtoolbar.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/customtoolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/customtoolbar.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/flashqrcode.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/flashqrcode.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/flashqrcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/flashqrcode.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/importkeystore.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/importkeystore.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/importkeystore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/importkeystore.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/lazyscreenmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/lazyscreenmanager.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/passwordform.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/passwordform.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/passwordform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/passwordform.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/roll.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/roll.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/roll.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/roll_results.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/roll_results.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/roll_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/roll_results.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/scroll_view_spinner.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/scroll_view_spinner.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/scroll_view_spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/scroll_view_spinner.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/scrollablelabel.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/scrollablelabel.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/scrollablelabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/scrollablelabel.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/send.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/send.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/send.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/settings.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/settings_screen.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/settings_screen.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/settings_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/settings_screen.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/store.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/switchaccount.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/switchaccount.kv -------------------------------------------------------------------------------- /src/etherollapp/etheroll/switchaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/switchaccount.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/ui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/ui_utils.py -------------------------------------------------------------------------------- /src/etherollapp/etheroll/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/etheroll/utils.py -------------------------------------------------------------------------------- /src/etherollapp/osc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/osc/README.md -------------------------------------------------------------------------------- /src/etherollapp/osc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/etherollapp/osc/osc_app_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/osc/osc_app_client.py -------------------------------------------------------------------------------- /src/etherollapp/osc/osc_app_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/osc/osc_app_server.py -------------------------------------------------------------------------------- /src/etherollapp/sentry_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/sentry_utils.py -------------------------------------------------------------------------------- /src/etherollapp/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/etherollapp/service/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/service/main.py -------------------------------------------------------------------------------- /src/etherollapp/service/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/service/utils.py -------------------------------------------------------------------------------- /src/etherollapp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/etherollapp/tests/address_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/address_qrcode.png -------------------------------------------------------------------------------- /src/etherollapp/tests/etheroll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/etherollapp/tests/etheroll/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/etheroll/test_settings.py -------------------------------------------------------------------------------- /src/etherollapp/tests/etheroll/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/etheroll/test_utils.py -------------------------------------------------------------------------------- /src/etherollapp/tests/service/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/service/test_main.py -------------------------------------------------------------------------------- /src/etherollapp/tests/service/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/service/test_utils.py -------------------------------------------------------------------------------- /src/etherollapp/tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/test_import.py -------------------------------------------------------------------------------- /src/etherollapp/tests/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/ui/README.md -------------------------------------------------------------------------------- /src/etherollapp/tests/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/etherollapp/tests/ui/test_etheroll_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/ui/test_etheroll_ui.py -------------------------------------------------------------------------------- /src/etherollapp/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/tests/utils.py -------------------------------------------------------------------------------- /src/etherollapp/testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/testsuite.py -------------------------------------------------------------------------------- /src/etherollapp/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/etherollapp/version.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/main.py -------------------------------------------------------------------------------- /src/python-for-android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/python-for-android/README.md -------------------------------------------------------------------------------- /src/python-for-android/recipes/cytoolz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/python-for-android/recipes/cytoolz/__init__.py -------------------------------------------------------------------------------- /src/python-for-android/recipes/lru-dict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/python-for-android/recipes/lru-dict/__init__.py -------------------------------------------------------------------------------- /src/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/resource.py -------------------------------------------------------------------------------- /src/websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreMiras/EtherollApp/HEAD/src/websockets.py --------------------------------------------------------------------------------