@chainberry/berry-signer 1.0.3 → 1.0.4

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # BerrySigner
2
2
 
3
- Pure signing library for multiple blockchain networks. No network calls — takes an unsigned transaction prepared elsewhere and signs it locally with a private key. Designed to run on the frontend (mobile wallet, browser extension) while the unsigned transaction is prepared on the backend.
3
+ Pure signing library for multiple blockchain networks. No network calls — takes an unsigned transaction and signs it with a private key. Can run anywhere: frontend, mobile wallet, browser extension, or backend.
4
4
 
5
5
  ## Installation
6
6
 
@@ -22,7 +22,7 @@ npm install berry-signer
22
22
 
23
23
  ## Usage
24
24
 
25
- Each function takes a private key and an unsigned transaction prepared by the backend, and returns a signed transaction ready for broadcast.
25
+ Each function takes a private key and an unsigned transaction prepared elsewhere, and returns a signed transaction ready for broadcast.
26
26
 
27
27
  ### EVM (ETH, BNB, POL, AVAX, ARB, OP, BASE, SONIC)
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chainberry/berry-signer",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "files": ["dist", "README.md"],
5
5
  "description": "Pure signing library for multiple blockchain networks — EVM, BTC, LTC, SOL, TRX, XRP, TON",
6
6
  "keywords": ["blockchain", "signing", "wallet", "ethereum", "bitcoin", "solana", "tron", "ton", "xrp", "litecoin"],