@dotdev/harmony-sdk 1.0.2 → 1.0.3
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
|
@@ -14,13 +14,13 @@ Harmony SDK is a TypeScript library for interacting with the Harmony API. It pro
|
|
|
14
14
|
To install the Harmony SDK, use the following command:
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
npm install @
|
|
17
|
+
npm install @dotdev/harmony-sdk
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
or if you're using pnpm:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
pnpm add @
|
|
23
|
+
pnpm add @dotdev/harmony-sdk
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
## Usage
|
|
@@ -28,7 +28,7 @@ pnpm add @dotapparel/harmony-sdk
|
|
|
28
28
|
Here's a basic example of how to use the Harmony SDK:
|
|
29
29
|
|
|
30
30
|
```typescript
|
|
31
|
-
import { HarmonyAPI, AuthenticationToken } from "@
|
|
31
|
+
import { HarmonyAPI, AuthenticationToken } from "@dotdev/harmony-sdk";
|
|
32
32
|
|
|
33
33
|
const api = new HarmonyAPI("https://your-harmony-api-url.com");
|
|
34
34
|
|
|
@@ -64,7 +64,7 @@ To set up the development environment:
|
|
|
64
64
|
1. Clone the repository:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
git clone
|
|
67
|
+
git clone git@bitbucket.org:dotcollectiveanz/harmony-sdk.git
|
|
68
68
|
cd harmony-sdk
|
|
69
69
|
```
|
|
70
70
|
|