EN
EnglishChineseFrenchSpanishRussian
  • 🐾Introduction
    • â›Šī¸Drc-20 : Introduction
      • Debunking Myths and Navigating Standards
    • 📏Drc-20 : Basis Rules
      • 💰Balance Fetching
      • 💸Balance Transfer
      • â˜‘ī¸Verify Transfers
      • 🔄Redundancies
    • đŸ—ī¸Drc-20 : Operations
      • 🚀Deploy
      • â›ī¸Mint
      • 🔰Transfer
  • 📗BEGINNER GUIDE
    • 💎How to : Find GEMS
    • âš–ī¸How to : Check your balance
    • đŸļHow to : Install DogeLabs Wallet
    • 👛How to : Create or Import your Wallet
    • 💲How to : Fund your DOGE Wallet
    • 💰How to : Buy DRC-20 Tokens
      • DRC-20.org guide
      • Doggy.market guide
    • 💸How to : Sell DRC-20 Tokens
    • â†”ī¸How to : Transfer assets (wallet to wallet)
    • đŸ”ĨHow to : Fix 99.99% of Issues
    • đŸ§¯How to : Fix the remaining 00.01% if unlucky
    • 💟Donation
  • 📕EXPERT GUIDES
    • đŸļHow to : Mint (VPS)
      • Inscription-wallet, on a VPS
        • Install PuTTY
        • Connect to Your VPS Using PuTTY
        • Setting Up the Environment
        • Minting DRC-20 Tokens Environment
        • Minting Your First DRC-20 Tokens
      • Inscription-wallet, on Windows
    • đŸšĻHow to : Verify my JSON File
    • 🐇How to : Quick Mint (∞)
      • Infinite loop version (EASY)
      • Infinite loop version (MEDIUM)
  • 📘RESSOURCES
    • đŸĒ›Node : Command list
    • 🌐External : Links
  • OTHERS
    • 👋Terms & Conditions
Powered by GitBook
On this page
  • System Update
  • Node.js Installation
  • Verify Node.js Installation
  • Git Installation
  • Clone the GitHub Repository
  • Navigate into the Repository Directory

Was this helpful?

  1. EXPERT GUIDES
  2. How to : Mint (VPS)
  3. Inscription-wallet, on a VPS

Setting Up the Environment

Before you can begin minting DRC-20 tokens, you need to properly set up your environment. This involves several steps, including updating your system, installing essential software like Node.js and Git, and cloning the necessary repository. In the following sections, we'll guide you through each of these steps in detail to ensure you're well-equipped to proceed with the token minting process. Let's begin!

Important reminder: Copy-Pasting Commands : While going through this setup guide, it's essential to remember that the typical CTRL+V keyboard shortcut for pasting does not work in the terminal or the PuTTY interface. Instead, to paste any command into the terminal, you should right-click of your mouse to copy. This will ensure that the commands you're copying from this guide are accurately replicated in your terminal session. Keep this in mind as we proceed through the setup steps.

System Update

First, it's always a good idea to update your Ubuntu system. You can achieve this by running the following commands in your terminal:

bashCopy codesudo apt-get update
sudo apt-get upgrade

Node.js Installation

Next, you'll need to install Node.js on your VPS. This can be accomplished by using the commands below:

bashCopy codecurl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs

Verify Node.js Installation

To ensure Node.js has been installed correctly, you can display its version by typing the following command:

bashCopy codenode -v

Git Installation

Afterwards, Git will need to be installed. This can be done by entering:

sudo apt-get install git

Clone the GitHub Repository

git clone https://github.com/verydogelabs/inscription-wallet.git

Navigate into the Repository Directory

To navigate into the cloned repository, use the cd command:

cd inscription-wallet

Now, you are ready for the next step.

PreviousConnect to Your VPS Using PuTTYNextMinting DRC-20 Tokens Environment

Last updated 1 year ago

Was this helpful?

With Git installed, you can now clone the repository to your VPS:

📕
đŸļ
verydogelabs/inscription-wallet