What breaks if you do nothing
@paraswap/sdk is no longer actively developed. New API features (latest Augustus version, Delta enhancements, Crosschain) land in @velora-dex/sdk only. Your build will keep compiling, but you’ll silently fall behind.
Steps
- Remove
@paraswap/sdk from package.json. Install @velora-dex/sdk.
- Replace imports. Most named exports kept the same shape. The factory rename is
constructSimpleSDK (the function name itself is unchanged; only the package source changed).
- Re-run your TypeScript build. Most projects compile clean on the first pass.
Code diff (illustrative)
- import { constructSimpleSDK } from '@paraswap/sdk';
+ import { constructSimpleSDK } from '@velora-dex/sdk';
const sdk = constructSimpleSDK({ chainId: 1, fetch });
End-state check
grep -R "@paraswap/sdk" returns zero hits. Existing quote-and-swap flow returns the same priceRoute shape it did before.Last modified on June 14, 2026