Add Apache-2.0 LICENSE and license metadata - #149
Merged
blockchain-maxis merged 2 commits intoAug 3, 2026
Conversation
The repo shipped with no LICENSE file and no `license` field anywhere, so Signet was legally un-forkable and `@signet/sdk` could not be published. - LICENSE at the repo root: full Apache-2.0 text, "Copyright 2026 The Signet Contributors" in the appendix notice. - `"license": "Apache-2.0"` in the root package.json and in all six workspace packages (sdk, types, ui, db, web, indexer). - `license = "Apache-2.0"` in the identity-registry Cargo manifest. - README gains a License section linking the file and naming the packages it covers.
✅ Deploy Preview for stellar-signet ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
@Salmatcre8 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
|
@Salmatcre8 is attempting to deploy a commit to the blockchainmaxis-8449's projects Team on Vercel. A member of the Team first needs to authorize it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
closes #127
Summary
The repo had no
LICENSEfile and nolicensefield in any manifest, so nobodycould legally fork, vendor or redistribute Signet, and
@signet/sdkcould not bepublished to npm (#60). This adds Apache-2.0 — the Stellar ecosystem default —
and propagates the metadata everywhere.
Changes
LICENSEat the repo root — full, unmodified Apache License 2.0 text, withthe appendix notice filled in as
Copyright 2026 The Signet Contributors."license": "Apache-2.0"added to the rootpackage.jsonand to everyworkspace package:
packages/sdk,packages/types,packages/ui,packages/db,apps/web,apps/indexer.license = "Apache-2.0"added topackages/contracts/identity-registry/Cargo.toml.## Licensesection linkingLICENSEand naming thepackages and contract it covers.
Copyright 2026 The Signet Contributorsis used rather than a personal orcompany name since the repo declares no legal entity anywhere — say the word if
you want a different holder and I'll amend the notice line.
Verification
pnpm test— 10/10 tasks successful (51 tests in@signet/web, all pass).license == "Apache-2.0".packages/contracts/identity-registry/Cargo.tomlre-parsed as TOML; thepackage table now reads
{name: identity-registry, version: 0.1.0, edition: 2021, license: Apache-2.0, publish: false}.