LaunchKit · 2026
Back to Skills

Metal Dollar (XMD) stablecoin — mint, redeem, supply analytics, collateral reserves, oracle prices.

2
476 downloads
by @paulgnz

Setup & Installation

openclaw skills install @paulgnz/xmd

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install xmd

What This Skill Does

XMD is XPR Network's native stablecoin pegged to $1 USD, backed by multiple stablecoin collateral types. Tools cover minting, redeeming, checking balances, querying reserves, and reading oracle prices from the xmd.treasury contract.

Exposes both read and write operations against the on-chain xmd.treasury contract in one skill, so you can inspect state and execute transactions without switching tools.

When to use it

  • Mint XMD by depositing XUSDC at current oracle price
  • Redeem XMD back to a specific stablecoin like XPYUSD
  • Check collateralization ratio of the XMD treasury
  • Verify oracle price before executing a mint or redeem
  • Look up any account's current XMD balance

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: mint 100 XMD using XUSDC

AGENT
  1. 1Call xmd_get_config to confirm treasury is not paused
  2. 2Call xmd_list_collateral to verify XUSDC mint is enabled and check oracle price
  3. 3Call xmd_get_oracle_price for XUSDC to confirm price >= 0.995
  4. 4Call xmd_get_treasury_reserves to confirm XUSDC has not hit its maxTreasuryPercent cap
  5. 5Call xmd_mint with XUSDC amount and confirmed: true to execute the transaction
OUTPUT

100.000000 XMD minted to user's account at current oracle price

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

XPR Network account with sufficient stablecoin balance for mint/redeem operations