xrpl_signTransactionBulk
Request structure:
{
txns: xrpl.Transaction[];
fee?: xrpl.Payment;
includesFee?: boolean;
options?: { autofill?: boolean; submit?: boolean };
}Usage:
provider.request(
{
method: 'xrpl_signTransactionBulk',
params: {
txns: [], // Array of XRPL transaction objects
fee: {}, // XRPL Payment Object
includesFee: true
options: { autofill: true; submit: true };
},
},
chainId: 'xrpl:0' // xrpl:0, xrpl:1, xrpl:2
);Response
Example using wc-client:
wc-client:Last updated