Join the discussion on Telegram
Why this matters
backend/package.json declares two Stellar SDK packages:
\"@stellar/stellar-sdk\": \"^14.5.0\",
...
\"stellar-sdk\": \"^13.3.0\",
But no source file under backend/src imports from stellar-sdk — every import uses @stellar/stellar-sdk. Confirmed by grep -rn \"from 'stellar-sdk'\" backend/src returning nothing.
This is a stale 30+ MB dependency that bloats install time and CI.
Acceptance criteria
Files to touch
backend/package.json
package-lock.json (regenerated)
Out of scope
- Bumping
@stellar/stellar-sdk itself
Join the discussion on Telegram
Why this matters
backend/package.jsondeclares two Stellar SDK packages:But no source file under
backend/srcimports fromstellar-sdk— every import uses@stellar/stellar-sdk. Confirmed bygrep -rn \"from 'stellar-sdk'\" backend/srcreturning nothing.This is a stale 30+ MB dependency that bloats install time and CI.
Acceptance criteria
stellar-sdkfrombackend/package.json(npm uninstall stellar-sdk)npm run buildandnpm teststill passFiles to touch
backend/package.jsonpackage-lock.json(regenerated)Out of scope
@stellar/stellar-sdkitself