Skip to content
Merged
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
b63ca01
feat: implement obligation registry functions and enhance document bu…
manishdex25 Jul 30, 2026
da8f982
fix: update provider URL to use environment variable for Amoy RPC
manishdex25 Jul 30, 2026
3dde46f
chore: add AMOY_RPC environment variable for Polygon Amoy RPC integra…
manishdex25 Jul 30, 2026
348df07
Update src/__tests__/e2e/obligation-registry-functions/transfer.e2e.t…
manishdex25 Jul 30, 2026
b855d8f
Update src/obligation-registry-functions/ownerOf.ts
manishdex25 Jul 30, 2026
a4ebe10
Update src/obligation-registry-functions/utils.ts
manishdex25 Jul 30, 2026
994b088
Update src/verify/fragments/document-status/obligationRecords/utils.ts
manishdex25 Jul 30, 2026
8a5af28
refactor: streamline mint and returnToken functions by replacing
manishdex25 Jul 30, 2026
95a931e
fix: improve token ID validation in resolveObligationEscrowAddress fu…
manishdex25 Jul 30, 2026
334f840
refactor: remove redundant variable declaration in ownerOf function
manishdex25 Jul 30, 2026
2650f6e
Update README.md
manishdex25 Jul 30, 2026
70af724
chore: update AMOY_RPC URL in tests and workflows for consistency
manishdex25 Jul 30, 2026
874a461
Merge branch 'feature/boe-v2' of github.com:TrustVC/trustvc into feat…
manishdex25 Jul 30, 2026
4b2e604
docs: update README to reflect changes in obligation registry imports
manishdex25 Jul 30, 2026
abfff65
refactor: simplify obligation registry functions by utilizing createR…
manishdex25 Jul 30, 2026
2f87b30
refactor: enhance null safety and streamline code in documentBuilder …
manishdex25 Jul 30, 2026
cca932c
refactor: make properties readonly in W3CObligationRecordsConfig
manishdex25 Jul 30, 2026
caa4d67
refactor: update chain ID comparison logic and improve error handling…
manishdex25 Jul 30, 2026
02de09f
refactor: add ObligationEscrow support to fetchEscrowTransfers and up…
manishdex25 Jul 30, 2026
b32f679
Update README.md
manishdex25 Jul 30, 2026
c22441a
refactor: update chain ID handling and improve test structure in obli…
manishdex25 Jul 30, 2026
491e732
refactor: enhance obligation registry utility with notMintedReason fu…
manishdex25 Jul 30, 2026
bab0a76
chore: trigger ci
manishdex25 Jul 30, 2026
a4c3c26
feat: add beta-boe prerelease configuration to release settings
manishdex25 Jul 30, 2026
c613ba7
refactor: replace chai assertions with node:assert in obligation regi…
manishdex25 Jul 30, 2026
47e38b9
chore: trigger review
manishdex25 Jul 30, 2026
c63751d
refactor: enhance error handling in obligation records utilities by i…
manishdex25 Jul 30, 2026
696fe71
docs: fix markdown links in README for obligation records section
manishdex25 Jul 30, 2026
0f37c7c
chore: remove beta-boe prerelease configuration from release settings
manishdex25 Jul 31, 2026
cafed21
Merge branch 'beta' of github.com:TrustVC/trustvc into feature/boe-v2
manishdex25 Jul 31, 2026
c8ea6b3
docs: update README to reflect change from ObligationRecords
manishdex25 Jul 31, 2026
d0a17a9
ci: add beta and alpha branches to CI workflow triggers
manishdex25 Jul 31, 2026
e721272
ci: update workflows to use Node.js 20 and enhance npm installation p…
manishdex25 Jul 31, 2026
982abe4
Update src/core/documentBuilder.ts
manishdex25 Jul 31, 2026
687eaf9
Update src/verify/fragments/document-status/obligationRecords/obligat…
manishdex25 Jul 31, 2026
fdb6d21
refactor: adjust type definitions in obligationRecordVerifier to impr…
manishdex25 Jul 31, 2026
812d4f2
ci: streamline npm installation in workflows by removing legacy-peer-…
manishdex25 Jul 31, 2026
63c64c2
ci: remove unnecessary eslint_flags from CI workflow configuration
manishdex25 Jul 31, 2026
645a151
chore: update package dependencies and streamline npm installation in…
manishdex25 Jul 31, 2026
811b19f
chore: update commitlint dependency to version 21.2.0 in workflows
manishdex25 Jul 31, 2026
7a84736
ci: increase Node.js memory limit in publish workflow to improve buil…
manishdex25 Jul 31, 2026
924c02e
Merge branch 'beta' of github.com:TrustVC/trustvc into feature/boe-he…
manishdex25 Jul 31, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@ jobs:
registry-url: https://registry.npmjs.org/
- run: npm ci --ignore-scripts
- run: npm run build
env:
NODE_OPTIONS: --max-old-space-size=8192
- run: npm run release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
NODE_OPTIONS: --max-old-space-size=8192
# NPM_CONFIG_PROVENANCE: true
Loading