Sia Docs
GithubDiscordYouTubeBlogsRedditForum
Current
Current
  • Introduction
  • Navigating the V2 Hardfork
    • Things to Know About Sia's Upcoming Fork
    • How to Upgrade: Exchanges
  • Get Started with Sia
    • Learn about Sia
    • Learn about Siacoins
    • Your Sia Seed
    • Siacoin Total Supply
  • Renting
    • About Renting on Sia
    • Installing renterd
      • Linux
        • Debian
        • Ubuntu
        • Other
      • macOS
      • Windows
    • Transferring Siacoins
    • Renting Storage
      • Managing your Files
  • Hosting
    • About Hosting on Sia
    • Installing hostd
      • Linux
        • Debian
        • Ubuntu
        • Other
      • Docker
      • macOS
      • Windows
    • Transferring Siacoins
    • Adding Storage
    • Configuring your Host
      • Dynamic DNS
        • DuckDNS
        • Cloudflare
    • Announcing your Host
  • Wallet
    • Your Sia Wallet
    • Setting up walletd
      • macOS
      • Windows
      • Linux
    • Transferring Siacoins
  • Testnet
    • Zen Testnet
  • Sia Integrations
    • Sia Ledger app with Sia Central
    • Sia Ledger Nano app with CLI
    • S3 Integrations
      • Jellyfin
      • Nextcloud
      • rclone
  • Siafunds
    • Learn about Siafunds
    • Withdrawing Siafunds
    • SEC Settlement
  • Miscellaneous
    • Brand Guidelines
    • Get Involved
    • Glossary
Powered by GitBook
On this page
  • Pre-requisites
  • Getting walletd
  • Running walletd
  • Updating

Was this helpful?

Edit on GitHub
  1. Wallet
  2. Setting up walletd

Linux

PreviousWindowsNextTransferring Siacoins

Last updated 11 months ago

Was this helpful?

This guide will walk you through setting up walletd on Linux. At the end of this guide, you should have:

  • Installed Sia walletd software

  • Created a walletd wallet

Pre-requisites

  • Network Access: walletd interacts with the Sia network, so you need a stable internet connection and open network access to connect to the Sia blockchain.

  • Operating System Compatibility: Ensure your Linux version is compatible with the walletd software. Check supported by Linux versions.

  • System Updates: Ensure that your Linux is up to date with the latest system updates, as these updates can contain important security fixes and improvements.

Getting walletd

Remember to check which version to download to ensure it works correctly with your operating system. To do this, run uname -m in your Terminal Emulator.

  • x86_64 - Linux AMD64

  • aarch64 - Linux ARM64

  1. Download the latest version of walletd for your operating system from the . For this guide, we'll be downloading the Linux version of walletd .

  2. Now that we have downloaded walletd, it's recommended to unzip the walletd binary to /usr/local/bin. Right-click the unzip file, select Open Terminal Here to open your Terminal Emulator, and run the following commands:

unzip walletd_linux_arm64.zip
sudo mv -t /usr/local/bin walletd
rm -rf walletd_linux_arm64.zip 

You'll be prompted to authorize this action by providing your system password. Type this in and press enter to continue.

  1. Finally, for good practice, create a folder on the home drive. This folder will be utilized specifically to store data related to the walletd software. Open the Terminal Emulator and run the following command:

mkdir ~/walletd

Running walletd

  1. Run the following in your Terminal Emulator to start walletd:

 walletd

You will be prompted to input a API password. You choose this password, which can be anything you want. It will be used to unlock the walletd UI, via your browser, should be something secure and easy to remember. This value is not stored anywhere; you will need to re-enter it every time you start walletd.

You can also set the WALLETD_API_PASSWORD environment variables so you do not have to re-enter the values every time.

  1. After entering your desired API password, walletd will start.

  1. You can now access the walletd UI by opening a browser and going to http://localhost:9980.

Remember to leave the Terminal Emulator open while walletd it is running. If you close the command prompt window, walletd stop.

Enter your API password you created in the previous step to unlock walletd.

Congratulations on successfully setting up walletd and taking a significant step towards renting storage space on the Sia network.

Updating

New versions of walletd are released regularly and contain bug fixes and performance improvements.

To update:

  1. Stop the walletd service with Crtl+C.

  2. Unzip and replace walletd with the new version.

  3. Restart walletd.

Starting walletd
walletd Login UI

Download the latest version of walletd from the

releases
official website
official website.
Page cover image