diff --git a/README.md b/README.md index 50f1218..c602133 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,11 @@ -# solana-rpc-get-stake-activation +# solana-rpc-client-extensions -Rust and JS code to perform Solana RPC's GetStakeActivation client-side +Rust and JS code to perform Solana RPC calls on the client-side. Currently +covers the following RPC calls and packages: + +| RPC Call | Rust Package | JS Package | JS v1 Package | +| --- | --- | --- | --- | +| `GetStakeActivation` | `solana-rpc-get-stake-activation` | `@anza-xyz/solana-rpc-get-stake-activation` | `@anza-xyz/solana-rpc-get-stake-activation-v1` | ## Motivation diff --git a/js/package.json b/js/package.json index 5faf39e..1f263a2 100644 --- a/js/package.json +++ b/js/package.json @@ -1,16 +1,31 @@ { - "name": "solana-rpc-get-stake-activation", - "version": "1.0.0", + "name": "@anza-xyz/solana-rpc-get-stake-activation", + "version": "2.0.0", "description": "Client-side replica of Solana RPC's getStakeActivation", "sideEffects": false, "module": "./dist/src/index.mjs", "main": "./dist/src/index.js", "types": "./dist/types/index.d.ts", "type": "commonjs", - "keywords": [], - "author": "", + "keywords": [ + "blockchain", + "solana", + "rpc", + "web3" + ], + "author": "Anza Maintainers ", "license": "Apache-2.0", "packageManager": "pnpm@9.1.0", + "repository": { + "type": "git", + "url": "https://github.com/anza-xyz/solana-rpc-client-extensions" + }, + "bugs": { + "url": "https://github.com/anza-xyz/solana-rpc-client-extensions/issues" + }, + "publishConfig": { + "access": "public" + }, "exports": { ".": { "types": "./dist/types/index.d.ts", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 1215ebe..8ecc89b 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,12 @@ [package] name = "solana-rpc-get-stake-activation" version = "0.1.0" +description = "Client-side implementation of Solana RPC's GetStakeActivation" +documentation = "https://docs.rs/solana-rpc-get-stake-activation" +authors = ["Anza Maintainers "] +repository = "https://github.com/anza-xyz/solana-rpc-client-extensions" +homepage = "https://anza.xyz/" +license = "Apache-2.0" edition = "2021" [dependencies] diff --git a/web3js-1.0/package.json b/web3js-1.0/package.json index 7d10a24..35001bc 100644 --- a/web3js-1.0/package.json +++ b/web3js-1.0/package.json @@ -1,5 +1,5 @@ { - "name": "solana-rpc-get-stake-activation", + "name": "@anza-xyz/solana-rpc-get-stake-activation", "version": "1.0.0", "description": "Client-side replica of Solana RPC's getStakeActivation", "sideEffects": false, @@ -7,9 +7,25 @@ "main": "./dist/src/index.js", "types": "./dist/types/index.d.ts", "type": "commonjs", - "keywords": [], - "author": "", + "keywords": [ + "blockchain", + "solana", + "rpc", + "web3" + ], + "author": "Anza Maintainers ", "license": "Apache-2.0", + "packageManager": "pnpm@9.1.0", + "repository": { + "type": "git", + "url": "https://github.com/anza-xyz/solana-rpc-client-extensions" + }, + "bugs": { + "url": "https://github.com/anza-xyz/solana-rpc-client-extensions/issues" + }, + "publishConfig": { + "access": "public" + }, "exports": { ".": { "types": "./dist/types/index.d.ts",