@cubist-labs/cubesigner-sdk 0.1.23 → 0.1.26

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 +18 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,10 +1,23 @@
1
1
  # CubeSigner TypeScript SDK
2
2
 
3
- CubeSigner is a hardware-backed, non-custodial key management platform
4
- built by Cubist for programmatically managing cryptographic keys.
5
-
6
- This repository is our SDK written in TypeScript for programmatically
7
- interacting with CubeSigner services.
3
+ CubeSigner is a hardware-backed, non-custodial platform for securely
4
+ managing cryptographic keys. This repository is the TypeScript SDK for
5
+ programmatically interacting with CubeSigner services.
6
+
7
+ ## CubeSigner background
8
+
9
+ [The Cubist team](https://cubist.dev/about) built CubeSigner to address the key
10
+ security vs key availability tradeoff: right now, many teams are forced to keep
11
+ keys available in memory and therefore exposed to attackers, or try to keep
12
+ keys safe—usually only at rest—at serious latency and engineering cost.
13
+ CubeSigner addresses this problem by giving developers low-latency access to
14
+ hardware-backed key generation and signing. During each of these operations,
15
+ CubeSigner safeguards their users' keys in HSM-sealed Nitro Enclaves—combining
16
+ cold wallet security with hot wallet speed and simplicity.
17
+
18
+ Right now, the CubeSigner SDK supports signing for EVM chains like Ethereum
19
+ and Avalanche, and non-EVM chains Bitcoin and Solana. Support for more chains
20
+ is in the works!
8
21
 
9
22
  ## Installing the SDK
10
23
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cubist-labs/cubesigner-sdk",
3
3
  "author": "Cubist, Inc.",
4
- "version": "0.1.23",
4
+ "version": "0.1.26",
5
5
  "description": "CubeSigner TypeScript SDK",
6
6
  "homepage": "https://github.com/cubist-labs/CubeSigner-TypeScript-SDK",
7
7
  "bugs": "https://github.com/cubist-labs/CubeSigner-TypeScript-SDK/issues",