synchronous
bulkSubmit

Description

Send a request to bulk submit an array of transaction blobs to the xrp ledger.


Usage

  sdk.sync.bulkSubmit(address: string, txblobs: string[], opts?: SignOpts)

Parameters

address: string;
txblobs: string[]
opts: { description?: string }

See here (opens in a new tab) for SignOpts typing.


Response

id: string;

Example

    let id = sdk.sync.sign({
            TransactionType: 'Payment',
            Account: signInResp.response.address,
            Destination: [insert destination address here]
            Amount: "1000000" // XRP in drops
        });
 
    console.log(id)
    // eb29dcab-2bbd-4f4f-ad46-fc33359c6453