| name | dogecoin-node |
| version | 1.0.4 |
| description | A skill to set up and operate a Dogecoin Core full node with RPC access, blockchain tools, and optional tipping functionality. |
Dogecoin Node Skill
This skill is designed to fully automate the integration and operation of a Dogecoin Core full node and CLI over RPC, enabling blockchain tools and wallet management for various use cases, including tipping functionality using SQLite.
This skill provides:
Functionalities
-
Fetch Wallet Balance
- Retrieves the current balance of a Dogecoin wallet address.
- Example:
/dogecoin-node balance <wallet_address>
-
Send DOGE
- Send Dogecoin from a connected wallet to a specified address.
- Example:
/dogecoin-node send <recipient_address> <amount>
-
Check Transactions
- Retrieve recent transaction details of a wallet.
- Example:
/dogecoin-node txs <wallet_address>
-
Check DOGE Price
- Fetch the latest Dogecoin price in USD.
- Example:
/dogecoin-node price
-
Help Command
- Display help information about commands.
- Example:
/dogecoin-node help
Installation
Prerequisites
-
A fully synced Dogecoin Core RPC node.
-
Dogecoin rpcuser and rpcpassword configured in dogecoin.conf.
-
OpenClaw Gateway up-to-date.
Steps to Configure Node
- Install binaries and Download Dogecoin Core
cd ~/downloads
curl -L -o dogecoin-1.14.9-x86_64-linux-gnu.tar.gz \
https://github.com/dogecoin/dogecoin/releases/download/v1.14.9/dogecoin-1.14.9-x86_64-linux-gnu.tar.gz
- Extract and Place Binaries
tar xf dogecoin-1.14.9-x86_64-linux-gnu.tar.gz
mkdir -p ~/bin/dogecoin-1.14.9
cp -r dogecoin-1.14.9/* ~/bin/dogecoin-1.14.9/
ln -sf ~/bin/dogecoin-1.14.9/bin/dogecoind ~/dogecoind
ln -sf ~/bin/dogecoin-1.14.9/bin/dogecoin-cli ~/dogecoin-cli
- Setup Prime Data Directory (for ~/.dogecoin)
./dogecoind -datadir=$HOME/.dogecoin -server=1 -listen=0 -daemon
sleep 30
./dogecoin-cli -datadir=$HOME/.dogecoin stop
- Configuring RPC Credentials (localhost only)
cat > ~/.dogecoin/dogecoin.conf <<'EOF'
server=1
daemon=1
listen=1
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
rpcuser=<strong-username>
rpcpassword=<strong-password>
txindex=1
EOF
- Start and Sync
./dogecoind -datadir=$HOME/.dogecoin -daemon
Check sync:
./dogecoin-cli -datadir=$HOME/.dogecoin getblockcount
./dogecoin-cli -datadir=$HOME/.dogecoin getblockchaininfo
Stop cleanly:
./dogecoin-cli -datadir=$HOME/.dogecoin stop
Example Usage (All Telegram Commands, I Would like to add all RPC/CLI cmmands to Telegram commands as well)
-
/dogecoin-node balance D8nLvyHGiDDjSm2UKnWxWehueu5Me5wTix
-
/dogecoin-node send D8nLvyHGiDDjSm2UKnWxWehueu5Me5wTix 10
-
/dogecoin-node txs D8nLvyHGiDDjSm2UKnWxWehueu5Me5wTix
-
/dogecoin-node price
-
/dogecoin-node help
RPC/CLI Commands Cheatsheet
Below is a comprehensive list of commonly used Dogecoin CLI commands. Use these to interact with your node. For a full list of commands, use ./dogecoin-cli help.
Blockchain Commands
./dogecoin-cli getblockcount
./dogecoin-cli getbestblockhash
./dogecoin-cli getblockchaininfo
./dogecoin-cli getblockhash 1000
./dogecoin-cli getblock <blockhash>
Network Commands
./dogecoin-cli getconnectioncount
./dogecoin-cli getpeerinfo
./dogecoin-cli addnode <address> onetry
./dogecoin-cli ping
Wallet Commands
./dogecoin-cli getwalletinfo
./dogecoin-cli sendtoaddress <address> <amount>
./dogecoin-cli listunspent
./dogecoin-cli getnewaddress
./dogecoin-cli dumpprivkey <address>
Utility Commands
./dogecoin-cli stop
./dogecoin-cli help
For dynamic queries beyond this list, always refer to: ./dogecoin-cli help.
Automated Health Check (Optional Feature):
This file serves as your master validation checklist for maintaining the Dogecoin node operational health
Health Check Script Setup:
-
- To enable the health check feature, create
doge_health_check.sh at this location, .openwork/workspace/archive/health/ with the following code:
mkdir -p ~/.openwork/workspace/archive/health/
cat > ~/.openwork/workspace/archive/health/doge_health_check.sh <<'EOF'
echo "Starting Health Check: $(date)"
if pgrep -x "dogecoind" > /dev/null; then
echo "[PASS] Dogecoin node process detected."
else
echo "[FAIL] Dogecoin node is offline. Attempting to start..."
~/dogecoind -datadir=$HOME/.dogecoin -daemon
fi
PEERS=$(~/dogecoin-cli getconnectioncount 2>/dev/null)
if [[ "$PEERS" -gt 0 ]]; then
echo "[PASS] Node is connected to $PEERS peers."
else
echo "[WARN] Node has 0 peers. Checking network..."
fi
FREE_GB=$(df -BG ~/.dogecoin | awk 'NR==2 {print $4}' | sed 's/G//')
if [ "$FREE_GB" -lt 10 ]; then
echo "[CRITICAL] Low Disk Space: Only ${FREE_GB}GB remaining!"
fi
DB_PATH=
[ -f ];
DB_CHECK=$(sqlite3 )
[ == ];
EOF
5. Grant execution permissions
chmod +x ~/.openwork/workspace/archive/health/doge_health_check.sh
Tipping Integration (Optional Feature):
Once your node is set up and syncing, you can enable the tipping feature. This allows you to send Dogecoin tips, maintain a user wallet database, and log transactions.
Tipping Script Setup:
- To enable the tipping feature, create
dogecoin_tipping.py at this location, .openwork/workspace/archive/tipping/ with the following code:
mkdir -p ~/.openwork/workspace/archive/tipping/
cat > ~/.openwork/workspace/archive/tipping/dogecoin_tipping.py <<'EOF'
import sqlite3
import time
from typing import Optional
class DogecoinTippingDB:
def __init__(self, db_path: str = "dogecoin_tipping.db"):
self.conn = sqlite3.connect(db_path)
self.create_tables()
def create_tables(self):
with self.conn:
self.conn.execute("""
CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT UNIQUE NOT NULL,
wallet_address TEXT NOT NULL
)
""")
self.conn.execute("""
CREATE TABLE IF NOT EXISTS transactions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
sender TEXT NOT NULL,
receiver TEXT NOT NULL,
amount REAL NOT NULL,
timestamp INTEGER NOT NULL
)
""")
def add_user(self, username: str, wallet_address: str) -> bool:
try:
with self.conn:
self.conn.execute("INSERT INTO users (username, wallet_address) VALUES (?, ?)", (username, wallet_address))
return True
except sqlite3.IntegrityError:
return False
def get_wallet_address(self, username: str) -> Optional[str]:
result = self.conn.execute("SELECT wallet_address FROM users WHERE username = ?", (username,)).fetchone()
return result[0] if result else None
def list_users(self) -> list:
return [row[0] for row in self.conn.execute("SELECT username FROM users").fetchall()]
def log_transaction(self, sender: str, receiver: str, amount: float):
timestamp = int(time.time())
with self.conn:
self.conn.execute("INSERT INTO transactions (sender, receiver, amount, timestamp) VALUES (?, ?, ?, ?)", (sender, receiver, amount, timestamp))
def get_sent_tips(self, sender: str, receiver: str) -> tuple:
result = self.conn.execute(, (sender, receiver)).fetchone()
result[0], (result[1] result[1] 0.0)
class DogecoinTipping:
def __init__(self):
self.db = DogecoinTippingDB()
def send_tip(self, sender: str, receiver: str, amount: ) -> str:
amount <= 0:
not self.db.get_wallet_address(sender): f
not self.db.get_wallet_address(receiver): f
self.db.log_transaction(sender, receiver, amount)
f
def command_list_wallets(self) -> str:
= self.db.list_users()
+ .()
def command_get_address(self, username: str) -> str:
address = self.db.get_wallet_address(username)
address:
f
f
def command_get_tips(self, sender: str, receiver: str) -> str:
count, total = self.db.get_sent_tips(sender, receiver)
f
__name__ == :
tipping = DogecoinTipping()
()
()
tipping.db.add_user(, )
tipping.db.add_user(, )
()
(tipping.command_list_wallets())
()
(tipping.command_get_address())
(tipping.command_get_address())
()
(tipping.send_tip(, , 12.5))
(tipping.send_tip(, , 7.5))
()
(tipping.command_get_tips(, ))
EOF
Technical usage previously documented. Contact for refinement or extensions!