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:

  [
    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.

Last updated