3

I'm new to XRP devlopment and I was making an api for an exchange project with XRP and wanted to know that is XRP can be sent to multiple addresses?

Dino
  • 7,779
  • 12
  • 46
  • 85
Ridham CPP
  • 31
  • 1

1 Answers1

3

No, it is currently not possible for a single transaction to send to multiple destination addresses. Instead, you should create one transaction for each destination. Be sure to increment the account sequence number (Sequence) so that each transaction sent from the same (source) account has a unique, sequential, monotonically-increasing sequence number.

Elliot
  • 6,086
  • 11
  • 45
  • 57