Description
Send a request to bulk sign an array of transactions.
💡
This method will only SIGN the array of proposed transactions. This method will NOT submit anything to the XRP Ledger, and should be considered incomplete. If you would like to complete the transactions, refer to bulkSubmit with the signed tx blobs.
Usage
  sdk.sync.bulkSign(txns: SignTransaction[], opts?: SignOpts)Parameters
txns: SignTransaction[]See here (opens in a new tab) for SignTransaction typing.
opts: { description?: string }See here (opens in a new tab) for SignOpts typing.
Response
id: string;Example
    let id = sdk.sync.bulkSign({
            TransactionType: 'Payment',
            Account: signInResp.response.address,
            Destination: [insert destination address here]
            Amount: "1000000" // XRP in drops
        });
 
    console.log(id)
    // eb29dcab-2bbd-4f4f-ad46-fc33359c6453