diff --git a/README.md b/README.md index ec1cd20..1a9beeb 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# MonerujoAE -The Android AEON Wallet +# MonerujoWOW +The Android WOW Wallet ### QUICKSTART -- Download the APK for the most current release [here](https://gitlab.com/monerujo-io/wowwallet) and install it +- Download the APK for the most current release [here](https://gitlab.com/monerujo-io/wowwallet/-/releases) and install it - Run the App and select "Generate Wallet" to create a new wallet or recover a wallet - See the [FAQ](doc/FAQ.md) @@ -10,12 +10,11 @@ The Android AEON Wallet Help us translate Monerujo! You can find instructions [On Taiga](https://taiga.getmonero.org/project/erciccione-monero-localization/wiki/monerujo), and if you need help/support, open an issue or contact the Localization Workgroup. You can find us on the freenode channel `#monero-translations`, also relayed on [MatterMost](https://mattermost.getmonero.org/monero/channels/monero-translations), and matrix/riot. ### Disclaimer -You may lose all your AEON if you use this App. +You may lose all your WOW if you use this App. Always make sure to have your seed words safe. ### HOW TO BUILD Check out [the instructions](doc/BUILDING-external-libs.md) ### Donations -- WOW: Wo4g66NnQsd2XvoLjn9RATRK6QS4w1UXmZrQJwRKn8HX9kqNpoAMbqKi9JmQMz5pMbRdW6Zahjcu57JXcYWk4zVk2w47gu6Dq -- XMR: 4AdkPJoxn7JCvAby9szgnt93MSEwdnxdhaASxbTBm6x5dCwmsDep2UYN4FhStDn5i11nsJbpU7oj59ahg8gXb1Mg3viqCuk -- AEON: WmsfCJfmd6QQ84Rfb2mD1y7ryBzvTiQ8MMngmgRjxDMCCkeuChA9B9ZRNZyQyjgH1zdQMBXeQB9vZhUwPHmLGhyo2nMoE2ARv +- WOW: Wo4g66NnQsd2XvoLjn9RATRK6QS4w1UXmZrQJwRKn8HX9kqNpoAMbqKi9JmQMz5pMbRdW6Zahjcu57JXcYWk4zVk2w47gu6Dq (OpenAlias: monerujo.io) +- XMR: 4AdkPJoxn7JCvAby9szgnt93MSEwdnxdhaASxbTBm6x5dCwmsDep2UYN4FhStDn5i11nsJbpU7oj59ahg8gXb1Mg3viqCuk (OpenAlias: monerujo.io) diff --git a/app/src/main/java/com/m2049r/xmrwallet/util/Helper.java b/app/src/main/java/com/m2049r/xmrwallet/util/Helper.java index 664ad0d..63236dd 100644 --- a/app/src/main/java/com/m2049r/xmrwallet/util/Helper.java +++ b/app/src/main/java/com/m2049r/xmrwallet/util/Helper.java @@ -80,10 +80,10 @@ public class Helper { static public final String NOCRAZYPASS_FLAGFILE = ".nocrazypass"; static public final String BASE_CRYPTO = Crypto.XMR.getSymbol(); + static public final int XMR_DECIMALS = 11; static public final boolean SHOW_EXCHANGERATES = false; static public final boolean ALLOW_SHIFT = false; - static public final int XMR_DECIMALS = 11; static private final String WALLET_DIR = "wallets"; static private final String MONERO_DIR = "monero"; diff --git a/app/src/main/java/com/m2049r/xmrwallet/util/RestoreHeight.java b/app/src/main/java/com/m2049r/xmrwallet/util/RestoreHeight.java index 614fd91..7c39044 100644 --- a/app/src/main/java/com/m2049r/xmrwallet/util/RestoreHeight.java +++ b/app/src/main/java/com/m2049r/xmrwallet/util/RestoreHeight.java @@ -26,10 +26,10 @@ import java.util.TimeZone; import java.util.concurrent.TimeUnit; public class RestoreHeight { - static private RestoreHeight Singleton = null; - static final int DIFFICULTY_TARGET = 300; // seconds + static private RestoreHeight Singleton = null; + static public RestoreHeight getInstance() { if (Singleton == null) { synchronized (RestoreHeight.class) {