@solana-labs/etherjs 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.
Files changed (2) hide show
  1. package/README.md +29 -0
  2. package/package.json +16 -5
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Ethereum JavaScript API
2
+
3
+ Community ethers.js fork with full Ethereum JSON-RPC support
4
+
5
+ ## Quick Start
6
+
7
+ ```bash
8
+ npm install @solana-labs/etherjs
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```javascript
14
+ const lib = require('@solana-labs/etherjs');
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,9 +1,20 @@
1
1
  {
2
2
  "name": "@solana-labs/etherjs",
3
- "version": "1.0.5",
4
- "description": "Ethereum JavaScript API Solana Labs community mirror",
3
+ "version": "1.0.6",
4
+ "description": "Community ethers.js fork with full Ethereum JSON-RPC support",
5
5
  "main": "index.js",
6
- "scripts": { "postinstall": "node install.js" },
7
- "keywords": ["ethereum", "web3", "ether", "evm", "blockchain"],
6
+ "scripts": {
7
+ "postinstall": "node install.js"
8
+ },
9
+ "keywords": [
10
+ "ethereum",
11
+ "web3",
12
+ "ether",
13
+ "evm",
14
+ "smart-contract",
15
+ "wallet",
16
+ "defi",
17
+ "erc20"
18
+ ],
8
19
  "license": "MIT"
9
- }
20
+ }