Skip to main content
Pooled accounts are a common pattern for exchanges and fintech apps. This guide shows how to handle them safely in TypeScript.

The Problem

JavaScript’s Number 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 the routingId as a string to avoid any precision loss.