Pooled accounts are a common pattern for exchanges and fintech apps. This guide shows how to handle them safely in TypeScript.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 Problem
JavaScript’sNumber type is a 64-bit float, which cannot safely represent all 64-bit integers (specifically those above 2^53 - 1).
The Solution
Stellar Address Kit always returns theroutingId as a string to avoid any precision loss.