@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.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# @hermetica/
|
|
1
|
+
# @hermetica/sdk
|
|
2
2
|
|
|
3
|
-
A TypeScript
|
|
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/
|
|
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/
|
|
38
|
+
import { TransactionBuilder } from '@hermetica/sdk';
|
|
39
39
|
|
|
40
40
|
const transactionBuilder = new TransactionBuilder({
|
|
41
41
|
HOST: 'CUSTOM_HERMETICA_API', // optional
|