Skip to content

EasyA-Tech/xrpl-handbook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

The XRP Ledger Handbook

Welcome. This is EasyA's legendary handbook. If you want to learn XRP Ledger like a legend, then you're in the right place.

Purpose

This handbook serves as a guide to the XRP Ledger ecosystem, geared towards those just joining for the first time. It isn't just a beginners' handbook; it's a legendary handbook. Even if you've already immersed yourself in the ecosystem, you'll find tons of helpful tidbits around here!

The EasyA App

Of course, the best place to start is always the EasyA app! Download it here for the fastest and most fun way to learn about XRP Ledger. Download it directly right here!

Table of Contents

Introduction

What is XRP Ledger:

  • XRPL.org - The go-to resource for all things XRP Ledger, including comprehensive documentation and getting started guides.

Getting Started

The no-fluff starter:

  • XRPL.org Explorer - A real-time explorer for the XRP Ledger, available for mainnet, testnet, and devnet.
  • XRP Toolkit - Toolkit for XRP Ledger interactions, offering a user-friendly interface for various operations.
  • Testnet Faucet - Get testnet XRP to start experimenting with the XRP Ledger risk-free.

Core Concepts

Explanation of fundamental concepts in the XRP Ledger ecosystem:

Development Tools

Key tools and environments for XRP Ledger:

  • xrpl.js - The official JavaScript/TypeScript library for interacting with the XRP Ledger.
  • xrpl4j - A pure Java implementation for interacting with the XRP Ledger.

Smart Contracts

How to write and deploy smart contracts on XRP Ledger (not possible atm, so these are alternatives):

  • Hooks - An upcoming feature that will allow for smart contract functionality on the XRP Ledger.
  • EVM Sidechain - The XRP Ledger's EVM sidechain

XRP Ledger Network

Going into the network level:

  • XRP Ledger Live - A real-time view of the XRP Ledger network, including transactions and validator information.
  • Bithomp - A user-friendly XRP Ledger explorer with enhanced account viewing features.

Ecosystem Projects

Cool projects built on XRP Ledger:

  • XUMM - A non-custodial wallet for XRP Ledger with advanced features and xApp support.
  • Sologenic - A sophisticated trading platform built on the XRP Ledger.
  • Gatehub - A gateway for various digital assets on the XRP Ledger.

...and of course many more - check them out in the EasyA app!

Resources

Extra stuff:

Handy Code Snippets

Get a taste of XRP Ledger development with these code snippets:

Connecting to XRP Ledger

const { Client } = require('xrpl');

async function main() {
  const client = new Client('wss://s1.ripple.com');
  await client.connect();
  
  console.log('Connected to XRP Ledger');
  
  client.disconnect();
}

main();

Creating a new account

const { Wallet } = require('xrpl');

const wallet = Wallet.generate();
console.log('New account address:', wallet.address);
console.log('New account seed:', wallet.seed);

These examples showcase:

  1. How to connect to the XRP Ledger network.
  2. How to create a new XRP Ledger account.

Contributing

We welcome contributions to make this handbook even more legendary! Here's how you can contribute:

  1. Fork the repository
  2. Create a new branch (git checkout -b feature/amazing-addition)
  3. Make your changes
  4. Commit your changes (git commit -am 'Add some amazing feature')
  5. Push to the branch (git push origin feature/amazing-addition)
  6. Create a new Pull Request

Please ensure your contributions align with our code of conduct and contribution guidelines.

Credit/Inspiration

This handbook was inspired by the famous awesome lists by sindresorhus and the Awesome XRPL list. We need awesome lists for Web3 ecosystems, with more of a hacker's guide to how they work. This is the answer to that need.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published