From 7d0982695b67bd5d94643f5228ef9492efccbc6b Mon Sep 17 00:00:00 2001 From: DEVKINGOCHE Date: Mon, 1 Jun 2026 09:06:56 +0000 Subject: [PATCH] fix: export withRetry and isTransientError from sdk/src/index.ts Closes #684 --- sdk/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/src/index.ts b/sdk/src/index.ts index 4f5d2eba..ef0c80d5 100644 --- a/sdk/src/index.ts +++ b/sdk/src/index.ts @@ -48,6 +48,8 @@ export const RpcUrls = { MAINNET: "https://soroban-mainnet.stellar.org", } as const; +export { withRetry, isTransientError } from "./retry.js"; + /** USDC multiplier: 1 USDC = 10_000_000 stroops. */ export const USDC_MULTIPLIER = 10_000_000n;