chore: add requested SPDX source headers (#201) - #338
Merged
Conversation
There was a problem hiding this comment.
🟢 Approval recommended
The change is strictly the requested single-line SPDX header addition to the exact file list, with no additional modifications detected.
Pull request overview
This PR implements issue #201 by prepending a standard SPDX license identifier header to the specified core TypeScript source files so per-file license provenance is explicit across the SDK and tlock packages.
Changes:
- Prepended
// SPDX-License-Identifier: MITas the first line in 17 listed source files - Kept all other file contents byte-for-byte identical, per the PR description
File summaries
| File | Description |
|---|---|
| packages/sdk/src/asset-config.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/client.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/encrypted-blob.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/errors.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/ids.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/index.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/mainnet-artifacts.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/mainnet-readiness.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/preflight.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/receipt.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/redact.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/status-client.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/status.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/submitter.ts | Adds SPDX MIT header line at top of file |
| packages/sdk/src/verify.ts | Adds SPDX MIT header line at top of file |
| packages/tlock/src/commitment.ts | Adds SPDX MIT header line at top of file |
| packages/tlock/src/seal.ts | Adds SPDX MIT header line at top of file |
Review details
- Files reviewed: 17/17 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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 #201.
Prepends the requested header to all 17 listed files that exist on current main. Verified that removing the added first line reproduces each original byte-for-byte.
Validation: Mechanical comparison confirms the requested first line is the only change in every modified file.