Selaa lähdekoodia

Update README and JS client description

Loris Leiva 1 vuosi sitten
vanhempi
sitoutus
85b65fb9c0
2 muutettua tiedostoa jossa 4 lisäystä ja 56 poistoa
  1. 3 55
      README.md
  2. 1 1
      clients/js/package.json

+ 3 - 55
README.md

@@ -4,7 +4,7 @@
 <a href="https://www.npmjs.com/package/@solana-program/@solana-program/system"><img src="https://img.shields.io/npm/v/%40solana-program%2F@solana-program/system?logo=npm&color=377CC0" /></a>
 <a href="https://crates.io/crates/sbpf-system"><img src="https://img.shields.io/crates/v/sbpf-system?logo=rust" /></a>
 
-This template should help get you started developing Solana programs. Let's walk through this generated program repository and see what's included.
+The Solana System program and its generated clients.
 
 ## Project setup
 
@@ -14,49 +14,17 @@ The first thing you'll want to do is install NPM dependencies which will allow y
 pnpm install
 ```
 
-## Managing programs
-
-You'll notice a `program` folder in the root of this repository. This is where your generated Solana program is located.
-
-Whilst only one program gets generated, note that you can have as many programs as you like in this repository.
-Whenever you add a new program folder to this repository, remember to add it to the `members` array of your root `Cargo.toml` file.
-That way, your programs will be recognized by the following scripts that allow you to build, test, format and lint your programs respectively.
-
-```sh
-pnpm programs:build
-pnpm programs:test
-pnpm programs:format
-pnpm programs:lint
-```
-
-## Generating IDLs
-
-You may use the following command to generate the IDLs for your programs.
-
-```sh
-pnpm generate:idls
-```
-
-Depending on your program's framework, this will either use Shank or Anchor to generate the IDLs.
-Note that, to ensure IDLs are generated using the correct framework version, the specific version used by the program will be downloaded and used locally.
-
 ## Generating clients
 
-Once your programs' IDLs have been generated, you can generate clients for them using the following command.
+You can generate clients for them using the following command.
 
 ```sh
 pnpm generate:clients
 ```
 
-Alternatively, you can use the `generate` script to generate both the IDLs and the clients at once.
-
-```sh
-pnpm generate
-```
-
 ## Managing clients
 
-The following clients are available for your programs. You may use the following links to learn more about each client.
+The following clients are available for the System program. You may use the following links to learn more about each client.
 
 - [JS client](./clients/js)
 - [Rust client](./clients/rust)
@@ -80,23 +48,3 @@ Finally, you may stop the local validator using the following command.
 ```sh
 pnpm validator:stop
 ```
-
-## Using external programs in your validator
-
-If your program requires any external programs to be running, you'll want to in your local validator.
-
-You can do this by adding their program addresses to the `program-dependencies` array in the `Cargo.toml` of your program.
-
-```toml
-program-dependencies = [
-  "metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s",
-  "noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV",
-]
-```
-
-Next time you build your program and run your validator, these external programs will automatically be fetched from mainnet and used in your local validator.
-
-```sh
-pnpm programs:build
-pnpm validator:restart
-```

+ 1 - 1
clients/js/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@solana-program/system",
   "version": "0.1.0",
-  "description": "Counters on-chain",
+  "description": "JavaScript client for the System program",
   "sideEffects": false,
   "module": "dist/src/index.mjs",
   "main": "dist/src/index.js",