Skip to content

Lessons

XRPL Camp has 6 lessons that build on each other. Complete them in order for the best experience.

Learn what the XRPL is: accounts, balances, transactions, and memos. No code, no commands — just the concepts you need before touching the ledger.

Generate a Testnet keypair:

Terminal window
xrpl-camp wallet create

Your seed (private key) is stored locally in .xrpl-camp/wallet.json and never leaves your machine. Your seed stays on this machine — XRPL Camp never sends it anywhere.

Get free test XRP from the Testnet faucet:

Terminal window
xrpl-camp fund

Test XRP has no real value — nothing at risk. It exists purely for learning and experimentation.

Write a memo to the ledger via a self-payment (1 drop):

Terminal window
xrpl-camp send --memo "hello from camp"

This creates a real transaction on the XRPL Testnet with your custom memo permanently recorded.

Look up what you wrote:

Terminal window
xrpl-camp verify --tx <hash>

This queries the ledger and confirms the transaction details, including your memo.

Get a portable, verifiable record of what you did:

Terminal window
xrpl-camp certificate

This generates a certificate and a tamper-evident proof pack. The certificate is safe to share — it contains no private keys.

By default, XRPL Camp uses the public XRPL Testnet node. To use a different endpoint:

Terminal window
export XRPL_CAMP_RPC_URL="https://your-node:51234/"
xrpl-camp fund