fix: update publish workflows to ensure dependent packages are republished when core changes
dabf5ed3
master
3/43 ++ 28 --
Commits and releases over time
No repositories match that filter.
- 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.
- 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`.
- 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.
- 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.
- 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.