docs: fix leftover template-repos-ts-sol name in package.json and README - #337
Open
Jah-yee wants to merge 1 commit into
Open
docs: fix leftover template-repos-ts-sol name in package.json and README#337Jah-yee wants to merge 1 commit into
Jah-yee wants to merge 1 commit into
Conversation
Same template-derivation artifact as the `treasury` repo: this project was scaffolded from `template-repos-ts-sol` but the package metadata and README title were never updated. This commit: - Updates `package.json` `name` to `@devprotocol/discord-market` and rewrites the description. - Adds the missing `repository`, `author`, and removes the duplicate `author`/`license` fields at the bottom of the file. - Rewrites the README so the title matches the repository name, lists the shipped contracts in `contracts/`, and documents the available scripts.
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.
Summary
This repository was scaffolded from the
template-repos-ts-soltemplate, but the package metadata and README title were never updated to reflect the actual purpose (Discord market contracts for Dev Protocol). This PR fixes that.Changes
package.jsonname:template-repos-ts-sol→@devprotocol/discord-marketdescription:Template repository for using TypeScript and Solidity→Discord market contracts for the Dev Protocol ecosystemrepository,authorat the top level (alongside the existinglicense)author: ""andlicensefields at the bottom of the fileREADME.md# template-repos-ts-sol→# Discord MarketDiscordMarketV2.sol,MarketAdmin.sol,MarketProxy.sol)yarnscriptsWhy
The current
package.jsonnameand README title still showtemplate-repos-ts-sol, which is misleading for anyone browsing the published package or the repo. This is a known template-derivation issue affecting several repos in the organization (e.g.treasury,i-s-tokens); this PR is scoped todiscord-marketto keep the change small and reviewable.Risk
Documentation and metadata only — no code changes, no CI changes, no dependency updates. The CI workflow and
hardhatconfig are untouched.