From 15193c76b929a70a8722e650417ab5e570c639b7 Mon Sep 17 00:00:00 2001 From: Ami Hazbany Date: Mon, 4 Dec 2023 17:37:31 +0200 Subject: [PATCH 1/2] add single nominator to manual-ubuntu.md --- docs/en/manual-ubuntu.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/docs/en/manual-ubuntu.md b/docs/en/manual-ubuntu.md index aee1ae72..8f4d75d2 100644 --- a/docs/en/manual-ubuntu.md +++ b/docs/en/manual-ubuntu.md @@ -41,16 +41,32 @@ Check out the list of available wallets. For instance, during the installation o ![wallet list](https://raw.githubusercontent.com/ton-blockchain/mytonctrl/master/screens/manual-ubuntu_mytonctrl-wl_ru.png) -## 4. Send the Required Number of Coins to the Wallet and Activate It +## 4. Deploy Single Nominator (optional, more secured) +Go to https://orbs-network.github.io/single-nominator-client/deploy-single-nominator and deploy the single nominator contract. +You will need 2 addresses for the deployment: +* Owner - control the funds and should be a highly secured wallet. +* Validator - operates the validator machine and send transactions to the single nominator. You can use validator_wallet_001 as the validator wallet. + +If the single nominator deployment is successful, you can retrieve the zipped folder titled mytonctrl-sn-files.zip. Download the folder and execute the provided commands on the same machine where you installed mytonctrl: + +```sh +unzip mytonctrl-sn-files.zip +cd mytonctrl-sn-files +chmod +x mytonctrl-add-sn-files.sh +./mytonctrl-add-sn-files.sh +``` + +## 5. Send the Required Number of Coins to the Wallet and Activate It To determine the minimum amount of coins required to participate in one election round, head to **tonmon.xyz** > **Participant stakes**. * Use the `vas` command to display the history of transfers * Activate the wallet using the `aw` command +* If you use **single-nominator**, it is recommended to use the **validator-ui-client** to deposit funds or transfer funds directly to the single-nominator. validator_wallet_001 can be used as the validator address and should contain a sufficient amount exclusively for covering gas fees. ![account history](https://raw.githubusercontent.com/ton-blockchain/mytonctrl/master/screens/manual-ubuntu_mytonctrl-vas-aw_ru.png) -## 5. Your Validator is Now Ready +## 6. Your Validator is Now Ready **mytoncore** will automatically join the elections. It divides the wallet balance into two parts and uses them as a stake to participate in the elections. You can also manually set the stake size: From 19770723353729e0bbc932c3f95c29e38991c5bb Mon Sep 17 00:00:00 2001 From: Ami Hazbany Date: Mon, 4 Dec 2023 17:45:55 +0200 Subject: [PATCH 2/2] update manual-ubuntu.md --- docs/en/manual-ubuntu.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/en/manual-ubuntu.md b/docs/en/manual-ubuntu.md index 8f4d75d2..ffcc7e0b 100644 --- a/docs/en/manual-ubuntu.md +++ b/docs/en/manual-ubuntu.md @@ -47,11 +47,9 @@ You will need 2 addresses for the deployment: * Owner - control the funds and should be a highly secured wallet. * Validator - operates the validator machine and send transactions to the single nominator. You can use validator_wallet_001 as the validator wallet. -If the single nominator deployment is successful, you can retrieve the zipped folder titled mytonctrl-sn-files.zip. Download the folder and execute the provided commands on the same machine where you installed mytonctrl: +If the single nominator deployment is successful, you can retrieve the zipped folder titled mytonctrl-sn-files.zip. Download the folder to the same machine where you installed mytonctrl, extract the files and execute: ```sh -unzip mytonctrl-sn-files.zip -cd mytonctrl-sn-files chmod +x mytonctrl-add-sn-files.sh ./mytonctrl-add-sn-files.sh ```