Ecosystem metrics

New Repos
37
New
Commits
663
down 22.2%
Releases
3
down 25.0%
Contributors
48
down 14.3%
Signals
1
down 66.7%
Merges
25
up 8.7%

Repository Explorer

11133 commits in all time May 04, 2026 19:38 – Aug 02, 2026 19:38 UTC
renovate[bot] use-wallet
Merge 707e001288786c8a621a17a1514b1356649b3bd9 into 5073ca134b7c4c5721fcfbe976d5c364a5cc777a
Git Commit b0ed72cf Branch pull/421/merge Document 15/3,378 ++ 1,897 --
renovate[bot] use-wallet
chore(deps): update non-major dependencies
Git Commit 707e0012 Branch renovate/non-major-dependencies Document 15/3,378 ++ 1,897 --
Merge 23282290bea40af89a4af31abf6cfe6d42bc6ffc into b0a3e71a91adfd1dfb97b5060d054618c2a147aa
Git Commit 7224fc3e Branch pull/66/merge Document 10/1,149 ++ 1,264 --
chore(deps): Update all non-major dependencies
Git Commit 23282290 Branch renovate/all-non-major-dependencies Document 10/1,149 ++ 1,264 --
renovate[bot] use-wallet
Merge dc1c867c62af0a496bf038a67a6352f549dfc76c into 5073ca134b7c4c5721fcfbe976d5c364a5cc777a
Git Commit 17de671e Branch pull/433/merge Document 3/34 ++ 57 --
renovate[bot] use-wallet
chore(deps): update dependency @vitejs/plugin-react to v6
Git Commit dc1c867c Branch renovate/vitejs-plugin-react-6.x Document 3/34 ++ 57 --
scholtz-aures wallet
Deploying to gh-pages from @ scholtz/wallet@abc2ad94b32deee87f7760ffda6f86dba53e8a48 🚀
Git Commit 412b006d Branch gh-pages Document 9/29 ++ 29 --
scholtz-aures wallet
Merge pull request #165 from scholtz/fix/biatec-routes-count-combined-splitting
Use Biatec Router's combined-split quotes (routesCount: 1) instead of legacy alternatives
Git Commit abc2ad94 Branch master Document 1/50 ++ 4 --
scholtz wallet
Merge cda0febb7903706f770cdde1df510c87efe0ee0e into 47bd2eade8e3ebe9664e242600ee38c65c655fe1
Git Commit 56ff7298 Branch pull/165/merge Document 1/50 ++ 4 --
scholtz-aures wallet
fix: request Biatec Router's combined-split quotes instead of legacy alternatives
biatec.ts requested routesCount: 3 for both getQuote and execute, which forces
BiatecRouter's legacy "N independent full-amount alternatives" mode and disables
its v2 multi-leg splitting (BuildCombinedRoute) entirely - the router can never
split a swap across multiple paths the way Haystack/Deflex routinely does.

Live comparison (1000 VOTE -> EURS): switching to routesCount: 1 (splitting
enabled) took Biatec production from a 12.8% gap vs Deflex down to 6.0%, and
stage from 18.8% down to 8.5% - roughly halving the shortfall for this pair.

With routesCount <= 1, response.routes holds the LEGS of one combined swap, not
independent alternatives: total output is the sum across legs, and the full
transaction group is the concatenation of every leg's txsToSign (all legs share
one Algorand atomic group server-side - signing only routes[0]'s slice would
submit an incomplete group). Added combineRouteResponse() to fold that into the
same { route: { route, txsToSign } } shape the rest of this file and
buildBiatecRouteInfo already expect, so downstream code needs no other changes.

Known limitation: the hop/pool breakdown display still only reflects the first
leg when the router splits - a display gap, not a correctness one (quoted
amount and submitted transactions are both correct across all legs). A follow-up
could teach SwapRouteExplorer to render multiple legs the way it already does
for Haystack's percentage-split routes.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Git Commit cda0febb Branch fix/biatec-routes-count-combined-splitting Document 1/50 ++ 4 --
Merge fc4a1edc030437cc3d8c2e5f0aaf709b105ec669 into b0a3e71a91adfd1dfb97b5060d054618c2a147aa
Git Commit 79480e60 Branch pull/66/merge Document 10/1,149 ++ 1,264 --
chore(deps): Update all non-major dependencies
Git Commit fc4a1edc Branch renovate/all-non-major-dependencies Document 10/1,149 ++ 1,264 --
scholtz docs
ai agent integration
Git Commit 93961d82 Branch main Document 3/456 ++ 1 --
Merge 7ca36e2f282d95bed58e9d4252fa5a56d153e03b into 393001659ae8a244f9506ae6ae3b4f2f9bd568c3
Git Commit 2b094291 Branch pull/2/merge Document 1/122 ++ 0 --
docs: add Spanish README
Git Commit 7ca36e2f Branch pull/2/head Document 1/122 ++ 0 --
Merge 5871b9970f369d89855641a0f57a087c314137d8 into 0e26b4b274a282ae273b68b29140379d39803971
Git Commit 2fbc7efb Branch pull/604/merge Document 2/69 ++ 9 --
chore(deps-dev): bump postcss from 8.5.12 to 8.5.25
Bumps [postcss](https://github.com/postcss/postcss) from 8.5.12 to 8.5.25.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.5.12...8.5.25)

---
updated-dependencies:
- dependency-name: postcss
  dependency-version: 8.5.25
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Git Commit 5871b997 Branch dependabot/npm_and_yarn/postcss-8.5.25 Document 2/69 ++ 9 --
Merge 9639bade5372932a34de31adba40ac3967a5f3a9 into d4e2088f738a46819185a6418854b08482bdac33
Git Commit f45eadd4 Branch pull/325/merge Document 2/49 ++ 3 --
fix: avoid error transformer app id prefix collisions
AppClient error transformers matched app IDs with a substring check
(`"app=1142" in str(error)`), so a transformer for app 1142 could claim
errors for app 11423 and transform them with the wrong source map.

Match with a digit boundary (`app={id}(?!\d)`) instead.

Closes #296.
Git Commit 9639bade Branch pull/325/head Document 2/49 ++ 3 --
Merge 1779fe3ab0a5bd4628241b1a3fbda6cebc3dc9af into 5073ca134b7c4c5721fcfbe976d5c364a5cc777a
Git Commit 4438d32c Branch pull/421/merge Document 15/3,381 ++ 1,900 --