Description
Send a request to sign and submit a transaction to the xrp ledger.
Usage
sdk.sync.signAndSubmit(tx: AllTransactionRequest, opts?: SignOpts)
Parameters
tx: AllTransactionRequest;
See here (opens in a new tab) for AllTransactionRequest
typing.
opts?: { description?: string }
See here (opens in a new tab) for SignOpts
typing.
Response
id: string;
Example
let id = sdk.sync.signAndSubmit({
TransactionType: 'Payment',
Account: 'rUmoi1vt8apeKsqFYKMRSiMvWixFDMC8Jz',
Destination: 'rK8jihXBZCFWZqX95SET3CCi1WdRgZQwex',
Amount: '1000000', // XRP in drops
});
console.log(id);
// eb29dcab-2bbd-4f4f-ad46-fc33359c6453