anthrax314
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Sentinel dVPN Node on Linux === About === Sentinel Releases === Check out our latest releases on the [GitHub Repo](https://github.com/sentinel-official/sentinel/releases) Objective === Enable users to set up a Sentinel dVPN OpenVPN and SOCKS5 Node. Setup Instructions for Sentinel Node hosting === Below are the steps involved in getting a Sentinel dVPN OpenVPN and SOCKS5 Node up and running. 1. Configuring firewall 2. Install docker 3. Running the **Sentinel dVPN** docker image 4. Updating an existing Sentinel dVPN OpenVPN Node ## OpenVPN Sentinel Node To run the sentinel dVPN OpenVPN node in Open VPN, we have to go through the following steps: ### Step 0 --- Configuring Firewall --- Below are the instructions on configuring the firewall 1. First of all, we should open the specific ports on the firewall. Do not open all the ports. 2. UFW or Uncomplicated Firewall is installed by default on Ubuntu. If it has been uninstalled for some reason or needs an update, you can install or update it with `sudo apt-get install ufw` 3. To check the status of the firewall type in terminal `sudo ufw status verbose` 4. If firewall status is inactive, then type the below command to activate it `sudo ufw enable` 5. For OpenVPN to work successfully, type the below command to allow the ports `sudo ufw allow 3000` `sudo ufw allow 1194` 6. Refer to the below image for all the steps explained above. ![](https://i.imgur.com/kkduhwn.png) ### Step 1 --- Installing Docker --- ##### OS Requirements * A 64-bit installation * Version 3.10 or higher of the Linux kernel. As the first step to setting Sentinel dPVN OpenVPN node on Linux, you'll need to install Docker. 1. Update the apt package index: `sudo apt-get update` 2. Install required dependencies to get docker installation script from get.docker.com `sudo apt-get install curl` `curl -fsSL get.docker.com -o /tmp/get-docker.sh` 2. Run the downloaded script to setup & install docker `sudo sh /tmp/get-docker.sh` 3. Add current user to the docker group to give required access `sudo usermod -aG docker $USER` ### Step 2 --- Running the Sentinel dVPN OpenVPN Node --- You can setup and run VPN node in two ways: 1. Quick Run - download docker image from Docker Hub 2. DIY - build your own docker image from the Sentinel code repository #### Method #1 [Download Docker Image from Docker Hub] Using existing docker image: 1. Navigate to the User's home directory `cd ~` 2. Create a new folder to pull the docker image and run it `mkdir -p $HOME/.sentinel` 3. Pull the official Sentinel docker image from Docker Hub & configure the node `sudo docker run -it --privileged --mount type=bind,source=$HOME/.sentinel,target=/root/.sentinel -p 3000:3000 -p 1194:1194/udp sentinelofficial/sentinel-vpn-node:0.0.8-alpha` #### Method #2 [Build Your Own Docker Image] Do-it-Yourself setup by building your own docker image 1. Navigate to the root folder or anywhere that you want to setup the project and download code from the repository `cd ~` 2. Clone the Sentinel repository `git clone https://github.com/sentinel-official/sentinel.git` 3. Navigate to the folder with code to build the docker image `cd ~/sentinel/vpn-node-docker` 4. Build the docker image `sudo docker build --file Dockerfile.prod --tag sentinel-vpn-node --force-rm --no-cache` 5. Navigate to the folder where the docker container was setup. In our case, it is the User's home directory. `mkdir -p $HOME/.sentinel` 6. Run the image and configure the node `sudo docker run -it --privileged --mount type=bind,source=$HOME/.sentinel,target=/root/.sentinel -p 3000:3000 -p 1194:1194/udp sentinel-vpn-node` ### Step 3 --- Updating an existing Sentinel dVPN OpenVPN Node === 1. Stop the running docker container `sudo docker stop $(sudo docker ps -aq -f ancestor=sentinelofficial/sentinel-vpn-node)` 2. Remove the older version of docker container `sudo docker rm -f $(sudo docker ps -aq -f ancestor=sentinelofficial/sentinel-vpn-node)` 3. Remove the older version of docker image `sudo docker rmi -f $(sudo docker images -aq -f reference=sentinelofficial/sentinel-vpn-node)` 4. Set the token value to an EMPTY STRING in the config file Config file location: $HOME/.sentinel/config.data Example: {"token": "", "enc_method": "AES-256-CBC", "account_addr": "0x656b756e6c6335302e676c343572357232786970", "price_per_gb": 125.0} After completing the above steps, please follow the instructions on Method [#1 (Quick Run using Docker Hub)](https://hackmd.io/hOqfZ6pfSvOChSBx8QPsCw#Method-1-Download-Docker-from-Docker-Hub) to get the node up and running again. ## SOCKS5 Sentinel Node To run the sentinel node in SOCKS5, we have to go through the following steps: ### Step 0 --- Configuring Firewall --- Below are the instructions on installing firewall 1. First of all we should open the specific ports on the firewall. Do not open all the ports. 2. UFW or Uncomplicated Firewall is installed by default on Ubuntu. If it has been uninstalled for some reason, you can install it with `apt-get install ufw` 3. To check the status of the firewall type in terminal `ufw status verbose` 4. If firewall is inactive, then type the below command to activate it `ufw enable` 5. For SOCKS5 to work successfully, type the below command to allow the ports `ufw allow 3000` `ufw allow 4200` `ufw allow 4201` `ufw allow 4202` `ufw allow 4203` ### Step 1 --- Installing Docker --- ##### OS Requirements * A 64-bit installation * Version 3.10 or higher of the Linux kernel. As the first step to setting Sentinel node on Linux, you'll need to install docker. 1. Install required dependencies to get docker installation script from get.docker.com `sudo apt install -y curl` `curl -fsSL get.docker.com -o /tmp/get-docker.sh` 2. Run the downloaded script to setup & install docker `sudo sh /tmp/get-docker.sh` 3. Add current user to the docker group to give required access `sudo usermod -aG docker $USER` ### Step 2 --- Running the Sentinel dVPN Socks Node --- You can setup and run VPN node in two ways: 1. Quick Run - download docker image from Docker Hub 2. DIY - build your own docker image from the Sentinel code repository #### Method #1 [Download Docker Image from Docker Hub] Using existing docker image: 1. Navigate to the User's home directory `cd ~` 2. Create a new folder to pull the docker image and run it `mkdir -p $HOME/.sentinel` 3. Pull the official Sentinel docker image from Docker Hub & configure the node `sudo docker run -it --privileged --mount type=bind,source=$HOME/.sentinel,target=/root/.sentinel -p 3000:3000 -p 4200:4200 -p 4201:4201 -p 4202:4202 -p 4203:4203 sentinelofficial/sentinel-socks5-node:0.0.8-alpha` #### Method #2 [Build Your Own Docker Image] Do-it-Yourself setup by building your own docker image 1. Navigate to the root folder or anywhere that you want to setup the project and download code from the repository `cd ~` 2. Clone the Sentinel repository `git clone https://github.com/sentinel-official/sentinel.git` 3. Navigate to the folder with code to build the docker image `cd ~/sentinel/socks5-node-docker` 4. Build the docker image `sudo docker build --file Dockerfile.dev --tag sentinel-socks-node --force-rm --no-cache` 5. Navigate to the folder where the docker container was setup. In our case it is the User's home directory. `mkdir -p $HOME/.sentinel` 6. Run the image and configure the node `sudo docker run -it --privileged --mount type=bind,source=$HOME/.sentinel,target=/root/.sentinel -p 3000:3000 -p 4200:4200 -p 4201:4201 -p 4202:4202 -p 4203:4203 sentinel-socks-node` ### Step 3 --- Updating an existing Sentinel dVPN SOCKS5 Node === 1. Pull the latest version of docker `sudo docker pull sentinelofficial/sentinel-socks5-node` 2. Stop the running docker container `sudo docker stop $(sudo docker ps -a -q --filter="ancestor=sentinelofficial/sentinel-socks5-node")` 3. Remove the older version of docker image `sudo docker rm $(sudo docker ps -a -q --filter="ancestor=sentinelofficial/sentinel-socks5-node")` 4. Set the token value to an EMPTY STRING in the config file Config file location: $HOME/.sentinel/config.data Example: {"token": "", "enc_method": "AES-256-CBC", "account_addr": "0x656b756e6c6335302e676c343572357232786970", "price_per_gb": 125.0} After running the above commands, please follow the method [#1 (Quick Run using Docker Hub)](https://hackmd.io/hOqfZ6pfSvOChSBx8QPsCw#Method-1-Download-Docker-from-Docker-Hub) to get the node up and running again. Helpful docker commands to interact with the Sentinel dVPN Node === * list a running Sentinel dVPN Node: ```sudo docker ps``` * list both, running and stopped Sentinel dVPN Nodes: ```sudo docker ps -a``` * stop a particular Sentinel Node: * run ```sudo docker ps``` and copy the Container ID. * run ```sudo docker stop ContainerID``` ###### Note: stopping a dVPN Node does not remove the container * remove a particular Sentinel dVPN Node: ```sudo docker rm ContainerID``` ###### Note: The Sentinel dVPN Node must be stopped to be removed. Alternatively, you can use the `-f` flag to forcefully remove the Node if the node can not be stopped. * remove all stopped Sentinel dVPN Nodes: ```sudo docker rm $(sudo docker ps -a -q)``` * stop all the running dVPN Nodes and remove them: ```sudo docker stop $(sudo docker ps -a -q) && sudo docker rm $(sudo docker ps -a -q)``` ###### Note 1: In case you previously ran any version of Sentinel client, read the wallet from keystore file in .sentinel folder and use that same address for node setup ###### Note 2: once initialization sequence is complete, press ***ctrl + p + q*** to detach from the docker container and run it in the background. *We're enabling developer console in this version for better error and log reporting. Please use it when submitting issues in the chat group or on our github repo* ```Please enable testnet from topbar for using the Sentinel dVPN``` #### When swix transaction is completed, please click on SENTINEL Logo present on the start of swixer web page in Swixer Tab, to start new swix transaction. More specific steps depend on your operating system: 1. Linux 2. Mac 3. Windows ### For Mozilla Firefox users there's a caveat [ MacOS | Windows | Ubuntu ]: Firefox users should change proxy settings in their browser. For that, open firefox and navigate to ``` menu > preferences > network proxy ``` and enter the above details in the respective fields. # Linux- Installation of Sentinel dVPN Desktop App Select ubuntu. There will be two Debian packages, one will be for Linux 16.04, and another will be for Linux 18.04. Download the latest deb package for Linux from the Sentinel official https://www.sentinel.co/releases/ 1. For downloading the Sentinel dVPN Desktop App on Linux, kindly visit and download the latest deb package for Linux from the Sentinel official https://www.sentinel.co/releases/alpha-0.1.0/ubuntu/. There will be two Debian packages, one will be for Linux 16.04, and another will be for Linux 18.04. In this guide, we will choose Linux 18.04. ![](https://i.imgur.com/NqUZ3Bv.png) 2. After downloading the file, the deb package will be saved on the downloads path ![](https://i.imgur.com/IK8t9PJ.png) 3. Open the terminal. Go to the path where the Deb file is saved. Before installing the Deb file, run the below command in the terminal. After executing the command, a prompt will come asking whether to continue or not. Enter 'Y' and then again press enter to complete the execution of the command. ``` sudo apt install -f ``` ![](https://i.imgur.com/f9ZozsU.png) 3. Install the deb file by running the below command ``` sudo dpkg -i Sentinel***.deb ``` ![](https://i.imgur.com/WIk4a6d.png) 4. After successful installation, type `sentinel` in the terminal. One prompt will come to ask for the authentication. Enter your system password and continue to open the app. ![](https://i.imgur.com/utLpNOe.png) # Mac- Installation of Sentinel dVPN Desktop App 1. Run the .dmg file and drag the Sentinel app to ***Applications*** folder. 2. Go to Applications Folder and right click on sentinel app and Click on ***Show Package Contents*** option. 3. Then go to ```Contents > MacOs``` and run sentinel by double clicking the package. 4. Additionally, You can create a shortcut of the app by right clicking the sentinel package and click ```make alias```, then copy the alias to your desktop for ease of use. 5. While connecting to VPN, in case of the error - 'Package ***brew*** is not installed' error. Then please install homebrew in your system and then try connecting to the vpn. 6. Please follow instructions from this [howtogeek tutorial](https://www.howtogeek.com/211541/homebrew-for-os-x-easily-installs-desktop-apps-and-terminal-utilities/) to install Homebrew # Windows- Installation of Sentinel dVPN Desktop App 1. Download the installer from the Sentinel official https://www.sentinel.co/releases/alpha-0.1.0/windows/ ![](https://i.imgur.com/L5KcNAD.png) 2. Once it is downloaded, run the installer (Sentinel-{version}.exe). It is mostly in C:\Users\{user_name}\Downloads 3. In this version you can launch the app without Run As Administrator, anyhow a prompt will be shown to give admin access. If a popup 'Windows protected your PC' occur, click on More info and then click on Run anyway to start the installation. 5. Click yes to allow the changes to be made on Computer. 6. From next time onwards, you can run the app from folder: ```C:/ > Users > {Your Username} > AppData > Local > Sentinel > Sentinel.exe``` **Note:** If AppData is hidden, click on view on top bar and select `hidden items`. ![](https://i.imgur.com/swmGDpO.png) Moreover, you can create a shortcut of the app and save it on your desktop for ease of use. For that right click on the sentinel.exe file and click ```Create Shortcut```. After that, you can copy that shortcut to your desktop and open the app from desktop everytime. 6. If you’re facing any issues while installing the app, like OpenVPN Is Not Installed or Something Went Wrong, please uninstall your already installed OpenVPN from control panel and then re-install OpenVPN from the following path on your local machine and re-run the Sentinel App. `C:// > Users > {Your Username} > AppData > Local > Sentinel > app-{version} > resources > extras > openvpn-install-2.3.18-*.exe` ![](https://i.imgur.com/VyiDRrr.png) 7. Your keystore file will be stored in the below path. Save this keystore to restore your wallet at any device. `C:\Users\{Your Username}\.sentinel` ![](https://i.imgur.com/B88CNad.png) # Sentinel dVPN Desktop App Sentinel is an interoperable, secure network layer offering the Sentinel Service Chain exclusively for distributed & decentralized native services like - dVPN, Sentrix (dChat and dVoIP) and more. ## A. On start-up **Note:** On start-up, when you create an account, you are creating your Ethereum wallet. For the creation of Tendermint account, you need access to the dashboard. ### Create a new account New initiatives and experiments we want to start improving 1. When you open the Sentinel dVPN Desktop App for the first time, you will get the option of either creating or restoring the wallet. ![](https://i.imgur.com/vMlRL4O.png) 2. Click on Create/Restore wallet. ![](https://i.imgur.com/ZvKrFeJ.png) 3. For **creating account**, enter your password to create your anonymous user ID. For **restoring account** skip to step 6. 4. When you create an account, the next screen will display your private key and your address. Kindly save it offline in a very secure place to avoid loss or theft of keys. Do not lose keys as it is the only way to unlock the wallet. It will also mention the path of the keystore file stored in your mobile. The Keystore file will help you to restore wallet. Click on “Yes, I have copied my keys in a secured place.” and then tap next to get the access to the dashboard. 5. The path where the keystore file is saved is: **Windows:** C:\Users\{computer_name}\.sentinel **Linux:** <*****> **Mac:** <*****> ![](https://i.imgur.com/mIH7zd4.png) 6. After saving your keys, click ‘go to Dashboard’ and get access to the features of Sentinel. 6. For **restoring the account**, you must have your keystore file in the system. To restore the account, select the file and enter your password associated with it. Then select ‘Restore keystore file’ to access the dashboard. ![](https://i.imgur.com/ORAsoV6.png) **Login** 1. If your keystore is at the place, then when you open your app it will directly ask you to enter the password. ![](https://i.imgur.com/wTW9hCr.png) 2. After the successful login, you can access the dashboard. ## B. Ethereum Testnet To select the Ethereum testnet, first turn on the testnet by sliding it right. After the test net is on, the list of testnet at the top right corner becomes active. By default, it selects tendermint testnet. To activate the Ethereum testnet, you can choose the Ethereum testnet from the list. ### Wallet Transfer - Receive Funds **Note:** ‘Get free tokens’ is only applicable to the testnet. In mainnet, you can only receive SENT tokens from another wallet. 1. Click on the receive button on the left side of the app to view your address and to access to free test tokens. ![](https://i.imgur.com/3USKdNx.png) 2. To receive funds, share your address to the sender. 3. To get free tokens, click on ‘Get free tokens’ at the top. You will receive TestSENT and TestETH. Wait for few seconds for the wallet to show original balances. There is the limit of free tokens you can have. ### Wallet Transfer - Send Funds 1. To send funds, click on send symbol on the left side of the app. 2. Enter the address to send. 3. Enter the amount you want to send. You can select the token you want to send from the list- TestSENT or TestETH. 4. Set the gas limit and gas price. Set high gas for faster transaction. 5. After signing the transaction with your keystore password, click send. You cannot click send until you enter the password. In case of wrong password input, the tokens will not be sent. ![](https://i.imgur.com/C3uNyTu.png) 6. After sending, you will get the notification of the transaction, and you can click on check status. ![](https://i.imgur.com/DD0PGHv.png) 7. After clicking on check status, you can see the transaction details on rinkeby. ![](https://i.imgur.com/zzzPAuL.png) ### Transaction History 1. To view transaction history, click on Tx History symbol on the left side of the app. There is option to see on the top right TestSENT and TestEth. Select the token to view its transaction history. 2. TestSENT transaction history ![](https://i.imgur.com/UfYb0ly.png) 3. TestETH transaction history ![](https://i.imgur.com/eNOoXfT.png) ### dVPN Service 1. Select the list symbol on the left side of the app to show the list of dVPN nodes. 2. You will be shown the list of VPN nodes. 3. There are two options available- Public and Private. 4. For private network, select the private network symbol. It will then ask you to enter auth code. Enter the code and click connect to access the private network. ![](https://i.imgur.com/UmBUZ64.png) 5. By default, the public is selected. Under the public, there are again two options OpenVPN and SOCKS5. 6. **OpenVPN** a. Select OpenVPN and, you can see the list of the nodes available to connect. b. You can click on the node to see the information and connect button. ![](https://i.imgur.com/5RvdPIS.png) c. You can also use the map on the top right corner to select the node. ![](https://i.imgur.com/SZco3uV.png) d. Or you can search by city name or country name. ![](https://i.imgur.com/xmk3rhn.png) e. Click on any node and click on connect. ![](https://i.imgur.com/xKRZ9bH.png) f. For the first time use of the VPN service, you will get a popup ‘Initial Payment Alert.’ ![](https://i.imgur.com/FUWy9iH.png) g. After clicking pay, you will be redirected to Wallet transfer- Send tokens. The address associated with the dPVN node and amount will be set by default. Set the gas limit and password and pay the initial amount to activate the service. ![](https://i.imgur.com/YwpE6MK.png) h. After successful payment, you can connect to the node, and you can see the node details below on the app like IP, speed, location, upload, and download. ![](https://i.imgur.com/l26y6oW.png) i. You can check the IP on the browser also and match the queried result with the IP shown on the Sentinel dVPN Desktop App. ![](https://i.imgur.com/iMcL3zy.png) j. After the use of the service, you can disconnect the node anytime by clicking on the disconnect. k. You will be asked for the rating. It is optional. You can rate or comment based on your experience with the usage of the Sentinel dVPN Desktop App. ![](https://i.imgur.com/jIzPiXs.png) l. Now when you try to connect the node for the VPN service next time, you have to pay the pending amounts else while connecting node, it will ask you to pay the tokens for the previous session by displaying the message on the bottom screen of the app. ![](https://i.imgur.com/V9ur8HK.png) m. To pay the due amount go to the VPN history symbol on the left side of the page and click on Pay now to pay the amount. ![](https://i.imgur.com/ogJHy55.png) n. After clicking pay, you will be redirected to Wallet transfer- Send tokens. Set the gas limit and password and pay the pending amount to pay the due. o. Kindly go to check status and visit rinkeby to copy your transaction hash so that you can view your transaction info anytime. p. In case you have already paid, click on the Already Paid button and enter your transaction hash. ![](https://i.imgur.com/T5butPY.png) q. Report successfully message on the bottom screen will come when you press send. ![](https://i.imgur.com/e2bbB7J.png) r. After successful payment, you can use the dVPN services again. In the dVPN history, you can see your previous sessions and pending bills. ![](https://i.imgur.com/PzDATME.png) 7. **SOCKS5** a. Select SOCKS5 and, you can see the list of the nodes available to connect. b. You can click on the node to see the information and connect button. ![](https://i.imgur.com/Il4nB4V.png) c. You can also select the map on the top right corner to select the node in the map. ![](https://i.imgur.com/thMjima.png) d. The VPN session of SOCKS5 is similar to OpenVPN. ## C. Tendermint Testnet When you toggle on the testnet, the tendermint testnet is selected by default. ### Account Creation 1. When accessing the tendermint testnet for the first time you have to enter the account details. ![](https://i.imgur.com/C2wbgMH.png) 2. The next screen will ask you to save keys and seed at a safe place. ![](https://i.imgur.com/57hugFv.png) 3. After saving the keys, click on the ‘Go to Sentinel tendermint wallet.’ ### Wallet Transfer - Receive Funds **Note:** ‘Get free tokens’ is only applicable to the testnet. In mainnet, you can only receive SENT tokens from another wallet. 1. Click on the receive button on the left side of the app to view your address and to access to free test tokens. 2. To receive funds, share your address to the sender. 3. To get free tokens, click on ‘Get free tokens’ at the top. You will receive TestSENT. You can get free TestSENTS many times. Wait for few seconds for the wallet to show original balances. There is the limit of free tokens you can have. ![](https://i.imgur.com/doZ25iC.png) 4. You can get the free test SENTs until your wallet balance is less than 1000. ### Wallet Transfer - Send Funds 1. To send funds, click on send symbol on the left side of the app. 2. Enter the address to send. 3. Enter the amount you want to send. 4. After signing the transaction with your tendermint account password, click send. You cannot click send until you enter the password. In case of wrong password input, the tokens will not be sent. ![](https://i.imgur.com/vMUA7YU.png) ### Transaction History To view transaction history, click on Tx History symbol on the left side of the app. There is an option to see on the top right TestSENT and TestEth and select the token to view its transaction history. ![](https://i.imgur.com/k2iMxKJ.png) ### dVPN Service 1. Select the VPN list in the left side of the app. 2. You will be shown the list of VPN nodes. 3. There are two options available- Public and Private. 4. Private Network (coming soon). 5. By default, the public is selected. Under public, there are again two options OpenVPN and SOCKS5. 6. **OpenVPN** a. Select OpenVPN, and you can see the list of the nodes available to connect. b. You can click on the node to see the information and connect button. ![](https://i.imgur.com/i8Uu3d7.png) c. You can also select the map on the top right corner to select the node in the map. ![](https://i.imgur.com/PFRKSUx.png) d. Click on any node and click on connect. ![](https://i.imgur.com/IeEjkNx.png) e. For the use of the dVPN service, you will be redirected to the send tokens page to LOCK your test SENT tokens. ![](https://i.imgur.com/t2JpG9A.png) f. If you have consumed less than the 100 test SENTs, you will get back the unused tokens ![](https://i.imgur.com/3pbfFu1.png) g. You can check the IP on the browser also and match the queried result with the IP shown on the app. ![](https://i.imgur.com/D2DPdxJ.png) h. After the use of the service, you can disconnect the node anytime by clicking on the disconnect. i. After the full consumption of the locked test SENTs, it will automatically disconnect the service. j. You can view session history by clicking on the VPN history symbol on the left side of the app. ![](https://i.imgur.com/N6rvXYx.png) 7. **SOCKS5** Coming Soon ## D. Main Net ### Wallet Transfer - Receive Funds 1. Click on the receive button on the left side of the app to view your address and to access to free test tokens. 2. To receive funds, share your address to the sender. ![](https://i.imgur.com/QbYtbe6.png) ### Wallet Transfer - Send Funds 1. To send funds, click on send symbol on the left side of the app. 2. Enter the address to send. 3. Enter the amount you want to send. You can select the token you want to send from the list- TestSENT or TestETH. 4. Set the gas limit and gas price. Set high gas for faster transaction. 5. After signing the transaction with your keystore password, click send. You cannot click send until you enter the password. In case of wrong password input, the tokens will not be sent. ![](https://i.imgur.com/HNz04vC.png) ### Transaction History 1. To view transaction history, click on Tx History symbol on the left side of the app. There is an option to see on the top right TestSENT and TestEth and select the token to view its transaction history. ![](https://i.imgur.com/YzeGxgt.png)

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully