xrpl_signTransaction

Request structure:

{
  tx_json: xrpl.Transaction;
  fee?: xrpl.Payment;
  includesFee?: boolean;
  options?: { autofill?: boolean; submit?: boolean };
}

Usage:

provider.request(
    {
      method: 'xrpl_signTransaction',
      params: {
        tx_json: {}, // XRP Ledger transaction object
        options: { autofill: true; submit: true };
      },
    },
    chainId: 'xrpl:0' // xrpl:0, xrpl:1, xrpl:2
);

Response

Example using wc-client:

Last updated