This repository was archived by the owner on Jan 14, 2026. It is now read-only.
feat(deps): change algosdk to peer dependency and remove algokit-utils#7
Merged
feat(deps): change algosdk to peer dependency and remove algokit-utils#7
Conversation
Resolves TypeScript type conflicts that occur when the SDK's bundled `algosdk` version differs from the consumer's version, causing type mismatches for otherwise identical types. Changes: - Remove `@algorandfoundation/algokit-utils` dependency - Replace `AlgorandClient` with `algosdk.Algodv2` internally - Add `algosdk@^3.0.0` as peer dependency - Add `algosdk@3.5.2` as dev dependency - Update all documentation with installation instructions Note: `algosdk` is now a peer dependency. Most users already have `algosdk` installed via wallet libraries. Releasing as v1.1.0 because v1.0.0 was released ~24 hours ago with minimal adoption, and this fixes potential type conflict bugs affecting integrations. Migration: `npm install algosdk`
github-actions bot
added a commit
that referenced
this pull request
Nov 1, 2025
# [1.1.0](v1.0.0...v1.1.0) (2025-11-01) ### Features * **deps:** change algosdk to peer dependency and remove algokit-utils ([#7](#7)) ([2275607](2275607))
Contributor
|
🎉 This PR is included in version 1.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
algosdkto a peer dependency and removes@algorandfoundation/algokit-utils. This fixes TypeScript type conflicts and reduces bundle size.Problem
algosdkversions@algorandfoundation/algokit-utilsadds unnecessary bloat when only a basic Algodv2 client is neededSolution
algosdkto peer dependency (^3.0.0)@algorandfoundation/algokit-utilsdependencyalgosdk.Algodv2directly for internal blockchain operationsMigration
Most Algorand projects already have
algosdkinstalled.Why v1.1.0?
Testing
✅ All 106 tests passing
✅ TypeScript, build, lint, and format checks passing