diff --git a/config.json b/config.json index 8cffb1d..b153b56 100644 --- a/config.json +++ b/config.json @@ -1,4 +1,4 @@ { "title": "Verus Coin Wiki", - "additionalFooterText": "© 2020 The Verus Foundation" + "additionalFooterText": "© 2020 The Verus Foundation " } diff --git a/faq-allos/faq-allos02_average_time_to_find_a_block_manual_calculation.md b/faq-allos/faq-allos02_average_time_to_find_a_block_manual_calculation.md index d7a5159..b5622f3 100644 --- a/faq-allos/faq-allos02_average_time_to_find_a_block_manual_calculation.md +++ b/faq-allos/faq-allos02_average_time_to_find_a_block_manual_calculation.md @@ -2,24 +2,21 @@ # Question: I'm mining since XYZ with XYZ, why I haven't found a block yet? -average_time_to_find_one_block = ( NetworkHashrate / LocalHashrate ) * BlockTime +$$ Average Time To Find One Block = ( \frac{NetworkHashrate}{LocalHashrate} ) * BlockTime $$ One block = 24 coins (as now) NetworkHashrate = retrieved by `getmininginfo` command from CLI LocalHashrate = retrieved by `getmininginfo` command BlockTime = 60 seconds (average) -$$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$ - -$$ average_time_to_find_one_block = ( \frac{NetworkHashrate}{LocalHashrate} ) * 60 $$ Real example with - 24 threads Intel Skylake 2.0Ghz - -$$ average_time_to_find_one_block = ( 12527490696 / 9983712 ) * 60 $$ -$$ average_time_to_find_one_block = 75.287 seconds (20,91 hours) $$ +$$ Average Time To Find One Block = ( \frac{12527490696}{9983712} ) * 60 $$ +$$ Average Time To Find One Block = 75.287 seconds (20,91 hours) $$ bear in mind that these are average times to find a block. In real life you may hit a block much sooner or later after finding the last. In the long run it averages out to the values predicted. (submitted by @TexWiller, edited by Oink.vrsc@) -note: last revision date 2020-02-25. +note: last revision date 2020-02-26 diff --git a/faq-allos/faq-allos03_mine_rewards_to_a_single_verus_wallet_gui_+_cli.md b/faq-allos/faq-allos03_mine_rewards_to_a_single_verus_wallet_gui_+_cli.md index 9d2ad40..dba80b0 100644 --- a/faq-allos/faq-allos03_mine_rewards_to_a_single_verus_wallet_gui_+_cli.md +++ b/faq-allos/faq-allos03_mine_rewards_to_a_single_verus_wallet_gui_+_cli.md @@ -1,33 +1,49 @@ -# Question: How do I direct all my mined rewards to a single Verus wallet? +# Question: How do I direct all my solo mined rewards to a single Verus wallet? +Attention: Read it completely before using. -IN AGAMA GUI +## Verus `Wallet.dat`, Chaindata & `VRSC.conf` standard locations +Linux: `~/.Komodo/VRSC` +Mac OS: `~/Library/Application Support/Komodo/VRSC` +Windows 10: `%AppData%\Roaming\Komodo\VRSC\` + +## Prerequisites +* Have a __native__ VRSC wallet running + +## In Verus Desktop +In Verus Desktop, there is at this moment no way to enter an address to mine to. However, editing the `VRSC.conf` can be done to achive our goal: +* In the receive window of your wallet, click the hamburger (three vertical dots) next to the address you want to receive your rewards in and click `Copy Public Key`. +* Close down Verus Desktop. +* Edit `VRSC.conf`(see standard locations at the top) and add the line `pubkey=THELONGSTRINGCOPIED`. +* Save and exit. +* Start Verus Desktop as you normally do. + +## In Agama Wallet Step 1 - First get your wallet address you want to mine to: -- If you don't have an address, click "Receive", click "Get New Address" and choose "Transparent Address" from the drop down. -- +* If you don't have an address, click "Receive", click "Get New Address" and choose "Transparent Address" from the drop down. Step 2 - Next we need to retrieve our pubkey, -- go to "settings" and click on "". -- In the section, click on "Select Native Coin" for a dropdown list and select "VRSC native". -- Below "Type CLI compatible command", enter "validateaddress " and paste the address you copied. -- Click on "Execute" -- From the output find the long string after "pubkey", copy without the quotation marks. +* click on the hamburg next to the address that you want to receive the rewards in and click `copy pubkey` Step 3 - Set your PubKey -- Go to 'Settings', 'App Config (config.json)' and enter your pubkey(THELONGSTRINGCOPIED) into the 'Pubkey VRSC mining key' field. -- Click 'Save app config' to save these settings. +* Go to 'Settings', 'App Config (config.json)' and enter your pubkey(THELONGSTRINGCOPIED) into the 'Pubkey VRSC mining key' field. +* Click 'Save app config' to save these settings. +* Restart Agama -IN VERUS-CLI +## In Verus CLI Step 1 - First get your wallet address you want to mine to: You can find an address if you already have previous transactions, or you can create a new one. To find an address from a previous transaction, use the command line verus listtransactions and copy the address found after "address". -To generate a new wallet address, use the command line verus "getnewaddress" and a new address will be created. +To generate a new wallet address, use the command line `verus getnewaddress` and a new address will be created. -Step 2 - Next, using your new address, enter the command with verus-cli verus validateaddress. From the output find the long string after "pubkey", copy without the quotation marks. +Step 2 - Next, using your new address, enter the command with verus-cli `verus validateaddress`. From the output find the long string after "pubkey", copy without the quotation marks. Step 3 - Set your PubKey -Last, use this pubkey when starting your daemon by adding the following line to the end of your command, just before the "&" sign: -pubkey=THELONGSTRINGCOPIED +* Option 1: use this pubkey when starting your daemon by adding the following line to the end of your command, just before the "&" sign: -pubkey=THELONGSTRINGCOPIED +* Option 2: edit your `VRSC.conf` and add the line `pubkey=THELONGSTRINGCOPIED`. Then start your whallet as you are used to. Your rewards will now be mined to that address. It would be a good idea to keep notes and associate the wallet address with the pubkey...also to double check that you did validate the correct pubkey for the wallet address, making sure you made no errors. (submitted by @Oliver Westbrook, edited by Oink.vrsc@) + +note: last revision date 2020-02-24. diff --git a/faq-allos/faq-allos04_consolidate_multiple_wallet.dat_files_in_one.md b/faq-allos/faq-allos04_consolidate_multiple_wallet.dat_files_in_one.md index d1b1223..1a479d5 100644 --- a/faq-allos/faq-allos04_consolidate_multiple_wallet.dat_files_in_one.md +++ b/faq-allos/faq-allos04_consolidate_multiple_wallet.dat_files_in_one.md @@ -1,13 +1,25 @@ # Question: How to consolidate multiple `wallet.dat` files in one? +Attention: Read it completely before using. + +### Verus `Wallet.dat`, Chaindata & `VRSC.conf` standard locations +Linux: `~/.Komodo/VRSC` +Mac OS: `~/Library/Application Support/Komodo/VRSC` +Windows 10: `%AppData%\Roaming\Komodo\VRSC\` + ## Procedure -1) Edit the VRSC.conf file on each instance you have, adding the following line: exportdir=/LOCAL_PATH/ (ie /home/user/) -2) Restart your wallet -3) Issue the following command: `z_exportwallet FILENAME` (ie z_exportwallet export_instance01, the filename cannot have a `.` in it.) -4) Copy the generated file to the machine who host your main wallet -5) Issue the following command (on the "main" verus-cli): `z_importwallet /LOCAL_PATH/FILENAME` (ie /home/user/export_instance01) +1. Edit the `VRSC.conf` file on each instance you have, adding the following line: `exportdir=/LOCAL_PATH/` (ie /home/user/) +2. Restart your wallet +3. Issue the following command: `z_exportwallet FILENAME` (ie z_exportwallet export_instance01, the filename cannot have a `.` in it.) +4. Copy the generated file to the machine who host your main wallet +5. Issue the following command (on the "main" verus-cli): `z_importwallet /LOCAL_PATH/FILENAME` (ie /home/user/export_instance01) -Note: for the location of VRSC.conf in different OS's, please check [Verus Wallet & VRSC.conf standard locations](#24_wallet.dat_and_vrsc.conf_location.md) +note: These commands can be given in +* CLI wallet: `./verus z_exportwallet FILENAME`& `./verus z_importwallet /LOCAL_PATH/FILENAME` +* Verus Desktop in `settings`, `coin settings`: `run z_exportwallet FILENAME`& `run z_importwallet /LOCAL_PATH/FILENAME` +* Verus Agama in `settings`, ``: `z_exportwallet FILENAME`& `z_importwallet /LOCAL_PATH/FILENAME` (submitted by @TexWiller) + +note: last revision date 2020-02-24. diff --git a/faq-allos/faq-allos05_reward_received_per_blocknummer.md b/faq-allos/faq-allos05_reward_received_per_blocknummer.md index 34ee946..56b831b 100644 --- a/faq-allos/faq-allos05_reward_received_per_blocknummer.md +++ b/faq-allos/faq-allos05_reward_received_per_blocknummer.md @@ -19,3 +19,5 @@ Years 5+6: Block 2328480 - 3379679 ==> 6 VRSC reward ==> 6,307,200 VRSC total th All rewards equal or over 192 VRSC are time locked to mature at a random block between 129,600 and 1,181,520 (submitted by @keda666, edited by Oink.vrsc@) + +note: last review date 2020-02-25. diff --git a/faq-allos/faq-allos06_pos,_halving,_block_reward.md b/faq-allos/faq-allos06_pos,_halving,_block_reward.md index 5958767..fcb5b35 100644 --- a/faq-allos/faq-allos06_pos,_halving,_block_reward.md +++ b/faq-allos/faq-allos06_pos,_halving,_block_reward.md @@ -11,4 +11,8 @@ See your own percentage of total coins possible to stake, and pay attention to t The spreadsheet will also show how many days until the next halvings. The calculation of timelocked coins being unlocked is based on an average for the entire period, but should be fairly accurate, and is included in the total of staking coins. -(submitted by @Cragorn, edited by Oink.vrsc@) +note: Verus Desktop uses the live info from the blockchain with regards to locked coins, coins in z-addresses, current coinsupply, minimum stake age of UTXOs and staking difficulty to display real-time predictions of your profitability on your staking balance. + +(submitted by Cragorn.vrsc@, additions by Oink.vrsc@) + +note: last revision date 2020-02-24. diff --git a/faq-allos/faq-allos13_how_does_staking_work.md b/faq-allos/faq-allos13_how_does_staking_work.md index 7a4de7d..80d7967 100644 --- a/faq-allos/faq-allos13_how_does_staking_work.md +++ b/faq-allos/faq-allos13_how_does_staking_work.md @@ -11,6 +11,8 @@ Example: I have 300 coins in a public/transparent address / 300.000 in public wa Regarding the Verus debug.log: “ No eligible staking transaction found“. It means that you are staking but have not received a reward yet. @miketout will change the message soon. Regarding time locked coins: -The Zcash protocol requires you to send all coins received by mining (on wallet, not pool mining) or staking (reward transactions, also on wallet, not pool staking) once unlocked to a private address and then to a public/transparent address before you can use them either for staking or for making transactions (that’s how you make use of your rewarded coins = coinbase coins). So, once your coins loose their time lock, you can unlock those coins as described in "HOW-TO Shield Verus Coin via the CLI.md". Once you've transferred the coins from your private address back to (one of) your public / transparent address(es) and you’ll automatically start staking. +The Zcash protocol requires you to send all coins received by mining (on wallet, not pool mining) or staking (reward transactions, also on wallet, not pool staking) once unlocked to a private address and then to a public/transparent address before you can use them either for staking or for making transactions (that’s how you make use of your rewarded coins = coinbase coins). So, once your coins loose their time lock, you can unlock those coins as described in ["Shield Verus Coins via Command Line Interface]"(#!how-to/how-to_shield_via_cli.md). Once you've transferred the coins from your private address back to (one of) your public / transparent address(es) and you’ll automatically start staking. (submitted by @karero, edited by Oink.vrsc@) + +note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos15_how_can_i_tell_the_difference_between_staked_and_mined_coins.md b/faq-allos/faq-allos15_how_can_i_tell_the_difference_between_staked_and_mined_coins.md index 41fee55..4ab750a 100644 --- a/faq-allos/faq-allos15_how_can_i_tell_the_difference_between_staked_and_mined_coins.md +++ b/faq-allos/faq-allos15_how_can_i_tell_the_difference_between_staked_and_mined_coins.md @@ -1,17 +1,28 @@ # Question: How can I tell the difference between staked and mined coins? +## CLI: + You can check this in the VerusExplorer https://explorer.veruscoin.io/ -CLI: -1) Check last 10 transactions in the CLI. Use `listtransactions`. -2) Copy the blockhash of the received award -3) Add it at the end of https://explorer.veruscoin.io/api/getblock? -(like this: links2 https://explorer.veruscoin.io/api/getblock?hash=9e6fa91356211a554c580c90ec9c2067dd420ff74c7d33481775793f7b0e7f03 – so this one is minted....) +1. Check last 10 transactions in the CLI. Use `listtransactions`. +2. Copy the blockhash of the received award +3. Add it at the end of https://explorer.veruscoin.io/api/getblock? + +Hint: An example: https://explorer.veruscoin.io/api/getblock?hash=9e6fa91356211a554c580c90ec9c2067dd420ff74c7d33481775793f7b0e7f03 – so this one is minted.... + +## Verus Desktop: + +In Verus Desktop, simply go to your Mining Dashboard and enter into Verus details. +Scroll down to the bottom of the page. It will list the rewards as `mined` or `minted` in green. +The TXIDs that staked the minted rewards are shown in blue. + +## Verus Agama: -GUI: In the GUI you can also click yourself thru to that information. -1) Click on the magnifying glass all the way on the right of the transaction. -2) On the pop-up click on "Open in the VRSC Explorer" bottom left. -3) In the VRSC explorer click on the block hash value (in light blue) – now the block hash is displayed as the title of the box. -4) Click on the info "i" on the right and click on "search": in the result displayed for blocktype 'mined' or 'minted'.(edited) +1. Click on the magnifying glass all the way on the right of the transaction. +2. On the pop-up click on "Open in the VRSC Explorer" bottom left. +3. In the VRSC explorer click on the block hash value (in light blue) – now the block hash is displayed as the title of the box. +4. Click on the info "i" on the right and click on "search": in the result displayed for blocktype 'mined' or 'minted'.(edited) (submitted by karero, edited by Oink.vrsc@) + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos16_how_can_i_check_my_immature_balance_in_the_gui.md b/faq-allos/faq-allos16_how_can_i_check_my_immature_balance_in_the_gui.md index d3cbbe3..bb51f8a 100644 --- a/faq-allos/faq-allos16_how_can_i_check_my_immature_balance_in_the_gui.md +++ b/faq-allos/faq-allos16_how_can_i_check_my_immature_balance_in_the_gui.md @@ -1,11 +1,19 @@ # Question: How can I check my immature balance in the Graphic User Interface? -1) In the Agama wallet click on the hamburger menu (the three stripes) on the top right -2) click on Settings -3) click on the last item CLI -4) Select VRSC as coin -6) Type the following command: "getwalletinfo" -7) click "Execute" -8) scroll down and find "immature_balance": which will give you the amount of time-locked coins in your wallet. +## Verus Desktop + +Verus Desktop shows your immature balance in your wallet dashboard, between the `Transparant Balance` and `Private Balance` +. + +## Agama +1. In the Agama wallet click on the hamburger menu (the three stripes) on the top right +2. click on `Settings` +3. click on the item ` CLI` +4. Select `VRSC` as coin +6. Type the following command: `getwalletinfo` +7. click `Execute` +8. scroll down and find "immature_balance": which will give you the amount of time-locked coins in your wallet. (submitted by @karero) + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos17_unshield_coin_rewards_and_get_them_staking_in_cli.md b/faq-allos/faq-allos17_unshield_coin_rewards_and_get_them_staking_in_cli.md index 6644740..c53afcc 100644 --- a/faq-allos/faq-allos17_unshield_coin_rewards_and_get_them_staking_in_cli.md +++ b/faq-allos/faq-allos17_unshield_coin_rewards_and_get_them_staking_in_cli.md @@ -6,7 +6,7 @@ The CLI help shows the command format for Linux and MacOS. On the native windows * In windows command prompt, substitute the shown `"`-character with the `\"`-characters. * In windows command prompt, omit the preceding `./`. -Example: In Linux the command: +Note: As an example, in Linux the command: `./verus z_sendmany my_private_address_without_quotationmarks '[{"address":"my_transparent_address","amount":95.9998}]'` should be entered on the Windows command prompt as: `verus z_sendmany my_private_address_without_quotationmarks "[{\"address\":\"my_transparent_address\",\"amount\":95.9998}]"` @@ -26,3 +26,5 @@ after a few minutes (operations from private addresses are a bit time consuming) Note: I am always using the same private address. (submitted by @karero, based on @dukeleto) + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos18_your_wallet.dat_is_not_matching_the_blockchain._please_restart_the_wallet_with_-reindex_param.md b/faq-allos/faq-allos18_your_wallet.dat_is_not_matching_the_blockchain._please_restart_the_wallet_with_-reindex_param.md index a925deb..2db237f 100644 --- a/faq-allos/faq-allos18_your_wallet.dat_is_not_matching_the_blockchain._please_restart_the_wallet_with_-reindex_param.md +++ b/faq-allos/faq-allos18_your_wallet.dat_is_not_matching_the_blockchain._please_restart_the_wallet_with_-reindex_param.md @@ -1,10 +1,12 @@ # Question: ERROR: Your wallet.dat is not matching the blockchain. Please restart the wallet with -reindex param. + It seems you probably trying to move coinbase coins that you must move them through a private address (zaddress) first by shielding your coinbases, which is required by Verus blockchain rules. -To do this, you must: +## Peocedure + 1. go to the "Receive" screen and make sure you have a private address (starting with `zs`), if you don't have that create one. 2. Copy the new private address to your clipboard -3. Go to the "Mining" screen, enet Verus and select "Shield Rewards" +3. Go to the "Mining" screen, select Verus and select "Shield Rewards" 4. Leave "All unshielded funds" as the source and paste the new zaddress into the destination 5. Click on "Continue" 6. Wait a while until you have a private balance showing on the Wallet screen diff --git a/faq-allos/faq-allos19_what_should_i_do_if_i_end_up_on_my_own_fork_because_of_a_network_issue_or_having_an_old_version_of_the_wallet.md b/faq-allos/faq-allos19_what_should_i_do_if_i_end_up_on_my_own_fork_because_of_a_network_issue_or_having_an_old_version_of_the_wallet.md index 02db617..14f3023 100644 --- a/faq-allos/faq-allos19_what_should_i_do_if_i_end_up_on_my_own_fork_because_of_a_network_issue_or_having_an_old_version_of_the_wallet.md +++ b/faq-allos/faq-allos19_what_should_i_do_if_i_end_up_on_my_own_fork_because_of_a_network_issue_or_having_an_old_version_of_the_wallet.md @@ -1,9 +1,11 @@ # Question: What should I do if I end up on my own fork because of a network issue or having an old version of the wallet? -Answer: +## Procedure For Windows GUI or CLI users. -1.) Stop the wallet/mining process by cleanly shutting down the program. -2.) Check [#!../how-to/](HOW-TO Backup, Install or Update and Bootstrap your wallet.md) on how to efficiently rectify the problem. -3.) Do not be dismayed if it seems that your mining rewards suddenly seem to come to a halt. Remember, when you mine to the wrong chain rewards can come in very quickly, but they are worth nothing. +1. Stop the wallet/mining process by cleanly shutting down the program. +2. Follow the procedure in [HOW-TO Backup, Install or Update and Bootstrap your wallet.md](#!how-to/how-to_bootstrap.md) to efficiently rectify the problem. +3. Do not be dismayed if it seems that your mining rewards suddenly seem to come to a halt. Remember, when you mine to the wrong chain rewards can come in very quickly, but they are worth nothing. (submitted by @jimboscott, Edited by Oink.vrsc@) + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos20_i_followed_the_procedure_in_faq_19_and_am_still_having_problems_with_my_wallet.md b/faq-allos/faq-allos20_i_followed_the_procedure_in_faq_19_and_am_still_having_problems_with_my_wallet.md index f802fc9..d21f239 100644 --- a/faq-allos/faq-allos20_i_followed_the_procedure_in_faq_19_and_am_still_having_problems_with_my_wallet.md +++ b/faq-allos/faq-allos20_i_followed_the_procedure_in_faq_19_and_am_still_having_problems_with_my_wallet.md @@ -1,49 +1,52 @@ -# Question: I followed the procedure in FAQ 19 and am still having problems with my wallet. +# Question: I followed the procedure and am still having problems with my wallet. -To completely reset your wallet in the event of a fork, particularly if you've already followed the FAQ 19 procedure, follow the steps below. +To completely reset your wallet in the event of a fork, particularly if you've already followed [this procedure](#!faq-allos/faq-allos19_what_should_i_do_if_i_end_up_on_my_own_fork_because_of_a_network_issue_or_having_an_old_version_of_the_wallet.md), follow the steps below. -1. Open your `VRSC.conf` file for editing. - On windows this is located at `%AppData%\Komodo\VRSC\VRSC.conf` - On linux it is located at `~/.komodo/VRSC/VRSC.conf` - On MacOS it is located at `~/Library/Application Support/Komodo/VRSC` - -2. Add a line to `VRSC.conf` containing - (mac or linux) - `exportdir=/home//` - - (or on windows) - `exportdir=c:\Users\Desktop\` +Tip: `VRSC.conf` is standard located in: +* On windows this is located at `%AppData%\Komodo\VRSC\VRSC.conf` +* On linux it is located at `~/.komodo/VRSC/VRSC.conf` +* On MacOS it is located at `~/Library/Application Support/Komodo/VRSC` -3. Save the file and stop verusd for Agama just exit and wait for it to close completely. For the linux cli run `./verus stop`, or for the windows cli run `verus.bat stop`. +## Procedure +1. Open your `VRSC.conf` file for editing. +2. Add a line to `VRSC.conf` containing + (mac or linux) + `exportdir=/home//` + (or on windows) + `exportdir=c:\Users\Desktop\` +3. Save the file and stop verusd for Windows-Desktop or Agama, just exit and wait for it to close completely. For the linux cli run `./verus stop`, or for the windows cli run `verus.bat stop`. 4. Once your wallet is finished closing make a backup of your `wallet.dat` file somewhere safe. `wallet.dat` is located in the same directory as your configuration file (see above). To make the backup just copy it to another directory, make sure to leave the original there for the time being. - -5. Now restart your wallet by launching Agama or running verusd for the CLI. - +5. Now restart your wallet by launching Verus Desktop, Agama or running verusd for the CLI. 6. Now we'll export the wallet (this produces a different kind of file from what we did above). - (Agama) - Go to settings, scroll to the bottom and click CLI, select VRSC in that section, then below type z_exportwallet mywalletexport and click the button below to run it. - (linux CLI) - run `./verus z_exportwallet mywalletexport` - (win CLI) - run `verus.bat z_exportwallet mywalletexport` + * Verus Desktop: + Go to `Settings`, `Coin Settings` en click in the textbox shown there. + Enter `run z_exportwallet mywalletexport` en press enter to execute the command. + * Agama: + Go to settings, scroll to the bottom and click CLI, select VRSC in that section. + Then below type `z_exportwallet mywalletexport` and click the button below to run it. + * linux CLI: + run `./verus z_exportwallet mywalletexport` + * win CLI: + run `verus.bat z_exportwallet mywalletexport` The exported wallet should be a file called `mywalletexport` in the location you set for exportdir in `VRSC.conf`. Keep this file secure, it has your plaintext private keys. Verify that the file is there and isn't empty. - -7. Stop Verus again by closing Agama or running `./verus stop` for the linux CLI or `verus.bat stop` for the windows CLI. - -8. Making ABSOLUTELY SURE you have both the mywalletexport file and your wallet.dat backup in a safe place, delete your komodo/VRSC directory and everything in it (you can optionally leave your VRSC.conf file, but everything else there should be deleted. - +7. Stop Verus again by closing Verus-Desktop, Agama or running `./verus stop` for the linux CLI or `verus.bat stop` for the windows CLI. +8. Making ABSOLUTELY SURE you have both the `mywalletexport` file and your `wallet.dat` backup in a safe place, delete your komodo/VRSC directory and everything in it (you can optionally leave your VRSC.conf file, but everything else there should be deleted. 9. At this point make sure you're on the latest version for your wallet by going to https://veruscoin.io/ and checking the downloads section. If you need to upgrade do so now, before starting your wallet again. - -10. Restart your wallet by launching Agama or running verusd for the CLI. Allow it to start syncing. - +10. Restart your wallet by launching Verus-Desktop, Agama or running verusd for the CLI. Allow it to start syncing. 11. Once it has begun syncing, you can import your wallet. In either case, replace and click the button below to run it. - (linux CLI) - Run `./verus z_importwallet ` - (win CLI) - Run `verus.bat z_importwallet ` + * Verus-Desktop: + Go to `Settings`, `Coin Settings` en click in the textbox shown there. + Enter `run z_importwallet ` en press enter to execute the command. + * Agama: + Go to settings, scroll to the bottom and click CLI, select VRSC in that section. + Then below type `z_importwallet ` and click the button below to run it. + * linux CLI: + Run `./verus z_importwallet ` + * win CLI: + Run `verus.bat z_importwallet ` Depending on the number of addresses in your wallet and how far along you are on re-syncing, this may take several minutes to complete. Your balances will adjust as the chain syncs, as it only knows about the transactions that have happened in the blocks it has received and scanned. That means your balance will adjust as new blocks are scanned and won't reflect an accurate balance until you are fully synced. + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos21_mining_pools.md b/faq-allos/faq-allos21_mining_pools.md index ca2a1ad..b8a05fd 100644 --- a/faq-allos/faq-allos21_mining_pools.md +++ b/faq-allos/faq-allos21_mining_pools.md @@ -14,10 +14,12 @@ https://vrsc.dev-codex.com/ http://vrsc.52hash.com/ https://vrsc.ginasismining.com/ https://vrsc.ciscotech.dk/ -http://vrsc.standardpool.club/ -https://zpool.ca +http://www.lepool.com.cn:8088/ +https://zpool.ca/ The statistics of the known public pools can be checked here: https://miningpoolstats.stream/veruscoin Payouts from mining pools do not need to be shielded first. The mining pool has allready taken care of that. + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos22_staking_pools.md b/faq-allos/faq-allos22_staking_pools.md index 543ae77..ea3d5f6 100644 --- a/faq-allos/faq-allos22_staking_pools.md +++ b/faq-allos/faq-allos22_staking_pools.md @@ -1,6 +1,8 @@ # Question: what are the staking pools that I can join? -http://vrsc.ginasismining.com/ - +[Ginasis](https://discord.gg/4FJJRY5) +[Dudezmobi](https://docs.google.com/spreadsheets/d/1Up1WbMuCR21e6TxLae6zjLJePu_RIOVZwqShRj9vVvc/edit?usp=sharing) Payouts from staking pools do not need to be shielded first. The staking pool has already taken care of that. + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos24_wallet.dat_and_vrsc.conf_location.md b/faq-allos/faq-allos24_wallet.dat_and_vrsc.conf_location.md index 14294d5..feb4e94 100644 --- a/faq-allos/faq-allos24_wallet.dat_and_vrsc.conf_location.md +++ b/faq-allos/faq-allos24_wallet.dat_and_vrsc.conf_location.md @@ -2,3 +2,5 @@ Linux: `~/.Komodo/VRSC` Mac OS: `~/Library/Application Support/Komodo/VRSC` Windows 10: `%AppData%\Roaming\Komodo\VRSC\` + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos25_wallet_not_synced.md b/faq-allos/faq-allos25_wallet_not_synced.md index e925d43..dfc92ff 100644 --- a/faq-allos/faq-allos25_wallet_not_synced.md +++ b/faq-allos/faq-allos25_wallet_not_synced.md @@ -1,16 +1,17 @@ # My wallet is stuck on block number XXXX. It does not synchronize properly anymore. -Read it completely before use. -`Wallet & blockchain location`: +note: Read it completely before use. + +#### Wallet & blockchain location: Linux GUI: `~/.Komodo/VRSC` Mac OS: `/Users//Library/Application Support/Komodo/VRSC` Windows 10: `%AppData%\Komodo\VRSC\` -Usefull links: +#### Usefull links: Link 1: [Download latest Wallet](https://veruscoin.io/wallet.html) -Link 2: [Show current blockheight](https://explorer.vrsc.0x03.services/api/getblockcount) +Link 2: [Show current blockheight](https://explorer.veruscoin.io/api/getblockcount) -Procedure: +## Procedure: In case your wallet is not synchronized with the blockchain and restarting Agama doesn't connect to any peers: Compare your blockheight with the one Link 2 above is showing to make sure you are @@ -33,3 +34,5 @@ Make sure you don't remove any folders, or you'll have to use the bootstrap. Then start your wallet as you're used to. Submitted by Oink.vrsc@ & Thoskk.vrsc@ + +Note: last revision date 2020-02-25. diff --git a/faq-allos/faq-allos26_sent_funds_to_b-address.md b/faq-allos/faq-allos26_sent_funds_to_b-address.md index 4ad9730..45f79dd 100644 --- a/faq-allos/faq-allos26_sent_funds_to_b-address.md +++ b/faq-allos/faq-allos26_sent_funds_to_b-address.md @@ -2,7 +2,7 @@ Funds sent to a b-address get locked in the same manner as the original coinbase reward was. However, because they were not sent using a script to lock those coins, they can be retrieved, without waiting the full unlock period (typically between 3 and 27 months). -note: DO NOT send to a b-address +Warning: DO NOT send to a b-address, unless you kow what you're doing. ## procedure @@ -11,13 +11,13 @@ note: DO NOT send to a b-address 1. The easiest way is to obtain the TXID from the send transaction you did in Verus-Desktop to the b-address. Make a copy of the TXID: you will need it for this procedure 2. The next easiest way is look up the b-address on the [explorer](https://explorer.veruscoin.io) and examine the transactions to this address. The youngest transaction is usually the one you need. On the explorer the hash in the transaction is the TXID. Make a copy of the TXID: you will need it for this procedure 3. In Verus Desktop, go to `Settings` --> `Coin Settings` and make sure `VRSC` is selected in the top right. Run the command: -``` +```bash run listunspent 0 '["` with the current blockcount your wallet is on. Replace `}" ` - 1. adapt the above `createrawtransaction` command, making sure to subtract the 0.0001 VRSC free from the amount that is in the original TXID, similar to this example: -``` +```bash run createrawtransaction '[{"txid": "fa5962ebf61ef31867ba73b173433841f8f68578d53b4bb30cfe1432b5820f15", "vout": 10}]' '{"Oink@": 2.20004763}' 890450 ``` In this example, the result is a long HEX-string: -``` +```json 0400008085202f8901150f82b53214fe0cb34b3bd57885f6f841384373b173ba6718f31ef6eb6259fa0a00000000feffffff019b011d0d0000000024050403000000cc1b04030001011504575dc6ae7484c83c0dc97a4218f88e2cbe9b659c7552960d006e960d000000000000000000000000 ``` Copy the string that your command gave as response, from the CLI interface of your wallet. You will need it in the next step. @@ -54,11 +53,11 @@ note: The above command and its result are examples. ***DO NOT*** use data from 2. In the CLI interface adapt and issue this command`run signrawtransaction ` In our example, that would look like this: -``` +```bash run signrawtransaction 0400008085202f8901150f82b53214fe0cb34b3bd57885f6f841384373b173ba6718f31ef6eb6259fa0a00000000feffffff019b011d0d0000000024050403000000cc1b04030001011504575dc6ae7484c83c0dc97a4218f88e2cbe9b659c7552960d006e960d000000000000000000000000 ``` and your command will show a result similar to this example: -``` +```json { "hex": "0400008085202f8901150f82b53214fe0cb34b3bd57885f6f841384373b173ba6718f31ef6eb6259fa0a000000694c67010101012102c9ca37dac14c819a99ce4a71533ab8d3d5e37643ede9c4da0981081a074f75df40531ea63fb3de6111949652111bbe524506999c97c06302715e85aa5c5813519b3eace4ac15bb3950600f968c0c555a935fd826f1a51e00bd2a7f12d035757fc5feffffff019b011d0d0000000024050403000000cc1b04030001011504575dc6ae7484c83c0dc97a4218f88e2cbe9b659c7552960d006e960d000000000000000000000000", "complete": true @@ -68,12 +67,12 @@ and your command will show a result similar to this example: note: The above command and its result are examples. ***DO NOT*** use data from it. Use the results from your own wallet! 3. In the CLI interface adapt and issue this command `sendrawtransaction <"hex"-string from step 2>`. -In our example that would like this: -``` +In our example that would look like this: +```bash run sendrawtransaction 0400008085202f8901150f82b53214fe0cb34b3bd57885f6f841384373b173ba6718f31ef6eb6259fa0a000000694c67010101012102c9ca37dac14c819a99ce4a71533ab8d3d5e37643ede9c4da0981081a074f75df40531ea63fb3de6111949652111bbe524506999c97c06302715e85aa5c5813519b3eace4ac15bb3950600f968c0c555a935fd826f1a51e00bd2a7f12d035757fc5feffffff019b011d0d0000000024050403000000cc1b04030001011504575dc6ae7484c83c0dc97a4218f88e2cbe9b659c7552960d006e960d000000000000000000000000 ``` and your command will show a result similar to this example: -``` +```json 4a5202327e6ed2ce20d3b146155ec92e52fae6c4481362faf6f8a072017b41f1 ``` The result of this command is the TXID of the coins moving out of your b-address. You can monitor the progress in your wallet or look up the TXID in the [explorer](https://explorer.veruscoin.io). diff --git a/faq-linux/faq-lin01_install_linux_cli.md b/faq-linux/faq-lin01_install_linux_cli.md index becfb1f..a7354d5 100644 --- a/faq-linux/faq-lin01_install_linux_cli.md +++ b/faq-linux/faq-lin01_install_linux_cli.md @@ -27,27 +27,28 @@ Link 2: [Download Verus Bootstrap](https://bootstrap.veruscoin.io/) `drwx------ 6 root root 4096 Jul 3 15:56` 5. Download & install the wallet binaries: `wget https://github.com/VerusCoin/VerusCoin/releases/download/v0.6.4-1/Verus-CLI-Linux-v0.6.4-1-amd64.gz` -The downloaded archive contains another archive and a signature text file, enabling the archive within to be verified (You'll need a runnung wallet to do that) + The downloaded archive contains another archive and a signature text file, enabling the archive within to be verified (You'll need a running wallet to do that) + Also: Verify the URL to the latest version from the [Download latest Wallet](https://veruscoin.io/wallet.html) above. `tar -xvf verus-cli-linux-v0.6.4.1.gz` -Now extract the wallet archive: + Now extract the wallet archive: `tar -xvf verus-cli-linux-v0.6.4.1.tar.gz` -Change directory to verus-cli + Change directory to verus-cli `cd verus-cli` -Fetch parameters, takes time, more on slow Internet connection + Fetch parameters, takes time, more on slow Internet connection `./fetch-params` -Install libraries for Verus + Install libraries for Verus `sudo apt-get install libcurl3 g++-multilib -y` -Install Tmux a terminal multiplexer with which you can run threads in the background see https://en.wikipedia.org/wiki/Tmux + Install Tmux a terminal multiplexer with which you can run threads in the background see https://en.wikipedia.org/wiki/Tmux `sudo apt-get install tmux -y` -Start tmux: + Start tmux: `tmux` -Launch Verus Daemon with or without number of threads -(usually number of threads equals number of cores or double of that if the processor support hyper threading well) + Launch Verus Daemon with or without number of threads + (usually number of threads equals number of cores or double of that if the processor support hyper threading well) `./verusd -gen -genproclimit` `./verusd -gen -genproclimit=24` -Once mining is operational – again this may take some time – -you’ll see: 256 mega hashes complete - working -then detach tmux + Once mining is operational – again this may take some time – + you’ll see: 256 mega hashes complete - working + then detach tmux `[ctrl]&b d` Disable login with Root User @@ -60,3 +61,5 @@ Apply no settings: `sudo systemctl restart sshd` (submitted by @karero, corrected by @Glennp, edited by Oink.vrsc@) + +Note: last revision date 2020-02-25. diff --git a/faq-linux/faq-lin02_immature_block_unlock_time.md b/faq-linux/faq-lin02_immature_block_unlock_time.md index b59340a..8d60f17 100644 --- a/faq-linux/faq-lin02_immature_block_unlock_time.md +++ b/faq-linux/faq-lin02_immature_block_unlock_time.md @@ -6,6 +6,7 @@ Keep in mind that the actual number of blocks per day is not always exactly 1440 ## Script: ```bash + #!/bin/bash #Config @@ -27,3 +28,5 @@ do You'll need to enter the correct path to your verus directory and you will need to have the verus daemon running in order to sucessfully run this script. (submitted by @TexWiller, edited by @bigtom) + +Note: last revision date 2020-02-25. diff --git a/faq-linux/faq-lin03_linux_scripts_make_life_easy.md b/faq-linux/faq-lin03_linux_scripts_make_life_easy.md index 966ca38..86fd12d 100644 --- a/faq-linux/faq-lin03_linux_scripts_make_life_easy.md +++ b/faq-linux/faq-lin03_linux_scripts_make_life_easy.md @@ -6,8 +6,13 @@ Following are some bash scriptse to help make managing your Linux-based CLI mine for wallet version prior to 0.5.7, replace verusd with komodod. ## Scripts: -##### MINER SRVC MONITOR & ALERT IF DOWN + +#### MINER SRVC MONITOR & ALERT IF DOWN + Checks for the verusd daemon and if it has stopped emails you. + +##### checkifverusdisrunning.sh + ```bash #!/bin/bash if pgrep -x "verusd" > /dev/null @@ -18,13 +23,16 @@ else fi ``` -##### ALERT ON NEW BLOCKS MINED +#### ALERT ON NEW BLOCKS MINED + Prereq: Create a file called txHistory.txt and put 0 in it, saved to your home folder. The script then compares the current wallet TX count and compares to the txHistory file... so first run it will enter the right number in that file overwriting your 0. Only emails you if the number changes. -```Bash +##### checkfornewblocks.sh + +```bash #!/bin/bash historicalcount=$(cat /home/user/txHistory.txt) @@ -39,23 +47,32 @@ else fi ``` -##### WALLET BACKUP TO SECURED EMAIL (PROTONMAIL SUGGESTED) +#### WALLET BACKUP TO SECURED EMAIL (PROTONMAIL SUGGESTED) + For this script I recommend setting up a new Protonmail account with no association to any other service or your name, 2FA secure it. + +##### backupwallet.sh + ```bash echo "Attached Backup" | mail -s "Merry Backup" -A /home/user/.komodo/VRSC/wallet.dat -a "From: user@yourfullyqualifieddomain.tld" you@youremail.tld ``` Again, these scripts are a little rudementary but they do work! If you're curious my crontab, I'll post it next...to set your cron jobs use the command crontab -e -##### MY CRONTAB +#### Schedule script in CRONTAB + In the following, the `*/5` is every 5 min, the `0` is on the hour every hour, the `0 12` is every day at 12 PM. + +##### CRONTAB + ```bash # m h dom mon dow command */5 * * * * /home/user/checkfornewblocks.sh -0 * * * * /home/user/checkifkomododisrunning.sh +0 * * * * /home/user/checkifverusdisrunning.sh 0 12 * * * /home/user/backupwallet.sh ``` Note: For any emails sent (for backup of dat file for example) make sure to enforce TLS security in postfix by adding the following line to your /etc/postfix/main.cf - `smtp_tls_security_level=encrypt` (submitted by @J Oliver Westbrook) + +Note: last revision date 2020-02-25. diff --git a/faq-linux/faq-lin04_cannot_obtain_lock.md b/faq-linux/faq-lin04_cannot_obtain_lock.md index f9251e3..9807537 100644 --- a/faq-linux/faq-lin04_cannot_obtain_lock.md +++ b/faq-linux/faq-lin04_cannot_obtain_lock.md @@ -19,3 +19,5 @@ You would see verusd with a child process of komodo and all its cli arguments. (submitted by @keda666, solution written by englal.vrsc@) + +Note: last revision date 2020-02-26. diff --git a/faq-linux/faq-lin05_daily_cloud_backup.md b/faq-linux/faq-lin05_daily_cloud_backup.md index 6c76417..ffb9bc9 100644 --- a/faq-linux/faq-lin05_daily_cloud_backup.md +++ b/faq-linux/faq-lin05_daily_cloud_backup.md @@ -45,4 +45,7 @@ rm $DEST_FOLDER$DEST_FILE # Keep only last 6 days - BE SURE to fully understand how it works, as every "rm" command! find $DEST_FOLDER/wallet* -type f -mtime +6 -exec rm {} ; ``` + (submitted by @TexWiller) + +Note: last revision date 2020-02-26. diff --git a/faq-linux/faq-lin08_low_priority_mining.html.md b/faq-linux/faq-lin08_low_priority_mining.html.md index d858d2f..c7cfc02 100644 --- a/faq-linux/faq-lin08_low_priority_mining.html.md +++ b/faq-linux/faq-lin08_low_priority_mining.html.md @@ -21,7 +21,7 @@ Now we'll need to adjust the batchfile to run on low priority: - Run your miner as you normally would, with `nice -n 19 ` placed in front of the command you normally use, for example: `nice -n 19 ./nheqminer -v -l pool.veruscoin.io:9999 -u RVjvbZuqSGLGDm1B9BFkbHWySPKEx4tfjQ.Donator -p x -t 6` - - make sure you replave the pool (`pool.veruscoin.io:9999`) with your prefered pool and the address + - make sure you replace the pool (`pool.veruscoin.io:9999`) with your prefered pool and the address (`RVjvbZuqSGLGDm1B9BFkbHWySPKEx4tfjQ`) with your own address. The address shown in this line is the veruscoin foundation donation address. If desired change the identifier (`Donator`) to a name that easily identifies the miner to you. @@ -31,10 +31,12 @@ Now we'll need to adjust the batchfile to run on low priority: - Run your miner as you normally would, with `nice -n 19 ` placed in front of the command you normally use, for example: `nice -n 19 ./ccminer -a verus -o stratum+tcp://pool.veruscoin.io:9999 -u RVjvbZuqSGLGDm1B9BFkbHWySPKEx4tfjQ.Donator -t 6` - - make sure you replave the pool (`stratum+tcp://pool.veruscoin.io:9999`) with your prefered pool and the address + - make sure you replace the pool (`stratum+tcp://pool.veruscoin.io:9999`) with your prefered pool and the address (`RVjvbZuqSGLGDm1B9BFkbHWySPKEx4tfjQ`) with your own address. The address shown in this line is the veruscoin foundation donation address. If desired change the identifier (`Donator`) to a name that easily identifies the miner to you. Created by Oink.vrsc@. + +Note: last revision date 2020-02-26. diff --git a/faq-linux/faq-lin09_libgomp.so.1.md b/faq-linux/faq-lin09_libgomp.so.1.md index 03a7f60..884fa80 100644 --- a/faq-linux/faq-lin09_libgomp.so.1.md +++ b/faq-linux/faq-lin09_libgomp.so.1.md @@ -1,8 +1,10 @@ # error while loading shared libraries: libgomp.so.1: No such file or directory -When running `./verusd` on an Linux (eg Debian or Devuan), not all dependencies may be installed on default, resulting in the errormessage `error while loading shared libraries: libgomp.so.1: No such file or directory`. +When running `./verusd` on a Linux distro (eg Debian or Devuan), not all dependencies may be installed by default, resulting in the errormessage `error while loading shared libraries: libgomp.so.1: No such file or directory`. To solve this you need to install the libgomp library: `sudo apt-get install libgomp1` Solution supplied by: 0x03.vrsc@ + +Note: creation date 2020-02-12. diff --git a/faq-macos/mac-faq01_obtain_lock.md b/faq-macos/mac-faq01_obtain_lock.md index f9251e3..9807537 100644 --- a/faq-macos/mac-faq01_obtain_lock.md +++ b/faq-macos/mac-faq01_obtain_lock.md @@ -19,3 +19,5 @@ You would see verusd with a child process of komodo and all its cli arguments. (submitted by @keda666, solution written by englal.vrsc@) + +Note: last revision date 2020-02-26. diff --git a/faq-macos/mac-faq02_what_versions_osx.md b/faq-macos/mac-faq02_what_versions_osx.md index 48f6d1a..b2156b6 100644 --- a/faq-macos/mac-faq02_what_versions_osx.md +++ b/faq-macos/mac-faq02_what_versions_osx.md @@ -32,3 +32,5 @@ If you installed on OSX 10.11.x or earlier and need to remove it: 8. Install Agama (Check `Link1` for a smooth install) (submitted by @bigtom, edited by Oink.vrsc@) + +Note: last revision date 2020-02-26. diff --git a/faq-macos/mac-faq03-mining_guide.md b/faq-macos/mac-faq03-mining_guide.md index b17f00c..ff82e35 100644 --- a/faq-macos/mac-faq03-mining_guide.md +++ b/faq-macos/mac-faq03-mining_guide.md @@ -16,8 +16,8 @@ To start mining with your Mac, you will need to have an address to mine to. Poss ~~An exchange address~~ (__***NOT***__ recommended. This is asking for trouble.) An address from a web-wallet An address from a mobile wallet -An address from a Desktop Lite wallet -An address from a desktop Native wallet +An address from a Verus-Desktop Lite wallet +An address from a Verus-Desktop Native wallet ## Procedure: @@ -47,3 +47,5 @@ Now we have an executable file that will run when you doubleclick. 15. Doubleclick `start.command` and your machine will start mining. Created by Oink.vrsc@. + +Note: last revision date 2020-02-26. diff --git a/faq-macos/mac-faq04_low_priority_mining.md b/faq-macos/mac-faq04_low_priority_mining.md index 7cae32c..1754e81 100644 --- a/faq-macos/mac-faq04_low_priority_mining.md +++ b/faq-macos/mac-faq04_low_priority_mining.md @@ -23,9 +23,11 @@ Now we'll need to adjust the batchfile to run on low priority: - Run your miner as you normally would, with `nice -n 19 ` placed in front of the command you normally use, for example: `nice -n 19 ./nheqminer -v -l pool.veruscoin.io:9999 -u RVjvbZuqSGLGDm1B9BFkbHWySPKEx4tfjQ.Donator -p x -t 6` - - make sure you replave the pool (`pool.veruscoin.io:9999`) with your prefered pool and the address + - make sure you replace the pool (`pool.veruscoin.io:9999`) with your prefered pool and the address (`RVjvbZuqSGLGDm1B9BFkbHWySPKEx4tfjQ`) with your own address. The address shown in this line is the veruscoin foundation donation address. If desired change the identifier (`Donator`) to a name that easily identifies the miner to you. Created by Oink.vrsc@. + +Note: last revision date 2020-02-26. diff --git a/faq-windows/winfaq-01_cli_formatting.md b/faq-windows/winfaq-01_cli_formatting.md index 5f45b67..b6f66b6 100644 --- a/faq-windows/winfaq-01_cli_formatting.md +++ b/faq-windows/winfaq-01_cli_formatting.md @@ -7,3 +7,5 @@ The CLI help shows the command format for Linux and MacOS. On the native windows Note: this only applies to giving commands from the windows command prompt. Verus Desktop will accept commands as listed. Created by Oink.vrsc@ + +Note: last revision date 2020-02-26. diff --git a/faq-windows/winfaq-02_low_priority_mining.md b/faq-windows/winfaq-02_low_priority_mining.md index edb96c8..3058a04 100644 --- a/faq-windows/winfaq-02_low_priority_mining.md +++ b/faq-windows/winfaq-02_low_priority_mining.md @@ -33,17 +33,17 @@ Now we'll need to adjust the batchfile to run on low priority: ##### CCMINER: - - Change to the folder you put the three files from the downloaded archive in (`run.vershhash.bat`, `libcrypto-1_1-x64.dll` & `ccminer.exe`) - - edit the `run.vershhash.bat` + - Change to the folder you put the three files from the downloaded archive in (`run.verushhash.bat`, `libcrypto-1_1-x64.dll` & `ccminer.exe`) + - edit the `run.verushhash.bat` - The line, that needs to be adjusted: `ccminer -a verus -o stratum+tcp://na.luckpool.net:3956 -u REoPcdGXthL5yeTCrJtrQv5xhYTknbFbec.Donator -p d=6 -t 8` - adjust the line, so it looks like: `C:\Windows\System32\cmd.exe /c start "ccminerCPUv3.5 VerusPool" /Low "c:\Miners\CCminer 2.0 CPU Release 3.5\ccminer.exe" -a verus -o stratum+tcp://pool.veruscoin.io:9999 -u RVjvbZuqSGLGDm1B9BFkbHWySPKEx4tfjQ.Donator -t 16` - - make sure you replave the pool (`stratum+tcp://pool.veruscoin.io:9999`) with your prefered pool and the address + - make sure you replace the pool (`stratum+tcp://pool.veruscoin.io:9999`) with your prefered pool and the address (`RVjvbZuqSGLGDm1B9BFkbHWySPKEx4tfjQ`) with your own address. The address shown in this line is the veruscoin foundation donation address. If desired change the identifier (`Donator`) to a name that easily identifies the miner to you. - save and exit the file - - run `run.vershhash.bat` to start mining. + - run `run.verushhash.bat` to start mining. Submitted by Oink.vrsc@ diff --git a/how-to/how-to_lite_to_native.md b/how-to/how-to_lite_to_native.md index b30db44..37a9117 100644 --- a/how-to/how-to_lite_to_native.md +++ b/how-to/how-to_lite_to_native.md @@ -1,43 +1,40 @@ -# Guide to change Agama from Lite Mode to Native Mode. +# Guide to change Verus-Desktop from Lite Mode to Native Mode. Attention: Read completely before use. Agama wallet is no longer supported. #### Important General Information -`Agama Wallet location` on different OS: +`VRSC wallet & data location` on different OS: Linux GUI: `~/.Komodo/VRSC` Mac OS: `/Users//Library/Application Support/Komodo/VRSC` Windows 10: `%AppData%\Roaming\Komodo\VRSC\` -#### Necessary files: +#### Necessary files & links: -Link 2: Download Verus Bootstrap +Link 1: [Download Verus Bootstrap](https://bootstrap.veruscoin.io) +Link 2: [Import Lite wallet address in Verus Desktop native](https://wiki.veruscoin.io/#!how-to/how-to_convert-seed-to-wif.md) ## Procedure: -1) Make sure you have your seed phrase and password you use to log into your Lite mode wallet available. -2) First of all make a notition of your address and balance of VRSC you have in your wallet, before closing Agama. -3) Make sure the latest version of Agama Wallet for Verus is installed. - 3a) Download the latest Agama Verus Wallet (Agama is now unsupported) - 3b) Verify the SHA256 checksum of your download, so you have an untampered installer. - 3c) Run the file you just downloaded to install it. -4) Installing the bootstrap: - 4a) Download the bootstrap from Link 2. - 4b) Verify the SHA256 checksum of your download, to verify you have an untampered Bootstrap. - 4c) Unpack (using 7-zip when in Windows) the downloaded archive to `Agama Wallet location`. -5) Getting Agama ready for Native mode: - 5a) Start Agama and select **Native mode** VRSC. - 5b) You will get a red warning message about Zcash params. Dismiss it. - 5c) From the dropdown box, select `Z.cash` and click `Download`. - 5d) As soon as the download is finished, Agama will continu and bring you into your wallet. It will automatically start to synchronize the blockchain. Since we already put the majority of the chain in place, this will take just a few minutes. -6) Importing your existing Address: - 6a) Click `Import Key`. - 6b) Enter your seed in the top field or your WIF in the bottom field. - 6c) Select `Trigger rescan` and click `Import`. - 6d) You get a `Wallet Notification: Address imported` window. Dismiss it. - 6e) Check if your Balance is correct. - -If you followed these steps, you will have updated to the latest version of Agama for verus, installed the bootstrap and imported your existing address into Agama. You can now Stake your balance and use Private (sapling) addresses. - -Attention: Agama wallet is deprecated. This guide is not linked from the main page. It needs updating/reworking to Verus Desktop +1. Make sure you have your seed phrase and password you use to log into your Lite mode wallet available. +2. First of all make a notition of your address and balance of VRSC you have in your wallet, before closing Agama. +3. Make sure the latest version of Agama Wallet for Verus is installed. + 1. Download the latest Agama Verus Wallet (Agama is now unsupported) + 2. Verify the SHA256 checksum of your download, so you have an untampered installer. + 3. Run the file you just downloaded to install it. +4. Installing the bootstrap: + 1. Download the bootstrap from [Link 1](https://bootstrap.veruscoin.io). + 2. Verify the SHA256 checksum of your download, to verify you have an untampered Bootstrap. + 3. Unpack the downloaded archive to `VRSC wallet & data location`. +5. Getting Verus-Desktop ready for Native mode: + 1. Start Agama and select **Native mode** VRSC. + 2. You may get a red warning message about Zcash params. + 3. Verus Desktop will detect if you have the necessary ZCash parameter files and download them if needed. + 4. As soon as the download is finished, Verus-Desktop will continu and bring you into your wallet. It will automatically start to synchronize the blockchain. Since we already put the majority of the chain in place, this will take just a few minutes. +6. Importing your existing Address: + * This procedure is described in detail in: [Import Lite wallet address in Verus Desktop native](https://wiki.veruscoin.io/#!how-to/how-to_convert-seed-to-wif.md). + +If you followed these steps, installed the bootstrap, switched from Lite to Native mode and imported your existing address into Verus-Desktop. You can now stake your balance and use Private (sapling) addresses. Created by Oink.vrsc@ + +Note: last revision date 2020-02-26. diff --git a/index.html b/index.html index 69f65da..5be47af 100644 --- a/index.html +++ b/index.html @@ -171,7 +171,7 @@ +},25);d.done(function(){c()}),a.md.util.wait(2e3).done(function(){c()})})}function e(){if(0!==a("#md-menu a").length){var c=a("#md-menu");c.find('> a[href=""]').attr("data-toggle","dropdown").addClass("dropdown-toggle").attr("href","").append(''),c.find("ul").addClass("dropdown-menu"),c.find("ul li").addClass("dropdown"),a("#md-menu hr").each(function(b,c){var d=a(c),e=d.prev(),f=d.next();e.is("ul")&&e.length>=0&&(e.append(a('
  • ')),d.remove(),f.is("ul")&&(f.find("li").appendTo(e),f.remove()))}),a("#md-menu ul").each(function(b,c){var d=a(c);0===d.find("li").length&&d.remove()}),a("#md-menu hr").replaceWith(a('
  • ')),a("#md-menu > a").wrap("
  • "),a("#md-menu ul").each(function(b,c){var d=a(c);d.appendTo(d.prev()),d.parent("li").addClass("dropdown")}),a("#md-menu li.dropdown").find("h1, h2, h3").each(function(b,c){var d=a(c),e=d.toptext(),f=a('
  • '),f=a("");f.attr("href",a.md.util.getInpageAnchorHref(d.toptext())),f.click(function(b){b.preventDefault();var c=a(this),d=a.md.util.getInpageAnchorText(c.toptext());a.md.scrollToInPageAnchor(d)}),f.text(d.toptext()),e.append(f),i.append(e)}),a(window).resize(function(){c(a("#md-page-menu")),d()}),a.md.stage("postgimmick").subscribe(function(a){a()}),a("#md-left-column").append(e)}}function h(){a("#md-title").wrap('
    '),a("#md-title").wrap('
    '),a("#md-menu").wrap('
    '),a("#md-menu").wrap('
    '),a("#md-content").wrap('
    '),a("#md-content").wrap('
    '),a("#md-body").wrap('
    '),a("#md-body").wrap('
    '),a("#md-title").addClass("col-md-12"),a("#md-content").addClass("col-md-12")}function i(){var b=a('