Activity Overview

Commits and releases over time

  • Commits
  • Releases
  • Authors

Repository Explorer

21 commits in all time May 05, 2026 20:35 – Aug 03, 2026 20:35 UTC
feat: update AI integration guides and README files to clarify keypair sharing risks across same-curve chains
Git Commit c0ed1fd0 Branch master Document 10/382 ++ 26 --
refactor: rename packages to use scoped naming convention (@arc76/*)
- Updated package names from `arc76-*` to `@arc76/*` across all TypeScript packages.
- Adjusted import statements in all relevant files to reflect the new package names.
- Modified documentation files to guide users on the new package structure and installation commands.
- Ensured that all dependencies reference the new scoped package names.
Git Commit 4d05c47a Branch master Document 28/309 ++ 161 --
feat: initialize pnpm workspace and update TypeScript configuration
- Added pnpm workspace configuration in `pnpm-workspace.yaml`.
- Removed obsolete Algorand account generation code from `index.ts` and its corresponding test file.
- Introduced a new base TypeScript configuration in `tsconfig.base.json`.
- Deleted the old TypeScript configuration file `tsconfig.json`.
Git Commit c9dd1dde Branch master Document 54/4,493 ++ 4,348 --
feat: add ARC76 account generation with ED25519 support
- Implemented account generation from a string using ED25519.
- Added `generateAlgorandAccount` function to create accounts based on email and password.
- Created TypeScript configuration and package.json for project setup.
- Added Jest tests to validate account generation functionality.
Git Commit 37adce10 Branch master Document 45/5,230 ++ 624 --
Add multi-chain support for ARC76 account derivation
- Implement ARC76 account derivation for Algorand, Bitcoin, Bitcoin Cash, and Ethereum.
- Create separate projects for each chain: ARC76Account.Algorand, ARC76Account.Bitcoin, ARC76Account.BitcoinCash, and ARC76Account.Ethereum.
- Introduce ARC76Account.Core for shared PBKDF2 seed derivation logic.
- Update README.md to reflect new package structure and installation instructions.
- Remove the old monolithic ARC76Account project and solution structure.
- Add ARC76Signer for Algorand transaction signing in ASP.NET Core applications.
- Ensure each chain package only includes necessary dependencies.
Git Commit d21ce39f Branch master Document 21/433 ++ 180 --
Refactor and rename Algorand ARC76 Account library to ARC76Account
- Updated project structure to support .NET 10 and renamed the library from AlgorandARC76AccountDotNet to ARC76Account.
- Introduced separate namespaces for Algorand and Ethereum account derivation.
- Implemented shared PBKDF2 seed derivation logic in a new Core class.
- Added ARC76Signer for signing Algorand transactions in ASP.NET Core applications.
- Updated README.md with installation instructions, usage examples, and migration guide from v1.x to v2.0.
- Created AI_INTEGRATION.md for AI coding assistants to reference the current API surface.
- Updated test projects to reflect new namespaces and methods.
Git Commit 98f5b0ec Branch master Document 17/514 ++ 175 --