@hermetica/sdk 1.0.0 → 1.0.1

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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # @hermetica/transactions
1
+ # @hermetica/sdk
2
2
 
3
- A TypeScript library for creating and managing stake, unstake, and claim transactions on the Hermetica protocol. This library supports both Stacks and Bitcoin blockchains.
3
+ A TypeScript SDK for interacting with the Hermetica protocol. Supports transaction generation, claims data retrieval, and protocol info (rates, prices, APYs) across Stacks and Bitcoin blockchains.
4
4
 
5
5
  ## Features
6
6
 
@@ -14,7 +14,7 @@ A TypeScript library for creating and managing stake, unstake, and claim transac
14
14
  ## Installation
15
15
 
16
16
  ```bash
17
- npm install @hermetica/transactions
17
+ npm install @hermetica/sdk
18
18
  ```
19
19
 
20
20
  ## Configuration
@@ -35,7 +35,7 @@ const config = {
35
35
  ### Initialization
36
36
 
37
37
  ```typescript
38
- import { TransactionBuilder } from '@hermetica/transactions';
38
+ import { TransactionBuilder } from '@hermetica/sdk';
39
39
 
40
40
  const transactionBuilder = new TransactionBuilder({
41
41
  HOST: 'CUSTOM_HERMETICA_API', // optional
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hermetica/sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Hermetica Transactions Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",