Skip to main content

Documentation Index

Fetch the complete documentation index at: https://stellaraddresskit.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

The library follows a strict set of rules to determine the address and routingId for any given input.

Routing Scenarios

Input: MA7Q...QD Output:
  • address: GA7Q...HB
  • routingId: 123
Input: MA7Q...QD + MEMO_ID: 999 Output:
  • address: GA7Q...HB
  • routingId: 123
  • warning: REDUNDANT_MEMO (The M-address ID takes priority).
Input: GA7Q...HB + MEMO_ID: 123 Output:
  • address: GA7Q...HB
  • routingId: 123
Input: GA7Q...HB + MEMO_TEXT: "123" Output:
  • address: GA7Q...HB
  • routingId: 123
  • warning: MEMO_TYPE_MISMATCH (Numeric text memos are often sent by mistake instead of ID memos).
Input: GA7Q...HB + MEMO_TEXT: "abc" Output:
  • address: GA7Q...HB
  • routingId: ""
  • warning: NON_ROUTABLE_MEMO (Cannot extract a numeric ID from text).
Input: GA7Q...HB + MEMO_HASH: "..." Output:
  • address: GA7Q...HB
  • routingId: ""
  • warning: NON_ROUTABLE_MEMO.
Input: C... Output:
  • address: ""
  • destinationError: INVALID_DESTINATION.