> For the complete documentation index, see [llms.txt](https://docs.joeywallet.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.joeywallet.xyz/integration/supported-networks/xrp-ledger.md).

# XRP Ledger

## Joey Wallet supports sign requests for the XRP Ledger.

Here is an example of the enhanced namespace (XRPL) supported within `Joey Wallet` and the `wc-client`:&#x20;

```typescript
  [
    xrpl,
    {
      chains: [{
        id: 'xrpl:0',
        name: 'XRPL',
        http: ['https://s1.ripple.com:51234/'],
        ws: ['wss://s1.ripple.com/'],
        nativeCurrency: { name: 'XRP', symbol: 'XRP', decimals: 6 },
        explorers: [{ name: 'XRPL Explorer', url: 'https://livenet.xrpl.org/' }],
        isDev: false,
      }],
      events: [],
      methods: ['xrpl_signTransaction','xrpl_signTransactionFor','xrpl_signTransactionBatch','xrpl_signTransactionFee'],
    },
  ],
```

To view all of the supported XRP Ledger namespaces and chains, reference our codebase [here](https://github.com/Joey-Wallet/wc-client/blob/main/packages/core/src/common/constants/chains/xrpl.ts).\
\ <br>
