Skip to content

This is a guide on how to install a Dogecoin Node on a Linux VPS. Specifically Ubuntu 22.04 LTS.

Notifications You must be signed in to change notification settings

booktoshi/How-to-Dogecoin-Node-Linux

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 

Repository files navigation

How to Install Dogecoin Node on Ubuntu 22.04 using VPS

by ~Booktoshi

Update and Upgrade System

sudo apt-get update
sudo apt-get upgrade

Download and Install Dogecoin Binaries

curl -L https://github.com/dogecoin/dogecoin/releases/download/v1.14.7/dogecoin-1.14.7-x86_64-linux-gnu.tar.gz | tar -xz
sudo mv dogecoin-1.14.7/bin/* /usr/local/bin/

Start Dogecoin Node

dogecoind -daemon

Wait for 1 minute

dogecoin-cli stop

Configure Dogecoin

cd ~/.dogecoin/
nano dogecoin.conf

Add the following configuration:

rpcuser=your
rpcpassword=pass
rpcallowip=127.0.0.1
maxconnections=50
rpcport=22555
server=1
ls

to check that the file actually saved

cd
dogecoind -daemon

Start node to let it sync.

How to Set Up the ApeZord Doginal Inscriboor

Install Node Version Manager (NVM) and Node.js

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc
nvm list-remote
nvm install stable
node -v
sudo apt install npm

Clone Doginals Repository and Install Dependencies

git clone https://github.com/booktoshi/doginals.git
cd doginals
sudo npm install

Create .env File

nano .env

Add the following configuration:

NODE_RPC_URL=http://127.0.0.1:22555
NODE_RPC_USER=your
NODE_RPC_PASS=pass
TESTNET=false
FEE_PER_KB=21000000

Create and Sync Wallet

node . wallet new

Now send $DOGE to the Doginal Inscription Wallet so that you can Mint.

node . wallet sync

Mint Doginals

node . wallet mint <wallet address> <file path>

Example:

node . wallet mint D9Ue4zayx5NP7sTSBMM9uwuzqpHv4HnkaN 1.png

Mint DRC-20 Tokens

node . drc-20 mint <address> <ticker> <amount>

Example:

node . drc-20 mint DESpUq549VHcZTc27cRfE3DNAMfiwyk4W4 $wen 900

WOOF WOOF

How to Set Up SirDuney DUNES Etcher

Clone Dunes Repository and Install Dependencies

git clone https://github.com/booktoshi/dunes-cli.git
cd dunes-cli
npm install

Create .env File

nano .env

Add the following configuration:

PROTOCOL_IDENTIFIER=D
NODE_RPC_USER=user
NODE_RPC_PASS=pass
TESTNET=false
FEE_PER_KB=21000000
UNSPENT_API=https://unspent.dogeord.io/api/v1/address/unspent/
ORD=https://wonky-ord.dogeord.io/

Create and Sync Wallet

node dunes.js wallet new

Now send $DOGE to the DUNES Etching Wallet to start Minting Dunes.

node dunes.js wallet sync

Mint Dunes

node dunes.js mintDune <id> <amount> <to>

Example:

node dunes.js mintDune '5088000:50' 100000000 DTZSTXecLmSXpRGSfht4tAMyqra1wsL7xb

About

This is a guide on how to install a Dogecoin Node on a Linux VPS. Specifically Ubuntu 22.04 LTS.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published