This repository has been archived by the owner on Sep 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
105 additions
and
789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,13 @@ | ||
# How to transfer out | ||
|
||
Transfering ether to a different address is currently not possible within the application. | ||
However since the keystore is on device, it's possible to access it to withdraw coins. | ||
From the navigation drawer and select "Wallet". | ||
|
||
You can connect your computer to your mobile device and copy over the keystore folder. | ||
Or you can also do it from you mobile phone with any [file manager](https://play.google.com/store/search?q=file) and go to the keystore folder. | ||
If you don't know where you keystore folder is, check from the EtherollApp. | ||
Open the side bar, go to "Wallet" then "Import". The keystore folder location is listed here. | ||
It's usually `/sdcard/etheroll/.config/pyethapp/keystore/` | ||
![Navigation drawer](https://i.imgur.com/6H0b4hu.png) | ||
|
||
Then you can use that keystore file with any wallet such as [MEW](https://www.myetherwallet.com) or [MyCrypto](https://mycrypto.com). | ||
|
||
In the wallet screen click the "Send" tab. | ||
|
||
See related issues: | ||
![Send subscreen](https://i.imgur.com/SOHmSyL.png) | ||
|
||
- <https://github.com/AndreMiras/EtherollApp/issues/80> | ||
- <https://github.com/AndreMiras/EtherollApp/issues/95> | ||
- <https://github.com/AndreMiras/EtherollApp/issues/105> | ||
Make sure you have the correct source and receivers accounts selected. | ||
Put the amount to transfer out and click "Send". Note it's possible to adjust gas fees from the "Settings" menu if needed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Settings screen | ||
|
||
This screen is used to update global application settings. | ||
|
||
![Settings screen](https://i.imgur.com/tzUk8KR.png) | ||
|
||
|
||
## Network | ||
Selects between Mainnet and Testnet (Ropsten) which network should be used for rolling and tranfering out. | ||
|
||
## Gas price | ||
Sets the gas price for all the transactions. | ||
The higher the gas price, the faster the transaction to the contract is validated. | ||
Note that this the gas price used for the Oracle (bet resolution) transaction can't be updated from the app. | ||
To adjust for the best price e recommend using <https://www.ethgasstation.info/>. | ||
|
||
## Persist keystore | ||
This should be enable to backup the (encrypted) private key to the external phone storage (SD card). | ||
Make sure this is always enabled (like in the screenshot) to not lose your key on app uninstall or update. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ETHERSCAN_API_KEY=E9K4A1AC8H1V3ZIR1DAIKZ6B961CRXF2DR | ||
WEB3_INFURA_PROJECT_ID=90d5bc91c74e4c6899001dc189da590f |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import os | ||
|
||
BASE_DIR = os.path.dirname(os.path.dirname(__file__)) | ||
BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) | ||
# default pyethapp keystore path | ||
KEYSTORE_DIR_SUFFIX = ".config/pyethapp/keystore/" | ||
API_KEY_PATH = os.path.join(BASE_DIR, 'api_key.json') | ||
ENV_PATH = os.path.join(BASE_DIR, 'env.env') | ||
NO_ACCOUNT_SELECTED_STRING = 'No account selected' |
Oops, something went wrong.