-
Notifications
You must be signed in to change notification settings - Fork 50
docs: align README and contributor templates (PLT-839) #332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| ## Summary | ||
|
|
||
| <!-- Explain what changed and why. --> | ||
|
|
||
| ## Related issue | ||
|
|
||
| <!-- Link the Linear issue or other relevant context. --> | ||
|
|
||
| ## Test plan | ||
|
|
||
| <!-- List the commands and manual checks used to verify this change. --> | ||
|
|
||
| - [ ] `bun run check` | ||
| - [ ] `bun run build` | ||
| - [ ] `bun run test` | ||
|
|
||
| ## Checklist | ||
|
|
||
| - [ ] I added or updated tests where needed. | ||
| - [ ] I added a Changeset when this affects a published package. | ||
| - [ ] I updated documentation when behavior or usage changed. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,18 @@ | ||
| # SeiJS | ||
|
|
||
| SeiJS is a monorepo that contains multiple NPM libraries for writing applications that interact with Sei. | ||
| SeiJS is a monorepo of npm packages for building EVM applications on Sei. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nit] Nit: "for building EVM applications on Sei" slightly under-sells |
||
|
|
||
| ## Packages | ||
|
|
||
| SeiJS consists of smaller NPM packages within the @sei-js namespace. See the package READMEs below for usage details. | ||
| SeiJS consists of packages within the `@sei-js` namespace. See the package READMEs below for usage details. | ||
|
|
||
| | Package | Description | | ||
| | ------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ | | ||
| | [@sei-js/precompiles](packages/precompiles) | Typescript library containing helper functions for interacting with Sei's precompile contracts. | | ||
| | [@sei-js/create-sei](packages/create-sei) | CLI Tool used to quickly spin up Sei Projects and dApps in either the cosmos or EVM ecosystem | | ||
| | [@sei-js/mcp-server](packages/mcp-server) | MCP server for interacting with Sei via LLM's and agents | | ||
| | [@sei-js/sei-global-wallet](packages/sei-global-wallet) | A global wallet conforming to EIP-6963 allowing for AA across dApps. | | ||
| | [@sei-js/registry](packages/registry) | TypeScript library for Sei chain constants and assets. | | ||
| | Package | Description | | ||
| | ------------------------------------------------------- | --------------------------------------------------------------------------------- | | ||
| | [@sei-js/precompiles](packages/precompiles) | TypeScript ABIs, addresses, and Ethers/Viem helpers for Sei EVM precompiles. | | ||
| | [@sei-js/create-sei](packages/create-sei) | CLI for scaffolding Sei EVM applications and dApps. | | ||
| | [@sei-js/mcp-server](packages/mcp-server) | MCP server that lets AI assistants and agents interact with Sei EVM. | | ||
| | [@sei-js/sei-global-wallet](packages/sei-global-wallet) | Global wallet integration for EIP-6963 and account abstraction across dApps. | | ||
| | [@sei-js/registry](packages/registry) | TypeScript library for Sei chain constants and assets. | | ||
|
|
||
| ## Development | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nit] Good that the checklist calls out Changesets explicitly — that's the most common miss on this repo (a published package's behavior changing with no
.changeset/*.mdships code without releasing it). Might be worth linking.changeset/config.jsonor notingbun run changesetinline so contributors know the command, since there's noCONTRIBUTING.mdin the repo to point at. Non-blocking.