Skip to main content

Properties

PropertyTypeRequiredDescription
addressstringYesThe wallet address
tagstringNoAn optional memo or destination tag (used by some blockchains like XRP, XLM)

Example

Standard Wallet

{
  "address": "0x1234567890abcdef1234567890abcdef12345678"
}

Wallet with Memo/Tag

Some blockchains like XRP and XLM require a destination tag or memo to route funds to the correct account:
{
  "address": "rN7n3473SaZBCG4dFL83w7a1RXtXtbk2D9",
  "tag": "12345678"
}
For blockchains that require tags/memos (XRP, XLM, etc.), always include the tag field when provided. Missing tags can result in lost funds.