Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fa07c70
test(contracts): add TUP upgrade operation tests (#741)
MiguelLZPF Dec 18, 2025
b802e88
feat(contracts): add updateResolverProxyConfig operation script (#740)
MiguelLZPF Dec 19, 2025
8ffbf9c
feat: factory tests coverage
jaime-iobermudez Dec 15, 2025
076210d
feat: add diamondLoupeFacet tests
Axel-IoBuilders Dec 16, 2025
1d05d17
feat: test trex factory
jaime-iobermudez Dec 16, 2025
1c25a5a
fix: remove dead code in erc1644
jaime-iobermudez Dec 16, 2025
c69ac85
feat: erc20 votes and erc3643 wrapper
jaime-iobermudez Dec 17, 2025
7c0a001
feat: bond test
jaime-iobermudez Dec 17, 2025
697df84
feat: new tests diamond and businessLogicResolver, trasnfer, equity a…
Axel-IoBuilders Dec 18, 2025
e9fde6f
feat: add new tests, new config for coverage and coverage-combine script
Axel-IoBuilders Dec 19, 2025
c7ff16f
feat(contracts): Add upgrade workflows for ATS configurations and TUP…
MiguelLZPF Dec 24, 2025
1f51771
feat(contracts): centralize deployment file management utilities (#769)
MiguelLZPF Jan 5, 2026
41ee3a6
fix: Mass payout contracts audit issues fixes and swagger documentati…
mamoralesiob Jan 8, 2026
1ecd8ee
refactor(scripts): standardize timestamp format to ISO with filesyste…
MiguelLZPF Jan 9, 2026
7f92cd7
feat(contracts): enable parallel test execution with tsx loader and f…
MiguelLZPF Jan 9, 2026
650874b
chore: disable sdk coverage in jest config (#781)
jaime-iobermudez Jan 13, 2026
d10dfe3
fix: changes in sdk and backend because of smar contract audit issues…
mamoralesiob Jan 13, 2026
3ba32c9
fix: Audit issues (#768)
themariofrancia Jan 14, 2026
6950d41
feat: patch uploaded (#771)
AlbertoMolinaIoBuilders Jan 14, 2026
c10a8ee
chore: update @hashgraph/sdk dependency to @hiero-ledger/sdk (#783)
themariofrancia Jan 19, 2026
902fea1
chore: enhance project documentation (#788)
themariofrancia Jan 20, 2026
2d5495e
feat: increase smartcontract coverage (#786)
Axel-IoBuilders Jan 20, 2026
892644f
chore: merge main into develop to sync v3.1.0 release
MiguelLZPF Jan 21, 2026
dff883d
fix(ci): publish Contracts instead of duplicate SDK (#791)
MiguelLZPF Jan 21, 2026
cbcc1db
feat: protected transfer and lock removed (#790)
AlbertoMolinaIoBuilders Jan 21, 2026
8794625
chore: update ci doc (#792)
themariofrancia Jan 21, 2026
05fb97d
chore: fix package name in changeset file
themariofrancia Jan 21, 2026
8f7487a
fix: nonces centralized, eip712 name and version fixed (#787)
AlbertoMolinaIoBuilders Jan 21, 2026
f06d60d
chore: release ATS packages v4.0.0
themariofrancia Jan 22, 2026
d206817
chore: update doc
themariofrancia Jan 22, 2026
ad8c2e8
chore: update deployed contract addresses and configuration in docume…
themariofrancia Jan 22, 2026
4bb903a
refactor(scripts): standardize CLI, logging, and validation utilities…
MiguelLZPF Jan 22, 2026
38ab60e
fix: linting issues for ATS contracts (#796)
jaime-iobermudez Jan 22, 2026
7f3f75e
Merge branch 'refs/heads/develop' into feat/parallel-coverage
marcosio Jan 23, 2026
3ac4e60
πŸ—οΈ build(ats): add Dockerfile for coverage execution
marcosio Jan 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 6 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
"@hashgraph/asset-tokenization-sdk",
"@hashgraph/asset-tokenization-dapp"
],
["@mass-payout/contracts", "@mass-payout/sdk"]
[
"@hashgraph/mass-payout-contracts",
"@hashgraph/mass-payout-sdk",
"@hashgraph/mass-payout-backend",
"@hashgraph/mass-payout-frontend"
]
],
"linked": [],
"access": "restricted",
Expand Down
5 changes: 5 additions & 0 deletions .changeset/curvy-shoes-boil.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hashgraph/asset-tokenization-contracts": patch
---

Fix all lint issues in contracts package.
29 changes: 29 additions & 0 deletions .changeset/scripts-refactoring-cli-standardization.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
"@hashgraph/asset-tokenization-contracts": patch
---

refactor(scripts): standardize CLI entry points and improve infrastructure

**CLI Standardization:**

- Unified CLI entry points to match workflow names (deploySystemWithNewBlr, deploySystemWithExistingBlr, upgradeConfigurations, upgradeTupProxies)
- Created shared validation utilities in `cli/shared/` module eliminating ~100+ lines of duplicated code
- Standardized environment variable parsing and address validation across all CLI files

**Infrastructure Improvements:**

- Resolved circular import issues in logging module
- Exposed tools layer API through main scripts entry point
- Consolidated validation utilities for better code reuse

**Performance Fix:**

- Fixed parallel test performance regression (8+ min β†’ 2 min)
- Restored dynamic imports in blrConfigurations.ts to prevent eager typechain loading
- Added troubleshooting documentation for future reference

**Documentation:**

- Enhanced JSDoc documentation across infrastructure operations
- Added troubleshooting section for parallel test performance issues
- Updated README with CLI shared utilities documentation
Loading
Loading