Ecosystem metrics
- New Repos
- 1,889
- New
- Commits
- 433
- down 4.8%
- Releases
- 9
- down 10.0%
- Contributors
- 42
- down 17.6%
- Merges
- 15
- up 0.0%
Activity Overview
Commits and releases over time
- Commits
- Releases
- Authors
Repository Explorer
No repositories match that filter.
4366 commits in all time
May 24, 2026 22:17 – Aug 22, 2026 22:17 UTC
fix: omit empty API token header on algod/indexer clients
Public nodes can disable API auth. Always setting X-Algo-API-Token to an empty string caused those requests to fail. Only send the header when both the header name and token are non-empty. Fixes #653.
21119cf1
pull/844/head
2/44 ++ 2 --
fix: cap simulate allowMoreLogging at 64KB and 1024 log calls
Closes algorandfoundation/algorand-typescript-testing#145
8f1f2396
pull/146/head
5/84 ++ 6 --
Merge d3193d1a5edd614f5b444c2555208a233f4f07a0 into fb8247d1111a5c618a32185104e0b6efd00c0f77
40171846
pull/605/merge
4/115 ++ 32 --
Merge 36767576b1a61ffaeed06c1b54b5f3de9b738216 into cc0ee91490bd2df1d3cba57ea344bee3c3ea9b75
3a1ac294
pull/72/merge
2/35 ++ 8 --
Merge 7690a49dd2197abd34b1ed96e536a04b6d0409e9 into fb8247d1111a5c618a32185104e0b6efd00c0f77
a631cac2
pull/604/merge
4/127 ++ 14 --
fix links to moved algorand-typescript and algokit-cli docs
46e189ff
security-guide
1/2 ++ 2 --
refactor: change to settle function
482f5059
hybrid
2/2 ++ 2 --
Merge ac9031d02886986b1dfa0dbedff34f691d8b7ff0 into 2cd175e0f03d678500f57d454d1d11f789b996f3
223d4516
undefined
300/236,448 ++ 98,940 --
fix: give the algod/indexer/kmd landing pages actual content
71cf7569
fix/rest-api-landing-pages
7/15,608 ++ 7 --
Merge 84512ce4df87afbffd64d5d797c89419cb7e9fc5 into 2cd175e0f03d678500f57d454d1d11f789b996f3
2124e6a8
undefined
300/236,391 ++ 98,899 --
feat: implement multi-chain NFT import tool suite and supporting utility modules
066d54ad
main
13/22 ++ 22 --
Add 0.2 -> 1.0 upgrade path
Ships the tested upgrade script so clusters carried through pg_upgrade at 0.2 can reach 1.0 with ALTER EXTENSION pg_algorand UPDATE, without the drop/recreate dance. CREATE OR REPLACE upgrades the two functions with dependents in place; the three GetNFD* functions are dropped and recreated because 1.0 renamed their parameters. Verified on betanet, testnet x2 and mainnet upgrades (identical to a fresh 1.0 install). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019ACfCvu2UPpd6UcoK8cpW3
a708f174
main
2/77 ++ 1 --
feat: create SimpleMint page for configuring and executing asset minting operations
103c26db
main
1/6 ++ 4 --
Notes added by 'git notes add'
35d47c8a
notes/semantic-release-v9.2.1-beta.2
1/1 ++ 0 --
feat: add Falcon-1024 post-quantum account support
- Introduced Falcon-1024 account type with corresponding UI elements and localization in Russian, Slovak, and Turkish. - Implemented account creation, import, and export functionalities for Falcon accounts. - Added Falcon-specific mnemonic generation and validation. - Integrated Falcon signing mechanism for transactions. - Updated routing to include Falcon account creation page. - Enhanced backup warnings and account management features for Falcon accounts. - Added unit tests for Falcon account functionalities.
0aca3298
master
28/951 ++ 43 --
feat: implement Stablecoin Studio, Minting Suite, and Brale utility modules
181bc641
main
5/812 ++ 1 --
chore: Improve README note on the `falcon` tag
cec61858
pqsig-support
1/1 ++ 1 --
Merge pull request #600 from algorand/fix/reject-negative-extra-pages
fix: reject negative extra_pages in appcall transactions
189855d4
main
2/40 ++ 1 --
test: xalgo: drop the 'mostly escrows' beneficiaries assertion
It asserted that escrow entries outnumber self entries in beneficiaries.json, which held while the cache only ever saw fxALGO holders — those sit almost entirely in Folks escrows (~3333 of ~3352 per the README). 56d8577 broadened the candidate set to both assets, and plain xALGO holders are wallets, so they resolve to self. The cache is now 3978 escrow / 8046 self (33%), and the premise is false by design rather than by regression. The file does not record which asset a candidate came from, so the fxALGO-only ratio cannot be recovered from it. The two remaining assertions still cover the file's real invariants: ordering and address validity, and that every escrow entry names a tracked app, a valid owner distinct from the escrow, and an opt-in round.
24b04b39
chore/pipeline-parallelization
1/0 ++ 5 --
perf: pipeline: stage 3 computes concurrently, ingests serially
Stage 3 ran one source at a time, so three multi-minute Indexer window scans summed instead of overlapping. Splitting it by what each half is allowed to do lets the reads overlap while the writes stay ordered: - compute (ledger precheck, window scan, replay, manifest assembly) now runs concurrently across sources - ingest stays strictly serial across sources AND instances. uploadAqFile derives box names from account ids the frac *registry* allocates as it goes, and that counter is registry-wide, so two instances ingesting at once would predict the same ids and all but the first would fail with an invalid box reference - the same reason the SDK refuses to parallelize the batches within one upload. Compute returns its per-source outcomes rather than pushing onto the run context, so the report still reads the same on every run (pMap answers in input order). Also, on the same path: - per-instance ledger prechecks fan out; a multi-instance source (reti runs one per validator) spent a serial round trip per instance before any scan - plugins are built once per run and shared by stages 1 and 3; reti was resolving every validator's pools twice - the manifest genesis hash is read once per run, not once per instance - stage/phase timings behind the debug flag, so this is measurable at all
33038ca8
chore/pipeline-parallelization
1/262 ++ 109 --