mmn-client-js 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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# mmn-client-js
|
|
2
2
|
|
|
3
3
|
A TypeScript client for interacting with the MMN blockchain via JSON-RPC. It supports creating, signing, and submitting transactions, plus basic account and transaction queries.
|
|
4
4
|
|
|
@@ -13,13 +13,13 @@ A TypeScript client for interacting with the MMN blockchain via JSON-RPC. It sup
|
|
|
13
13
|
## Installation
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install
|
|
16
|
+
npm install mmn-client-js
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Quick Start
|
|
20
20
|
|
|
21
21
|
```typescript
|
|
22
|
-
import { MmnClient } from '
|
|
22
|
+
import { MmnClient } from 'mmn-client-js';
|
|
23
23
|
|
|
24
24
|
// Create a client instance
|
|
25
25
|
const client = new MmnClient({
|