Welcome to your XRPL playground! Access training materials and exercises to learn how to develop on the XRP Ledger (XRPL). This workspace was designed for the XRPL Training at Bayes Business School.
- 🩵 XRPL Commons Presentation
- 🐣 Introduction to Blockchain
- {X} Introduction to the XRP Ledger
- 📲 My First Wallet
↔️ Coding session 1: Payments- 💰 Coding session 2: Issued Currencies & Trustlines
- 📊 Coding session 3: Decentralized Exchanges (CLOB & AMM)
- Block Explorer: Devnet | Testnet
- Faucets: XRPL Testnet Faucets
Steps to set up this basic Python environment:
# 1. Clone the repository
git clone https://github.com/xrpl-commons/bayes-xrpl-training-26.git
cd bayes-xrpl-training-26
# 1-Alt. Open the project in GitHub Codespaces (Code -> Open with Codespaces -> New codespace)
# 2. Create and activate virtual environment
python3 -m venv venv
source venv/bin/activate
# 3. Install dependencies
pip install -r requirements.txt
# 4. Run the project
python src/main.py